TYPES

Simple type definition
- TYPES type.
- TYPES type(len).

Definition of a structured type
- TYPES: BEGIN OF structype
         ...
       END   OF structype.

Definition of an internal table type
- TYPES itabtype {TYPE tabkind OF linetype|
                LIKE tabkind OF lineobj}
      [WITH [UNIQUE|NON-UNIQUE] keydef] [INITIAL SIZE n].
- TYPES itabtype {TYPE RANGE OF type|TYPES itabtype  LIKE RANGE OF
f}.

- TYPES itabtype {TYPE linetype|LIKE lineobj} OCCURS n.

Additional help

Defining Data Types