[ABAP] Datentyp durch einen anderen Datentyp erweitern (INCLUDE)

* User-Typ
TYPES: BEGIN OF ty_mara,
         matnr        TYPE mara-matnr,
         matxt        TYPE makt-maktx,
       END OF ty_mara.

* Zeilentyp, z.B. für ALV-Grid
TYPES: BEGIN OF ty_line,
         color       TYPE lvc_t_scol,
         name        TYPE string.
* User-Typ includieren -> Auf "." am Ende achten!
        INCLUDE TYPE ty_mara.
TYPES: END OF ty_line.