Hello Gurus!
I am confronted with difficulties.
The universal worklist action handler (SAPWebDynproLauncher) launches my application.
The application contains one view to manage a SAP workflow.
The view has a button with an event handler to navigate to another portal transaction iView:
WDPortalNavigation.navigateAbsolute(
"ROLES://portal_content/SNG/ru.sng.ESS-MSS/TransaciView/Transac2.Transac2",
WDPortalNavigationMode.SHOW_INPLACE,
WDPortalNavigationHistoryMode.NO_DUPLICATIONS,
"DATABROWSE-TABLENAME=" + "ZWXORDER"
);
The problem is that the navigation doesnt work. NavigateAbsolute works only when I start iView based on my application.
Although WDPortalUtils.isRunningInPortal() is true when my application is started via UWL. That is the portal navigation exists.
I cant use iViewLauncher action handler because of the problem to give work item ID to web dynpro application via iview.
Thanks a lot.