cancel
Showing results for 
Search instead for 
Did you mean: 

Access a SAP transaction via WEBGUI from an external software (parameters)

Former Member
0 Kudos

hey guys, i ve the following problem,

i want to call a sap transaction via SAP WEBGUI. I know that works over a link like

http://server:port/sap/bc/gui/sap/its/webgui?~transaction=ES32

That also works for me. but now i need to know how to give parameters for the transaction with it and how to skip first screen of the transaction.

Can you help?

Would be cool.

Greetz Basti

Edited by: Bastian Kohl on Sep 9, 2011 9:50 AM

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

I solved the problem using function ISU_S_INSTLN_CHANGE, maybe this is useful for you.

Former Member
0 Kudos

Could you solve your problem? I got a similar one, I want to use transaction ES32 via CALL TRANSACTION to jump into edit mode of an installation. The program says that there is no dynpro field EANLD-PRORATE.

My coding:

DATA:  lt_bdc_data      TYPE TABLE OF bdcdata,
       wa_bdc_data      LIKE LINE OF  lt_bdc_data.

         CLEAR lt_bdc_data.
         CLEAR lt_bdc_data[].
         CLEAR wa_bdc_data.
         wa_bdc_data-program  = 'SAPLES30'.
         wa_bdc_data-dynpro   = '0110'.
         wa_bdc_data-dynbegin = 'X'.
         APPEND wa_bdc_data TO lt_bdc_data.
         CLEAR wa_bdc_data.
         wa_bdc_data-fnam     = 'EANLD-ANLAGE'.
         wa_bdc_data-fval     = wa_mscons_chk-anlage.
         APPEND wa_bdc_data TO lt_bdc_data.
         CLEAR wa_bdc_data.
         wa_bdc_data-fnam     = 'BDC_OKCODE'.
         wa_bdc_data-fval     = '=CHNG'.
         APPEND wa_bdc_data TO lt_bdc_data.
         CLEAR wa_bdc_data.
         wa_bdc_data-fnam     = 'EANLD-STICHTAG'.
         wa_bdc_data-fval     = wa_mscons_chk-ab.
         APPEND wa_bdc_data TO lt_bdc_data.
         CLEAR wa_bdc_data.
         wa_bdc_data-fnam     = 'EANLD-PRORATE'.
         wa_bdc_data-fval     = 'X'.
         APPEND wa_bdc_data TO lt_bdc_data.
         CALL TRANSACTION 'ES32' USING lt_bdc_data.

I also tried to put BDC_OKCODE at the end. Any ideas?

dao_ha
Active Contributor
0 Kudos

Hi,

A little search will get you this link and much more on this topic

https://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=22375

Hope it helps.

Dao