cancel
Showing results for 
Search instead for 
Did you mean: 

WDPortalNavigation.navigateAbsolute question - urgent!

Former Member
0 Kudos

Web Dynpro for Java gurus please help, will reward points

from a simple Web Dynpro application i am trying to navigate to an iView located in the portal PCD in this location

pcd:portal_content/com.pmi.insights.fl.PMUSARetailConnectionSecurity/com.pmi.insights.fl.PMUSACustomiViews/com.pmi.insights.iv.modifyuser

i want the iView to open in the same window, not a new browser window and my API call is

WDPortalNavigation.navigateAbsolute( "ROLES://portal_content/com.pmi.insights.fl.PMUSARetailConnectionSecurity/com.pmi.insights.fl.PMUSACusotmiViews/com.pmi.insights.iv.modifyuser", WDPortalNavigationMode.SHOW_INPLACE,

(String) null,

(String) null, WDPortalNavigationHistoryMode.NO_DUPLICATIONS,

(String) null,

(String) null,

(String) null

);

i put this call in the wdDoInit() method

but it is not working, the requested iView is not loading

please help

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Dennis,

what happens if you pass empty strings in place of all the null values that you are passing now?

Also, make the WDPortalNavigationHistoryMode to ALLOW_DUPLICATIONS.

Does this throw any kind of exception?

Regards,

Satyajit.

Former Member
0 Kudos

passed empty strings instead of (String) null same result, iView did not load, no exception thrown, thanks for the suggestions though

Former Member
0 Kudos

Hi Dennis,

Does this iView have the necessary roles assigned? Check the permissions for the iView from the Content Administrator in the portal.

Also do a preview of the iView from the Content Administrator and check if this is loading.

Regards,

Satyajit.

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Dennis

Is your code throwing exception or simply runs without desired output.If it is the first case post the stacktrace.

Regards

Ananda

Former Member