Hi,
I want to compare the a field with its previous value in a internal table
i am using the following logic
flag = 0.
loop at it where x_field = s_field.
if not of flag is intial.
if it_field2 = v_field2.
-
-
endif.
endif.
move it_field2 to v_field.
endloop.
i dont want to use flag in this case can any one help.
thanks.