ABAP Keyword Documentation → ABAP - Reference → Processing Internal Data → Assignments
Initializations
The following statements initialize data objects, which means they set the content of a data object to an initial value:
Initialization does not delete the data objects in question. Data objects created by declarative statements are only deleted from the memory when leaving a program, together with the
internal session.
Objects created dynamically by the statement CREATE
are deleted by
Garbage Collector. The initialization of reference variables can, however, cause
Garbage Collector to delete the referenced objects.
Other versions: 7.31 | 7.40 | 7.54
Note
REFRESH
is an obsolete statement used to initialize internal tables.