Ansicht
Dokumentation

ABAPFREE_ITAB - FREE ITAB

ABAPFREE_ITAB - FREE ITAB

ABAP Short Reference   RFUMSV00 - Advance Return for Tax on Sales/Purchases  
This documentation is copyright by SAP AG.
SAP E-Book

FREE - Release memory occupied by an internal table

Syntax

FREE itab.

Effect

Releases the memory space needed to process the internal table itab.

Example

Release internal table ITAB after processing:

DATA : BEGIN OF ITAB OCCURS 10,
         NAME(10) TYPE C,
       END   OF ITAB.
ITAB-NAME = 'James'.  APPEND ITAB.
...
LOOP AT ITAB.
  WRITE ITAB-NAME.
ENDLOOP.
FREE ITAB.

Note

Performance:

The runtime needed to execute the FREE statement is approx. 5 msn (standardized microseconds).






BAL_S_LOG - Application Log: Log header data   ABAP Short Reference  
This documentation is copyright by SAP AG.

Length: 1017 Date: 20240418 Time: 165536     sap01-206 ( 19 ms )