Hi,
I have a requirement to launch SAP transactions via URL from Webdynpro applications.
There is an excellent article by Prakash Singh (below link) which tells how to achieve this. But, this is not for Java Webdynpro. <b>Can anyone provide a similar solution for WebDynpro.</b>
<a href="/people/prakash.singh4/blog/2005/10/07/how-to-launch-sap-transaction-pass-parameters-via-url SAP Transaction</a>
Please note: I am not talking about importing ABAP RFC to webdynpro. Im talking about launching SAP transactions (eg: se37) in a URL using webdynpro applications.
Code snippets would be highly appreciated 😊
Thanks,
You can launch SAP Transaction using ITS - Webgui
For example, to call SE37
http://<server>:<port>/sap/bc/gui/sap/its/webgui/~transaction=SE37
This will call the SE37 on web.
Look at this blog:
<a href="/people/durairaj.athavanraja/blog/2004/09/23/pass-parameter-to-its-url-upadated-21st-june-2008 Parameter to ITS URL</a>
Raja T
To call the transaction iview from webdynpro . First create a transaction iview in the content administrator and use the following code below to call the transaction iview.
WDPortalNavigation.navigateAbsolute(
"ROLES:<PCD path of the transaction iview>",
WDPortalNavigationMode.SHOW_EXTERNAL, // if you want to open in a
(String) null, seperate window
(String) null,
WDPortalNavigationHistoryMode.NO_DUPLICATIONS,
(String) null,
(String) null,
null);
Add a comment