‎2008 May 14 6:34 PM
hi all,
can anyone tell me the use of Continue statement?
thanks
‎2008 May 14 6:38 PM
Hi
It's to skip a certain abap code into a LOOP cycle and go to the beginning of the loop for the next record.
Max
‎2008 May 14 6:36 PM
‎2008 May 14 6:38 PM
Hi
It's to skip a certain abap code into a LOOP cycle and go to the beginning of the loop for the next record.
Max
‎2008 May 14 6:39 PM
Hi,
If you want the loop to go back and do the next record to do the process, you have to use continue statement.
Ex : If you want to delete a record from the internal if certain condition meet and should not execute other statement after continue.
loop at itab.
if itab-f1 = '100'.
delete itab.
clear itab.
continue.
endif.
"few more executable statement.
endloop.
Thanks,
Sriram Ponna.