‎2008 May 18 6:56 AM
‎2008 May 18 7:03 AM
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.
‎2008 May 18 7:03 AM
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.
‎2008 May 18 10:32 AM
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
‎2008 May 18 10:38 AM
you can use a do statement..
do .
if <condition>
....
else.
exit.
endif.
....
enddo.
‎2008 May 18 10:47 AM
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