Can be used to find out information about the content of an internal table. Includes the number of records the table holds, the reserve memory space used, and the table type. Find out the amount of records with LINES. After lines you should put an integer variable that represents the number of lines contained in internal table.
DATA line_cnt TYPE i.
DESCRIBE TABLE itab01 LINES line_cnt.