cancel
Showing results for 
Search instead for 
Did you mean: 

Need a call a portal iView from a WebDynPro ABAP Application

Former Member
0 Kudos

Hi,

I have to call a portal iView from the WD ABAP application.

The iView root is e.g.

folder1/folder2/check_workset1/iView

How can we call it using Absolute navigation or Relative Navigation.

I just want to call this path.

Can anyone provide me with a code snippet.

Best Regards

Sid

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

there is some coding in the <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/18/f96f4132f15c58e10000000a1550b0/frameset.htm">documentation</a>

grtz,

Koen

Former Member
0 Kudos

Hi ,

I am calling the following method in my action call of a Webdynpro ABAP View

CALL METHOD lo_portal_manager->NAVIGATE_ABSOLUTE

EXPORTING

NAVIGATION_TARGET = 'Roles://portal_content/xxxx._and_remuneration'

NAVIGATION_MODE = IF_WD_PORTAL_INTEGRATION=>CO_SHOW_EXTERNAL

  • WINDOW_FEATURES =

  • WINDOW_NAME =

  • HISTORY_MODE =

  • TARGET_TITLE =

CONTEXT_URL = 'http://xxx.xxx.adsint.biz:50000/irj/portal'

  • POST_PARAMETERS = ABAP_FALSE

  • USE_SAP_LAUNCHER = ABAP_TRUE

  • BUSINESS_PARAMETERS =

  • LAUNCHER_PARAMETERS =

.

But it is still noot opening the page for me from the WD ABAP application.

Can anyone let me know , what can be the reason.

Best Regards

Sid