hi all,
i am facing a with a performance issue with below logic.
LOOP AT tcust.
SELECT SINGLE * FROM kna1
WHERE kunnr EQ tcust-kunnr.
LOOP AT t_materials.
PERFORM f1000_get_price.
ENDLOOP.
ENDLOOP.
here tcust having one row & t_materials is having 250 rows so that perform is calling 250- times can u pls help me out in this issue.