Skip to content

Commit 13b1ed7

Browse files
authored
Update dx.md
1 parent 985d4d4 commit 13b1ed7

File tree

1 file changed

+18
-18
lines changed
  • docs/advanced/technical

1 file changed

+18
-18
lines changed

docs/advanced/technical/dx.md

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

33
Developer Experience (DX) refers to the overall experience developers have when interacting with tools, processes, and systems during software development. There are a lot of different frameworks lets dive into the most beautiful one and see how these idea got adapten into abap2UI5.
44

5-
### As simple as possible
5+
### if_oo_adt_classrun
66

77
What is the easiest way to output data in an abap stack, it has to be both abao cloud ready and abap standard? its `if_oo_adt_classrun` the best way.
88

@@ -45,7 +45,23 @@ additionaly it solves the following problems:
4545

4646
so this is the basic, from here we try to add more functionality.
4747

48-
### Tables
48+
49+
### Selection Screens
50+
as a last prerequste we need some input. also the easiest way are selection screen, lets remember how that went:
51+
```abap
52+
REPORT zre_app_input.
53+
PARAMETERS pa_arbgb TYPE t100-arbgb DEFAULT 'MDG_TR'.
54+
START-OF-SELECTION.
55+
MESSAGE |Input: { pa_arbgb }| type 'I'.
56+
```
57+
this is thew wy we can do it with abap2ui5:
58+
```abap
59+
"app
60+
"app
61+
"app
62+
```
63+
64+
### ALV
4965

5066
what is the easiest way to out out tables? its the goold als cl_salv_table:
5167
```abap
@@ -70,22 +86,6 @@ go_salv->display( ).
7086
"app
7187
```
7288

73-
### Inputs
74-
as a last prerequste we need some input. also the easiest way are selection screen, lets remember how that went:
75-
```abap
76-
REPORT zre_app_input.
77-
PARAMETERS pa_arbgb TYPE t100-arbgb DEFAULT 'MDG_TR'.
78-
START-OF-SELECTION.
79-
MESSAGE |Input: { pa_arbgb }| type 'I'.
80-
```
81-
this is thew wy we can do it with abap2ui5:
82-
```abap
83-
"app
84-
"app
85-
"app
86-
```
87-
88-
### Events
8989

9090

9191

0 commit comments

Comments
 (0)