Call second portal page from ABAP web dynpro based iview
Step 1
* Call New portal Page or iView
TYPES: BEGIN OF navigation,
target type string,
mode type string,
features type string,
window type string,
history_mode type string,
target_title type string,
context_url type string,
end of navigation.
data: wa_navigation type navigation.
data: lr_compcontroller type ref to ig_componentcontroller,
l_component type ref to if_wd_component.
data lr_port_manager type ref to if_wd_portal_integration.
lr_compcontroller = wd_this->get_componentcontroller_ctr( ).
l_component = lr_compcontroller->wd_get_api( ).
lr_port_manager = l_component->get_portal_manager( ).
* The value inserted into the navigation-target field can be found in the Portal
* content administration tab of your portal. It is the ID or PCD Location field
wa_navigation-target =
'ROLES://portal_content/com.sap.pct/every_user/com.sap.pct.erp.ess.bp_folder/
Further Info: The navigation-target field is populated from the iview or page ID field within the portal content administrator,
But the 'PCD:' value needs to be replaced by 'ROLES://'.
Website Navigation to related information
|
||||||