cancel
Showing results for 
Search instead for 
Did you mean: 

WebDynpro with embedded SAP GUI for HTML transaction

former_member196418
Participant
0 Kudos

Hello,

I have been given a requirement for a WebDynpro application that will have some links and figures at the top and underneath that there will be a SAP GUI for HTML transaction visible. What is the best method for handling this type of scenario? This is a 7.0 portal connecting to ECC 5.0 on the back-end.

Thanks,

Bert

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello Bert,

I would have implemented your scenario in following way:

1. Create a transaction iView in portal using SAP GUI for HTML.

2. In the web dynpro application, you have multiple choices to use the transaction iview created in above step.

a. Use a IFrame UI element giving it the portal based url for the transaction iview

b. Use POrtal Navigation API to navigate to the transaction iview.

WDPortalNavigation.navigateAbsolute(

"ROLES://portal_content/com.sap.PageNavigationProject/com.sap.TargetPage",

WDPortalNavigationMode.SHOW_INPLACE,

(String) null,

(String) null,

WDPortalNavigationHistoryMode.NO_DUPLICATIONS,

(String) null,

(String) null,

[<url params>]

);

Hope this helps you.

Regards,

Prasanna