cancel
Showing results for 
Search instead for 
Did you mean: 

Call WD Java from WD ABAP

Former Member
0 Kudos

Hi ,

My requirement is to call WD java in portal from WD ABAP .

I Searched and found it is possible by using PCD Path but i am not able to do .

I tried it and now called application is opening up but full portal opens up in a separate browser , i want only that Iview should open in same browser.


CALL METHOD LR_PORT_MANAGER->NAVIGATE_ABSOLUTE
    EXPORTING
      NAVIGATION_TARGET   = TARGET
      NAVIGATION_MODE     = MODE.

Regards

Nikhil Arya.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi ,

You can call by below code :

CALL METHOD lo_portal_manager->NAVIGATE_ABSOLUTE

EXPORTING

"NAVIGATION_TARGET = 'ROLES://portal_content/****''

.

Here in Naviagation_Target, you need to give the WDJ iview PCD path with prefix ROLES:// as shown above..

- Vasu

ChandraMahajan
Active Contributor
0 Kudos

Hi,

Use CO_SHOW_INPLACE as value for navigation_mode

CALL METHOD lo_port_manager->navigate_absolute

EXPORTING

navigation_target = l_target

navigation_mode = if_wd_portal_integration=>CO_SHOW_INPLACE

I hope this will open windiow in same parent browser window.

Thanks,

Chandra