Using DESCRIBE TABLE in SAP ABAP
DESCRIBE TABLE is used to count the no of records in an internal table
Syntax: DESCRIBE TABLE <ITAB> LINES <v_lines> ." Count the no. Of record of an internal table, here v_lines store count
DATA : V_LINES TYPE I. "Type integer
DESCRIBE TABLE IT_MARA LINES V_LINES ." Count the no. of record of a internal table
Write: v_lines .
Serkan AKKAVAK
Computer Engineer BSc
Head of SAP & Software Department
Contact : serkurumsal@yandex.com

0 Comments