cancel
Showing results for 
Search instead for 
Did you mean: 

Navigation Button

Former Member
0 Kudos

Hello, i have a custom iView from ABAP that is launched when pressing a certain part of a stardard page portal. Is it possible to go back to the standard page portal when a button is pressed in my custom iView? If yes, how can i do it please?

Thanks in advance!

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Please help, I just need to call a standard page portal, when pressing a button. I am using this method:

DATA lr_componentcontroller TYPE REF TO ig_componentcontroller .

DATA l_api_componentcontroller TYPE REF TO if_wd_component.

DATA lr_port_manager TYPE REF TO if_wd_portal_integration.

lr_componentcontroller = wd_this->get_componentcontroller_ctr( ).

l_api_componentcontroller = lr_componentcontroller->wd_get_api( ).

lr_port_manager = l_api_componentcontroller->get_portal_manager( ).

CALL METHOD lr_port_manager->navigate_absolute

EXPORTING

navigation_target = 'ROLES://portal_content/cg.caixagalicia.CaixaGalicia/pruebas_todo/carp_paginas/testPortalApplication'

navigation_mode = if_wd_portal_integration=>co_show_inplace

  • WINDOW_FEATURES =

  • WINDOW_NAME =

  • HISTORY_MODE = IF_WD_PORTAL_INTEGRATION=>CO_NO_DUPLICATES

  • TARGET_TITLE =

context_url = 'http://dcsapportas1.caixagalicia.cg:50100/irj/portal'

  • POST_PARAMETERS = ABAP_FALSE

  • USE_SAP_LAUNCHER = ABAP_TRUE

  • BUSINESS_PARAMETERS =

  • LAUNCHER_PARAMETERS =.

What i am doing wrong please?

Former Member
0 Kudos

hi jorge......

do you need to go to a standard page portal when you click a button in WDA?

if so you can hae 'link to action' UI element in your wd application where you can specify the URl to which it has to navigate.... no need of any coding.

this will solove your problem.

-


regards,

alex b justin

Answers (0)