‎2008 Jan 11 8:26 AM
Hai,
How to calculate total number of rows avilable in internal table
‎2008 Jan 11 8:29 AM
DESCRIBE TABLE <itab> LINES <line>.
Above statement results with the number of records in internal table.
Regards
Eswar
‎2008 Jan 11 8:28 AM
Hi,
Do like this
Data: lv_lines type i.
Describe table itab lines lv_lines.
Write: lv_lines. " Total Number of records.
you can also find by using system field SY-TFILL.
Regards,
Satish
‎2008 Jan 11 8:28 AM
n = lines ( itab ).
This gives u no.of record in internal table itab.
awrd points if useful
Bhupal
‎2008 Jan 11 8:29 AM
DESCRIBE TABLE <itab> LINES <line>.
Above statement results with the number of records in internal table.
Regards
Eswar
‎2008 Jan 11 8:30 AM
Hi,
Use below statement,
DESCRIBE TABLE itab [KIND knd] [LINES lin] [OCCURS n].
Thanks and Regards
‎2008 Jan 11 8:30 AM