on 2023 Sep 13 7:27 PM
Hi guys, I want to use a internal table in modify to update another internal table, but always SAP give me an error which says: "Field "TABLE" is unknow. Is not possible to do this?
My code look like:
MODIFY <it_1> FROM TABLE <it_2>.
Hi,
You can only modify a internal table from a work area as per the documentation. MODIFY itab - ABAP Keyword Documentation (sap.com)
Your code can be only used to modify an database table from a internal table. (MODIFY dbtab - source - ABAP Keyword Documentation (sap.com)
Regards.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.