You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/configuration/authorization.md
+1-6Lines changed: 1 addition & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,16 +11,11 @@ One of the easiest ways to manage access to different apps is by implementing ch
11
11
##### Example: Restricting Access Based on URL Parameters
12
12
In this example, we use the ICF handler class to control which apps can be accessed based on the APP_START parameter in the HTTP request. If an unauthorized app is requested, access is denied.
13
13
```abap
14
-
CLASS z2ui5_cl_launchpad_handler DEFINITION
15
-
PUBLIC
16
-
FINAL
17
-
CREATE PUBLIC .
14
+
CLASS z2ui5_cl_launchpad_handler DEFINITION PUBLIC.
Copy file name to clipboardExpand all lines: docs/configuration/setup.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ outline: [2, 4]
7
7
You can run abap2UI5 with various custom configurations. The default setup is used automatically. For custom configurations, just implement the interface `z2ui5_if_exit`:
8
8
9
9
```abap
10
-
CLASS zcl_a2ui5_user_exit DEFINITION PUBLIC FINAL CREATE PUBLIC.
Copy file name to clipboardExpand all lines: docs/development/model/device.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ Explore all available parameters in the [UI5 Documentation.](https://sapui5.hana
16
16
### Backend
17
17
You can also retrieve detailed device information on the backend using a custom info frontend control. This allows you to access UI5 version, device type, OS, browser details, and screen dimensions. Below is an example implementation, which demonstrates how to collect and use this information:
18
18
```abap
19
-
CLASS z2ui5_cl_sample_device DEFINITION PUBLIC CREATE PUBLIC.
19
+
CLASS z2ui5_cl_sample_device DEFINITION PUBLIC.
20
20
21
21
PUBLIC SECTION.
22
22
INTERFACES z2ui5_if_app.
@@ -41,8 +41,8 @@ CLASS z2ui5_cl_sample_device IMPLEMENTATION.
Copy file name to clipboardExpand all lines: docs/development/navigation/share.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ The app state feature opens up several useful scenarios, such as sharing and boo
5
5
### Share
6
6
You can easily integrate a share button, which copies the actual state into the clipboard for sharing with your colleagues. Check out the following snippet:
7
7
```abap
8
-
CLASS z2ui5_cl_sample_share DEFINITION PUBLIC FINAL CREATE PUBLIC.
0 commit comments