Application Development and Automation 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: 
Read only

Error in module RSQL of the database interface

Former Member
0 Likes
1,442

Hi Experts,

we are facing the below error while executing the RFC from Webdynpro applications.

Error is :

Error in module RSQL of the database interface., error key: RFC_ERROR_SYSTEM_FAILURE: Error in module RSQL of the database interface., error key: RFC_ERROR_SYSTEM_FAILURE

here we are trying to upload the Document to server through the RFC.

Plaese let me where we are misising the reason for the above error.

thanks in adavance.

Regards,

Govindu

Hi Experts,

we are facing the below error while executing the RFC from Webdynpro applications.

Error is :

Error in module RSQL of the database interface., error key: RFC_ERROR_SYSTEM_FAILURE: Error in module RSQL of the database interface., error key: RFC_ERROR_SYSTEM_FAILURE

here we are trying to upload the Document to server through the RFC.

Plaese let me where we are misising the reason for the above error.

thanks in adavance.

Regards,

Govindu

2 REPLIES 2
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
753

Check whether the select queries are written properly.

execute the function module independently with some test data and find out what is the problem.

Read only

0 Likes
753

Hi Govindu ,

This dump occurs whenever there is a missmatch of types in where clause parameters in Select query. Try to evaluate your select query and map the variables with same data element.

e.g. Recently I faced the issue and resolved like below.

Earlier: (Not proper code)
plans TYPE plans,

FOR ALL ENTRIES IN lt_objid
     WHERE   objid = lty_inftyp-plans

This code was not giving any syntax error. But OBJID and PLANS is not have the same data element.

Then I have created a same dataelement internal table and the move all the values of PLANs to that OBJID and then compare in for all entries.

FOR ALL ENTRIES IN lt_objid
           WHERE   objid = lt_objid-objid


Hope this will help you to resolve your query 100%.