Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

DBIF_RSQL_INVALID_RSQL Dump while insert

Former Member
0 Kudos

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

4 REPLIES 4

Former Member
0 Kudos

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.

arvind_pereira
Participant
0 Kudos

This message was moderated.

0 Kudos

I'm not sure, because the dump was posted there more than 2 years ago...


Regards,

Raymond

ThomasZloch
Active Contributor
0 Kudos

This message was moderated.