FORM - table_parameters

Syntax

... t1 [{TYPE itab_type}|{LIKE itab}|{STRUCTURE struc}]
    t2 [{TYPE itab_type}|{LIKE itab}|{STRUCTURE struc}]
    ... .

Effect

Definition of table parameters t1 t2 ... for subroutines.

After the additions TYPE and LIKE, you can specify a table type table_type or an internal table itab of type standard table.

The additions TYPE and LIKE type the row type of the formal parameter with the row type of the specified internal table. The other obsolete addition STRUCTURE stamps the flat structure struc onto the row type.

Note

Defining table parameters is obsolete and can be replaced by general formal parameters defined with USING and CHANGING.