ABAP Keyword Documentation → ABAP − Reference → Obsolete Language Elements → Obsolete Type Reference
LIKE - obsolete
Other versions: 7.31 | 7.40 | 7.54
Obsolete Syntax
... LIKE dtype ...
Effect
Outside of classes, the addition LIKE can also be used to refer to
flat structures,
database tables, or
classic views in ABAP
Dictionary, as well as to their components. A LIKE reference to the flat
components of a deep dictionary structure is not possible. This affects the following ways of using LIKE:
- in the statement
PARAMETERS
If there is a data object called dtype in a local context, then this object obscures the data type from ABAP Dictionary.
Notes
- The addition
LIKEshould only be used to refer to data objects.
- It is not possible to make a
LIKEreference to a CDS entity. It is possible, however, to make aLIKEreference to a CDS database view.
- Always use the addition
TYPEto refer to data types.
Bad Example
DATA wa LIKE scarr.
Good Example
DATA wa TYPE scarr.