cancel
Showing results for 
Search instead for 
Did you mean: 

Passing values to link for MM03

styrolution_accenture
Participant
0 Kudos

Hello All,

I have a webdynpro report for materials where after clicking on material i am opening MM03 screen to check for the material related information but the problem is i am unable to pass the material number in the new screen we are getting for MM03.

Could you please help me in passing the values to the link i am calling to open the MM03 screen.

Your quick response would be highly appreciated.

Thanks,

Raj.

Accepted Solutions (1)

Accepted Solutions (1)

saravanan_narayanan
Active Contributor
0 Kudos

Hello Rajesh,

you can pass the parameters like this

http://<host>:<port>/sap/bc/gui/sap/its/webgui?~transaction=*mm03 RMMG1-MATNR=<material number>

In this URL, you need to replace the host, port and material number.

BR, Saravanan

styrolution_accenture
Participant
0 Kudos

this is what i am passing to call MM03 but it does not work. it is not passing the material number available in the variable lv_matnr.

CONCATENATE 'http://' host ':' port

'/sap/bc/gui/sap/its/webgui/?sap-client=&~TRANSACTION=MM03&%20MARA-matnr=' lv_matnr

'&~OKCODE=SHOW'

INTO url.

let me know if you need any further information to understand the issue.

Thanks,

RaJ.

saravanan_narayanan
Active Contributor
0 Kudos

Hello Rajesh,

1. ?~transaction=*mm03 -> the name transaction should be placed immediately after the webgui

2. *mm03 -> * should be maintainer if you want to perform some actions

3. DYNP_OKCODE=SHOW -> DYNP_OKCODE should be used instead of OKCODE. Are sure 'SHOW' is the okcode for displaying data

4. RMMG1-MATNR ->I think parameter name should be RMMG1-MATNR. Are you sure its MARA-matnr?

BR, Saravanan

styrolution_accenture
Participant
0 Kudos

Hello Saravanan,

Thanks alot for correcting the link, now it is working as expected.

Thanks,

RaJ.

Answers (0)