TYPES - tabkind

Syntax

... { {[STANDARD] TABLE}
    | {SORTED TABLE}
    | {HASHED TABLE}
    | {ANY TABLE}
    | {INDEX TABLE} } ... .


Effect

Definition of the table type in an internal table.

You can specify the non-generic table types standard table (STANDARD TABLE), sorted table (SORTED TABLE), and hashed table (HASHED TABLE), as well as the generic table types ANY TABLE and INDEX TABLE. The addition STANDARD is optional for standard tables.

The non-generic table types determine the internal administration and access type in the ABAP program for an internal table:

used for typing formal parameters and field symbols:

ANY TABLE includes all table types.




Notes

key key determines whether the defined table type is generic.