hi i am doing remediation in ecc 6 and i got obsolete statement error in SLIN and error statement is like below,
The current ABAP command is obsolete
"ON CHANGE OF" is not supported in the OO context. Use auxiliary fields
The message cannot be hidden using pseudo-comment "#EC .
the code is like below
ON CHANGE OF t_checkreq-vendor_remit .
SELECT lifnr name1
APPENDING TABLE t_payee
FROM lfa1
WHERE lifnr = t_checkreq-vendor_remit .
CLEAR t_checkreq.
ENDON.