‎2010 Aug 31 12:26 AM
in my program,
loop at ts_matnr into wa_matnr.
loop at zt_tab where zno = wa_matnr-no
and ret_matnr_ext = wa_matnr-matnr.
at new zno.
w_index = sy-index.
continue.
endat.
and when I ran Ext prog check, i am getting this errors
The LOOP statement processing will be limited
(FROM, TO and WHERE additions in LOOP)
Interaction with group change processing (AT NEW, ...) is undefined
How can I remove this error??? appreciated ur help.
thanks
‎2010 Aug 31 3:24 AM
Hi,
Remove code block
at new zno.
w_index = sy-index.
continue.
endat.
If an internal table is processed only in a restricted form (using the additions FROM, TO and/or WHERE with the LOOPstatement), you should not use the control structures for control level processing because the interaction of a restricted LOOP with the AT statement is currenly not properly defined.
regards,
‎2010 Aug 31 3:24 AM
Hi,
Remove code block
at new zno.
w_index = sy-index.
continue.
endat.
If an internal table is processed only in a restricted form (using the additions FROM, TO and/or WHERE with the LOOPstatement), you should not use the control structures for control level processing because the interaction of a restricted LOOP with the AT statement is currenly not properly defined.
regards,