Skip to content

Commit e20f5b9

Browse files
authored
Update dx.md
1 parent 98b3cc7 commit e20f5b9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/technical/dx.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
_abap2UI5 - A Developer-Centric Approach_
44

5-
This framework was born from the everyday experience of ABAP developers. It tackles common challenges like deployment, caching, debugging, and tooling — while keeping the coding style close to familiar ABAP and SAP GUI patterns such as selection screens and ALV. The goal: to make working with abap2UI5 as familiar as possible for ABAPers. This page takes a closer look at how it all comes together.
5+
This framework was born from the everyday experience of ABAP developers. It tackles common challenges like deployment, caching, debugging, and tooling — while keeping the coding style close to familiar ABAP and SAP GUI patterns such as selection screens and ALV. The goal: to make working with abap2UI5 as familiar and intuitive as possible for ABAPers. This page takes a closer look at some of the key influences of the framework.
66
´
77
### Simple Output with if_oo_adt_classrun
88

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:
9+
One of the most fundamental development tasks is outputting data. In ABAP, the quickest way to do this is with the `if_oo_adt_classrun` interface. It provides a simple, class-based entry point for outputting data directly in ADT:
1010

1111
```abap
1212
CLASS zcl_app_adt DEFINITION PUBLIC CREATE PUBLIC.
@@ -21,12 +21,12 @@ CLASS zcl_app_adt IMPLEMENTATION.
2121
ENDCLASS.
2222
```
2323

24-
Why it matters:
24+
Why this is great for developers:
2525
- Single-class design is easy to debug and version
2626
- Minimal boilerplate, cloud-compatible
2727
- Fully abapGit-ready
2828

29-
This simplicity inspired the entry point for abap2UI5 apps:
29+
This simplicity also inspired the entry point for abap2UI5 apps:
3030
```abap
3131
CLASS zcl_app_ui5 DEFINITION PUBLIC CREATE PUBLIC .
3232
PUBLIC SECTION.
@@ -40,7 +40,7 @@ CLASS zcl_app_ui5 IMPLEMENTATION.
4040
ENDCLASS.
4141
```
4242

43-
Additional in abap2UI5:
43+
What abap2UI5 adds:
4444
- Runs in the browser, no ADT needed
4545
- End-user ready without extra deployment
4646
- Conform to SAP Fiori Design guidelines

0 commit comments

Comments
 (0)