Code: Alles auswählen.
types:
begin of ty_struc,
feld 1 type ....
feld 2 type ...
end of ty_struc.
data:
gs_struc type ty_struc,
gt_struc type table of ty_struc.
Code: Alles auswählen.
TYPES:
BEGIN OF ty_struc,
feld1 TYPE char14,
feld2 TYPE char20,
END OF ty_struc.
DATA:
gs_struc TYPE ty_struc,
gt_struc TYPE TABLE OF ty_struc.