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/advanced/technical/dx.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
@@ -4,7 +4,7 @@ abap2UI5 is a framework built by ABAP developers for ABAP developers. Written en
4
4
5
5
This page highlights the key ideas and influences behind abap2UI5.
6
6
7
-
### API I: Output via `IF_OO_ADT_CLASSRUN`
7
+
### if_oo_adt_classrun
8
8
9
9
One of the most fundamental development tasks is outputting data. In ABAP, the cleanest way to do this is with the `if_oo_adt_classrun` interface. It offers a simple, class-based approach to immediately output data in ADT:
10
10
@@ -45,7 +45,7 @@ Additional in abap2UI5:
45
45
- End-user ready without extra deployment
46
46
- Conform to SAP Fiori Design guidelines
47
47
48
-
### API II: Input with Selection Screen
48
+
### Selection Screens
49
49
50
50
Classic ABAP supports user input through selection screens:
51
51
@@ -89,7 +89,7 @@ Why this improves Developer Experience:
89
89
- Easy to test: reload the page, enter input, press the button
90
90
- Everything is still in a single class — no external UI tooling needed
91
91
92
-
### API III: Output Tables with ABAP List Viewer
92
+
### ABAP List Viewer
93
93
94
94
ALV tools such as `CL_SALV_TABLE` helped make tabular output effortless:
95
95
@@ -151,7 +151,7 @@ ENDCLASS.
151
151
Additional Benefits in abap2UI5:
152
152
- Fully works in browser and on any device, no SAP GUI dependencies
153
153
154
-
### API IV: popup_to_confirm
154
+
### popup_to_confirm
155
155
Classic ABAP offered a straightforward way to ask user decisions:
0 commit comments