i am doing remediation in ecc6 and i got Problematic Statements(Error) in SLIN and it is like below,
The LOOP statement processing will be limited
(FROM, TO and WHERE additions in LOOP)
Interaction with group change processing (AT NEW, ...) is undefined
the code is like below
LOOP AT t_itab_main WHERE prgtype = c_pgmtp_mr.
ON CHANGE OF t_itab_main-requestor_name. uvp
AT NEW requestor_name.
IF g_flag NE 0.
NEW-PAGE.
ENDIF.
ENDAT.
ENDON.
WRITE: /2 t_itab_main-prgnumb, "Program #
14 t_itab_main-descript, "Description
t_itab_main-effstart, "Effective Begin Date
68 t_itab_main-effend, "Effective End Date
81 t_itab_main-requestor_name(20), "Requestor Name
102 t_itab_main-sales_area, "Sales Area " Smb002
115 t_itab_main-solddesc. "Sold To/Broker "smb002
g_flag = 1.
ENDLOOP.
please tell me how to remove this error