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
431

Dear All

how I get the total records of internal table.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
409
Hi Nelson.

data : v_lines type i.

describe table itab lines v_lines.

write : v_lines.

Dear All

how I get the total records of internal table.

3 REPLIES 3
Read only

Former Member
0 Likes
410
Hi Nelson.

data : v_lines type i.

describe table itab lines v_lines.

write : v_lines.
Read only

0 Likes
409

use the describe statement,

describe table itab lines <int>

int contains the number of rows of internal table

Read only

0 Likes
409

Ok Dear Thanks