2010 Nov 18 1:31 PM
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
2010 Nov 18 3:03 PM
Check whether the select queries are written properly.
execute the function module independently with some test data and find out what is the problem.
2013 Mar 08 10:53 AM
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%.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |