cancel
Showing results for 
Search instead for 
Did you mean: 

WD Navigation

Former Member
0 Kudos

Hi,

I need to know how to navigate from a Web Dynpro iView, to portal iView with in the same window.

i.e., on rising an event in wed dynpro component it should navigate to a portal iView.

[FYI: I used WDPortalNavigation class of com.sap.tc.webdynpro.clientserver.navigation api. But it wasn't successful. I raised an event to navigate using this class on selection of a drop down item. But it isn't throwing any error, it doesn't seem to do any action also]

Can you help me out of this issue ?

Thanks and regards

Radha Krishna .B

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Radhakrishna,

you can use the WDPortalNavigation.navigateAbsolute method to navigate to an iView's absolute URL. An example might be like below.

WDPortalNavigation.navigateAbsolute(

"ROLES://portal_content/My_Role/My_Page/SimplePage",

WDPortalNavigationMode.SHOW_INPLACE,

(String)null;

(String)null,

WDPortalNavigationHistoryMode.ALLOW_DUPLICATIONS,

(String)null,

(String)null,

(String)null);

Hope this helps!!!

Shubhadip

Former Member
0 Kudos

Hi Shubhadip,

Thanks for your help.

I tried this option but this doesn't seem to work.

Thanks and regards

Radha Krishna

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Following URL may help you

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/portal integration of web dynpro applications.pdf

RK