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

Internal Table Records

Former Member
0 Likes
432

Dear All

how I get the total records of internal table.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
410
Hi Nelson.

data : v_lines type i.

describe table itab lines v_lines.

write : v_lines.
Hi Nelson.

data : v_lines type i.

describe table itab lines v_lines.

write : v_lines.
3 REPLIES 3
Read only

Former Member
0 Likes
411
Hi Nelson.

data : v_lines type i.

describe table itab lines v_lines.

write : v_lines.
Read only

0 Likes
410

use the describe statement,

describe table itab lines <int>

int contains the number of rows of internal table

Read only

0 Likes
410

Ok Dear Thanks