‎2011 Sep 13 7:17 AM
Hi All,
Am getting dump DBIF_RSQL_INVALID_RSQL while inserting data to a standard table.
Code below:
INSERT /cockpit/titemo FROM TABLE lt_item_org.
This code is in the standard FM /COCKPIT/OBJ_DATA_ORG_SAVE.
Please note the internal table is of type /cockpit/titemo.
Any inputs on this would be helpful.
Thanks,
John
‎2011 Sep 13 7:38 AM
Hi Jhon,
I am not sure but table /cockpit/titemo and function module /COCKPIT/OBJ_DATA_ORG_SAVE are not looking like as a standred table and function module respectively, please check whether /cockpit/ is a cunstomer namespace specialy assgned by SAP to your customer or your system.
After seeing the dump name, it looks like there is a possibility that table entry is already exist in table /cockpit/titemo and you are trying to insert values for same key fields in the table.
Also there is a possibility that you are trying to insert data from internal table lt_item_org, this statement is not looking so much effective.
INSERT /cockpit/titemo FROM TABLE lt_item_org.If /COCKPIT/ is the customer namespace then you should be able to do changes and try to change avove query to
MODIFY /cockpit/titemo FROM TABLE lt_item_org.
‎2014 Jan 10 12:28 PM
‎2014 Jan 10 1:52 PM
‎2014 Jan 10 1:24 PM