Skip to Content
0
Former Member
May 25, 2007 at 11:14 AM

Navigate from WD application to an URL iView with dynamic parameters

38 Views

Hi all,

I have a problem navigating from a Wed Dynpro application to an URL iView which points to a another WD application in the different server with dynamic parameters, the parameter names are fixed, but the value should be retrieved in run time.

I can get the parameter values in the source WD application and pass it to the URL iview by the WDPortalNavigation.navigateAbsolute() method. The navigation works fine, but how can I pass the parameter values to the target WD application, I used the URL iview, how can I pass the parameters dynamically?

Here is the code I use to navigate:

WDPortalNavigation.navigateAbsolute(

"ROLES://portal_content/rack_visualization/RackView",

WDPortalNavigationMode.SHOW_INPLACE,

WDPortalNavigationHistoryMode.ALLOW_DUPLICATIONS,

"param=aaa");

The RackView iView is based on the "iView URL" template, and it's target is also a Web Dynpro application in another server, and I expect the parameter values from the source WD application (such as 'aaa') could be passed to the target URL as the query string. Unfortunately the parameter passing doesn't seem to work.

Any help would be greatly appreciated!

Thanks,

Bean