Skip to content

Commit 98c32d9

Browse files
authored
Update navigation.md
1 parent 5fe0c91 commit 98c32d9

1 file changed

Lines changed: 1 addition & 14 deletions

File tree

docs/development/navigation/navigation.md

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -62,19 +62,6 @@ To learn more about launchpads and routing, refer to the documentation [here](/c
6262

6363
### Inner App Navigation
6464

65-
For navigating within a single application (e.g., switching between sub-views or steps in a wizard), use the view display method with different views depending on your application state:
66-
67-
```abap
68-
METHOD z2ui5_if_app~main.
69-
70-
CASE mv_current_step.
71-
WHEN 'STEP_1'.
72-
client->view_display( view_step_1( ) ).
73-
WHEN 'STEP_2'.
74-
client->view_display( view_step_2( ) ).
75-
ENDCASE.
76-
77-
ENDMETHOD.
78-
```
65+
Work in progress...
7966

8067
Use class attributes to track the current state and switch views accordingly. This keeps all navigation logic in a single ABAP class without needing cross-app calls.

0 commit comments

Comments
 (0)