Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

how to count dynamic internal table row using system variable ???

vijay_sharma12
Explorer
0 Likes
729

how to count dynamic internal table row using system variable ???

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
563

Use

DATA lv_count type i.

DESCRIBE TABLE <itabname>.

lv_count = sy-tfill.

WRITE lv_count.

1 REPLY 1
Read only

Former Member
0 Likes
564

Use

DATA lv_count type i.

DESCRIBE TABLE <itabname>.

lv_count = sy-tfill.

WRITE lv_count.