Skip to content

Commit 17f4ca6

Browse files
committed
Move Launchpad navigation snippet to Fiori Launchpad page
1 parent ef0d453 commit 17f4ca6

2 files changed

Lines changed: 11 additions & 10 deletions

File tree

docs/configuration/launchpad.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,16 @@ Use these parameters for target mapping in your Launchpad configuration:
1616
- ID: `z2ui5`
1717
- Parameter: `app_start / Z2UI5_CL_MY_APP`
1818

19+
### Cross App Navigation
20+
We recommend backend communication only for view changes or popup calls. With a Launchpad, consider navigating via the Launchpad to use browser navigation and history:
21+
```abap
22+
client->_event_client(
23+
val = client->cs_event-cross_app_nav_to_ext
24+
t_arg = VALUE #( (
25+
`{ semanticObject: "Z2UI5_CL_LP_SAMPLE_04", action: "display" }`
26+
) ) ).
27+
```
28+
1929
### Troubleshooting
2030
Sometimes installation via abapGit causes cache-related issues. Here's how to clear them:
2131

docs/development/navigation/inner_cross_app.md

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,7 @@ ENDMETHOD.
4949
Sounds familiar? The abap2UI5 framework echoes classic `call screen` and `leave to screen` behavior.
5050
:::
5151

52-
### Launchpad
53-
We recommend backend communication only for view changes or popup calls. With a Launchpad, consider navigating via the Launchpad to use browser navigation and history:
54-
```abap
55-
client->_event_client(
56-
val = client->cs_event-cross_app_nav_to_ext
57-
t_arg = VALUE #( (
58-
`{ semanticObject: "Z2UI5_CL_LP_SAMPLE_04", action: "display" }`
59-
) ) ).
60-
```
61-
For more on Launchpads and routing, see the [Fiori Launchpad](/configuration/launchpad) page.
52+
For Launchpad-based cross app navigation, see the [Fiori Launchpad](/configuration/launchpad) page.
6253

6354
## Inner App Navigation
6455

0 commit comments

Comments
 (0)