cancel
Showing results for 
Search instead for 
Did you mean: 

call Transaction thru WB4A.

Former Member
0 Kudos

Hi,

Is It possible to call Transaction thru WB4A.

I mean to say by writitng follwing code can i call Screen

Code :

call transaction 'SE24' using bdcdata_tab options from opt.

If No which is alternative way.

Thanks & Regards

PK

Accepted Solutions (0)

Answers (3)

Answers (3)

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

What exactly do you want to acomplish. As stated you can't do a call transaction from Web Dynpro ABAP. Afterall what would you expect to happen to the Classic Dynpro screens? However there are some possibilities. Do you just want to launch a classic dynpro transaction or navigate to one. You have a few choices for that. If you are in the portal, you can of course to object based navigation and navigate to a SAPGUI or ITS based iView. By the same token, you can navigate from WD directly using a linkToURL or Exit Plug to an ITS WebGUI URL. In effect this is like running a call transaction - except the new transaction opens using the ITS.

Former Member
0 Kudos

Hi Thomas,

What do you mean by

"By the same token, you can navigate from WD directly using a linkToURL or Exit Plug to an ITS WebGUI URL. In effect this is like running a call transaction - except the new transaction opens using the ITS."

Thanks

Regards

Bryan

Former Member
0 Kudos

no you can't use Call transaction in webdynpro for ABAP.because it needs SAP GUI for that.

Check if there is any BAPI available for that.

Former Member
0 Kudos

Look at function module 'ABAP4_CALL_TRANSACTION'. That might be your solution.

Former Member
0 Kudos

ABAP4_CALL_TRANSACTION will not work because ultimately its using 'CALL TRANSACTION' Command.