ABAP
Naamgevingsconventies
Zoeken…
Syntaxis
- Tekens, cijfers en _ kunnen worden gebruikt voor de naam van de variabele.
- Twee tekens gebruiken voor variabele status en objecttype.
- Lokale variabelen beginnen met L.
- Globale variabelen beginnen met G.
- Functie invoer parameter start met I (import).
- Functie-uitgangsparameter start met E (exporteren).
- Structuursymbool is S.
- Tafelsymbool is T.
Lokale variabele
data: lv_temp type string.
data: ls_temp type sy.
data: lt_temp type table of sy.
Globale variabele
data: gv_temp type string.
data: gs_temp type sy.
data: gt_temp type table of sy.
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow