cancel
Showing results for 
Search instead for 
Did you mean: 

Calling existing KM iView

Former Member
0 Kudos

Hi guys,

Need some advise here. I have a requirement to add a url text on my webdynpro application which will call an existing KM iView. Any ideas on this? Thanks

Regards

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Johan,

try this for a short introduction in how to call KM iViews from web dynpro:

- First, create a KM iView, for example, in <i>portal_content/test/<KM iView></i>

(keep in mind the correct ID for your iView after creating it, it is starting with <i>pcd:portal_content...</i>)

- Change KM property of isolation method to URL

- Create the following code in your web dynpro and deploy it in portal:

<i> String temp_km = "ROLES://portal_content/test/<KM iView>";

WDPortalNavigation.navigateAbsolute(

temp_km,

WDPortalNavigationMode.SHOW_EXTERNAL,

WDPortalNavigationHistoryMode.NO_DUPLICATIONS,"");</i>

So, in this example a popup starts with your wished kM iView. If you want to call that from an URL text in web dynpro, create an UI element from type <i>LinkToAction</i> and bind this source code as an action to the element.

Hope that helps.

Regards,

Frank

Former Member
0 Kudos

Hi Frank,

is it possibly to open a km navigation iview where a user can select a folder. The selected folder should be a parameter in webdynpro.

Regards,

Gerhard