cancel
Showing results for 
Search instead for 
Did you mean: 

URL Iview URL parameters to be passed from Webdynpro Application

Former Member
0 Kudos

Greetings

I would like to call a URL iView from a Webdynpro application. In the URL I need to send the parameters dynamically using get/post method of the iView. How to get this done through code/API? kindly help me out.

Tx.

Best Regards

Ramamoorthy D

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member192152
Active Participant
0 Kudos

I hope this help you:

String target = "ROLES://portal_content/.../iViews/xyzIView";

String parametros = "";

WDPortalNavigation.navigateAbsolute(target, WDPortalNavigationMode.SHOW_EXTERNAL, (String) null, (String) null, WDPortalNavigationHistoryMode.NO_DUPLICATIONS, (String) null, (String) null, parametros, parametros, true, true)

Regards,

Angelo