Code: Alles auswählen.
Report z_test
* Die variabeln sind hier global
DATA: gs_mara type mara,
gt_mara type table of mara.
...
...
Perform get_data.
Form get_data.
* Die variabeln sind hier lokal
DATA: ls_mara type mara,
lt_mara type table of mara.
...
...
Endform.