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

I_lines

Former Member
0 Likes
459

Dear friends,

What is the use of below syntax in ALV report.

DATA I_LINES LIKE SY-TABIX.

Thanks in advance.

Dear friends,

What is the use of below syntax in ALV report.

DATA I_LINES LIKE SY-TABIX.

Thanks in advance.

3 REPLIES 3
Read only

Former Member
0 Likes
438

It would depend on the code after this. Check to see where the variable "I_LINES" gets used.

Read only

jaideeps
Product and Topic Expert
Product and Topic Expert
0 Likes
438

hi,

SY-TABIX means Table Index. This signifies the number of table index. Each row of a table has certain index or counter. The value of sy-tabix for the last entry would be equivalent to number of table entries.

thanks

jaideep

*reward points if useful..

Read only

Former Member
0 Likes
438

hi

u are just creating another object which just has the characteristics of sy-tabix (internal table index).

u many use I_lines in your program instead to use sy-tabix again and again.