SAP INITIALIZATIONS



Get Example source ABAP code based on a different SAP table
  



Initializations
The following statements initialize data objects, which means they set the content of a data object to an initial value:
CLEAR
FREE
Initialization does not delete the corresponding data objects. Data objects created by declarative statements are only deleted from the memory when exiting a program, together with the ABAP_ISESS . Objects created dynamically by the statement CREATE are deleted by the Garbage Collector. The initialization of reference variables can, however, cause the Garbage Collector to delete the referenced objects.



Latest notes:

NON_V5_HINTS
REFRESH is an obsolete statement used to initialize internal tables.
ABAP_HINT_END