Hi,
Put EndLOOP IN IT.
DATA : LV_FLAG TYPE C.
DO.
IF LV_FLAG = 'X'.
EXIT.
ENDIF.
ENDDO.
GO TO : SM66
Click on debugging and your cursor will be postionted at Do statement.
Change value of lv_flag from inital to 'X'.
Then you will able to debug.
Thanks and Regards,
Dular Sharma.