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

question3

Former Member
0 Likes
583

hai all,

loop at itab.

-


-


-


-


201

-


-


endloop

here i want 201 record wha should we do for hat

5 REPLIES 5
Read only

Former Member
0 Likes
561

Hi,

read table itab index 201.

Reward if useful!

Read only

Former Member
0 Likes
561

hi,

chk out the foll code:

read table itab index 201.

//logic.

regards,

Navneeth K.

Read only

Former Member
0 Likes
561

Hi,

Loop at itab index 201.

Endloop.

Regards,

Padmam.

Read only

Former Member
0 Likes
561

Hi,

just modifying above

loop at itab from 201.

endloop.

Read only

Former Member
0 Likes
561

Hi,

You do : read table it index 201.

Do not loop into the table as looping is not needed in this case.

Thanks.