cancel
Showing results for 
Search instead for 
Did you mean: 

How to pass multiple parameter to SAP Gui transaction from WD

Former Member
0 Kudos

Hi Guys,

I would like to start an SAP transaction from WD.

I construct the following URL:

http://my_server/sap/bc/gui/sap/its/webgui?~transaction=FMZ3%20KBLD-BELNR=0000667431?KBLD-BLPOS=6

The issue is that the first parameter 667431 is passed into the first field but the second parameter is not.

I tried many options but nothing works for the second parameter.

Any ideas?

Thanks,

Itay

Accepted Solutions (0)

Answers (2)

Answers (2)

ramakrishnappa
Active Contributor
0 Kudos

Hi,

As Kiran said, each url parameter should be separated by "&".

Hence your url should look as below

http://my_server/sap/bc/gui/sap/its/webgui?~transaction=FMZ3&KBLD-BELNR=0000667431&KBLD-BLPOS=6


Regards,

Rama

Former Member
0 Kudos

when I use the syntax above, none of the parameters is being filled.

when I use"

http://my_server/sap/bc/gui/sap/its/webgui?~transaction=FMZ3%20KBLD-BELNR=0000667431&KBLD-BLPOS=6

the first parameter is filled but not the second one

For some reason there has to be a space (or %20) after the t-code

Itay

former_member184578
Active Contributor
0 Kudos

Hi,

You have to use & to add/ pass multiple parameters

http://my_server/sap/bc/gui/sap/its/webgui?~transaction=FMZ3&KBLD-BELNR=0000667431&KBLD-BLPOS=6

hope this helps,

Regards,

Kiran