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

loop

Former Member
0 Likes
488

how can we avoid loop

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
470

If u want to display the data in ALV format then u can avoid using loop statement.You can use REUSE_ALV_GRID_DISPLAY or REUSE_ALV_LIST_DISPLAY function modules to display the data.

Reward If helpful.

4 REPLIES 4
Read only

Former Member
0 Likes
471

If u want to display the data in ALV format then u can avoid using loop statement.You can use REUSE_ALV_GRID_DISPLAY or REUSE_ALV_LIST_DISPLAY function modules to display the data.

Reward If helpful.

Read only

Former Member
0 Likes
470

Hi,

where you want to avoid the loop?? please explain the situation.

--

Regards-

Gagan Kumar

Edited by: Gagan Kumar on May 18, 2008 11:32 AM

Read only

former_member156446
Active Contributor
0 Likes
470

you can use a do statement..

do .
if <condition>
....
else.
exit.

endif.
....

enddo.

Read only

Former Member
0 Likes
470

whenever u want to read multiple lines from an internal table u have to use loop statement there is no alternative

whenever u want to read single line from an internal table u have to use read statement