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

read internal table

Former Member
0 Likes
634

hi all.

i have a internal table that has 1000 data.

how can i read only between 150 and 300?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
615

Use loop.. endloop as ...

loop at itab from 150 to 300.

endloop.

5 REPLIES 5
Read only

JozsefSzikszai
Active Contributor
0 Likes
615

hi,

LOOP AT itab FROM 150 TO 300.

...

ENDLOOP.

hope this helps

ec

Read only

Former Member
0 Likes
616

Use loop.. endloop as ...

loop at itab from 150 to 300.

endloop.

Read only

Former Member
0 Likes
615

SY-tabix between 150 300.

Read only

Former Member
0 Likes
615

Hi,

Use like as bellow.

DATA: idx1 TYPE I VALUE 150,

idx2 TYPE I VALUE 300.

LOOP AT ITAB FROM idx1 TO idx2.

-


-


ENDLOOP.

Reward,if it is useful.

Thanks,

Chandu

Read only

Former Member
0 Likes
615

thanks all i solved my problem