Hi Guyz,
LOOP AT itab_bvor INTO wa_bvor.
READ TABLE itab_bvor_cc INTO wa_bvor_cc WITH KEY bvorg = wa_bvor-bvorg BINARY SEARCH.
IF sy-subrc NE 0.
DELETE itab_bvor WHERE bvorg = wa_bvor-bvorg.
CONTINUE.
ENDIF.
ENDLOOP.
Hi this is the code which i want to optimize, bcoz this is taking hell of time in Production system, as itab_bvor have thousands of enterties and its killing the runtime resources.
Any suggestion for changing this logic which optimize the performance for this code.
Thanks,