cancel
Showing results for 
Search instead for 
Did you mean: 

Passing URL Params to WebGUI R/3 Transaction

Former Member
0 Kudos

Has anyone ever passed parameters with values that would populate field within a WebGUI R/3 transaction inside of a web browser?

IF so please let me know....would be happy to see how it was done!

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Alin,

take a look on this thread:

Cheers

Pedro Iglesias

Former Member
0 Kudos

Tried that Pedro...unfortunately it did not work..I also tried variations of it with and without some of the params and still nothing.

Here is mine:

http://myserver:8001/sap/bc/gui/sap/its/webgui/?sap-client=300&;language=EN&transaction=ZSWB%20Material=1235789&~okcode=WB_EXEC

Not sure what "&~okcode=WB_EXEC" does so i tried with and without it and still no luck

Would it be possible to find out the underlying definition for that TEXT entry box for Material in my case? One i find that out i will have to try that as the input parameter as well...

To Be Continued....

Former Member
0 Kudos

Alin,

try with this one time:

http://<SERVER>:<PORT>/sap/bc/gui/sap/its/webgui?transaction=se37 RS38L-NAME=BAPI_MDPROVIDER_GET_CUBES&okcode=WB_EXEC&sap-system-login-basic_auth=X&sap-client=<XXX>&sap-language=EN

Don't forget to update the following placeholder with your values:

<SERVER>

<PORT>

<XXX>

Let me know.

PS. Explanation for [ITS-Service|http://help.sap.com/saphelp_47x200/helpdata/en/4b/fd24c4529511d480aa00c04f99fbf0/frameset.htm]

Pedro

Edited by: Pedro Iglesias on Dec 5, 2009 12:18 AM

Edited by: Pedro Iglesias on Dec 5, 2009 12:21 AM

Former Member
0 Kudos

Pedro,

I see that the transaction is SE37, but my question is what is this: RS38L-NAME=BAPI_MDPROVIDER_GET_CUBES

Is that the name of the Field? If so is that waht's displayed on the R/3 screen or some underlying code. It seems odd! Maybe this is what i'm missing on my end.

Former Member
0 Kudos

GOT IT WORKING.......WOooHooooooo!

http://server:<port>/sap/bc/gui/sap/its/webgui/?sap-client=300&;language=EN&transaction=ZSWB%20ZAFRUD-MATNR=1234545;ZAFRUD-SERNR=10001&~okcode=/00

Where:

ZAFRUD-MATNR: is the underlying data field name for Material number

ZAFRUD-SERNR: is the underlying data field name for Serial number

&~okcode=/00 is the code for emulating the ENTER key in order for transaction to load automatically

Thanks for pointing in the right direction Pedro!