cancel
Showing results for 
Search instead for 
Did you mean: 

Link or shortcut to R/3 transaction

Former Member
0 Kudos

Hi All!!

I am working with Web Dynpro Java.

One of the requirements is to access from my WDJ to a R/3 transaction (for example CJ20N). I have not ITS.

Is there any way to set a link or shortcut on the Web Dynpro Java to access to this transaction?

I think if I find an ABAP method or FM which execute a file, I could execute the .sap generated on the shortcut of the transaction, and accross XI I can use it on Web Dynpro Java.

Any help will be apreciated.

Thanks and regards,

Manuel Míguez.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

First create a transaction iview for the transaction that you want to call .

place a LinkToUrl UI element in the view of webdynpro

In the onAction method write the following code.

WDPortalNavigation.navigateAbsolute(

<b>PCD location of your transaction iview</b>,

WDPortalNavigationMode.SHOW_EXTERNAL,

(String) null,

(String) null,

WDPortalNavigationHistoryMode.NO_DUPLICATIONS,

(String) null,

(String) null,

null);

Former Member
0 Kudos

Hi Tummuru,

Do you know the basics steps to create the Transaction iView?

Thanks and regards,

Manuel.

Message was edited by:

Míguez Loureiro

Former Member
0 Kudos

Hi

1)Login with Administrator role

2) Goto Contenet Administrarion

3)Create a New IView

4)Select <b>SAP Transaction IView</b> from the list

5)Specify the IView Name,IView ID,Description,Mention <b>Transaction ID</b> ,

Add the IView to Page

Page to WorkSet

WorkSet to Role

Best Regards

Chaitanya.A

raja_thangamani
Active Contributor
0 Kudos

Refer the below link: This is for BSP but certainly it should work for WDA with small modification.

Raja T

Former Member
0 Kudos

Hi Raja T,

I will test the code I found on this link.

I´ll comment yo the result.

Thanks and regards,

Manuel.