ABAP Keyword Documentation → ABAP - Reference → Obsolete Language Elements → Obsolete modularization → Subroutines → FORM
FORM - table_parameters
Other versions: 7.31 | 7.40 | 7.54
Obsolete Syntax
... t1 [{TYPE itab_type}|{LIKE itab}|{STRUCTURE struc}]
t2 [{TYPE itab_type}|{LIKE itab}|{STRUCTURE struc}]
... .
Effect
Defines table parameters t1 t2 ...
for subroutines
A table type table_type
or an internal table itab
from the table category
standard table can be specified after the additions TYPE
and LIKE
.
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 row type with the
flat structure struc
.
When TABLES
parameters are accessed that are not bound to any type-compliant actual parameters, the same
exception situation can arise as in function modules.
Note
The definition of table parameters is obsolete and can be replaced by general
formal parameters defined using USING
and CHANGING
.