Hello,
I have a problem with a Transaction Launcher Call. I call it with a Button. But the Navigation starts only, when I have the Link also in the Navigation Bar. If the Link is not in the Navigation Bar, there is nothing happend.
The coding of the Button Method is the following:
data: lo_nav TYPE REF TO if_crm_ui_navigation_service,
lo_context type REF TO CL_BP_HEAD_BPHEADOVERVIEW_CTXT.
lo_context ?= me->CONTEXT.
TRY.
lo_nav = cl_crm_ui_navigation_service=>get_instance( me ).
lo_nav->NAVIGATE(
exporting
IV_LINK_ID = 'ZS-ZKU1'
* IV_DATA_COLLECTION =
).
CATCH cx_root.
ENDTRY.
Can someone help me?