Hi,
I have an internal table which have 2 fields as below field1, Field2. suppose itab has data as follows
itab
-
field1 | field2
-
a 1
a 1
a 2
a 3
a 3
my Logic is given below.
Loop at Itab.
checking some condition here
if condition fails i am using continue statement so that loop pass will process next record. but this time
following statement(at new field2) fails. i want to allow the control inside below block
at new field2
endat
endloop
using above data
for first record Field1(a), Field2(1) - first record failed
but for second record it should allow inside at new field2
endat block, to achive this what shall i do.
thanks
Ramesh
Thanks
Ramesh