SAP RFC OBJECT ID



Get Example source ABAP code based on a different SAP table
  


INTERNAL

RFC Termination with the Error Message CALL_FUNCTION_OBJECT_ID

Cause and Conditions
The error message CALL_FUNCTION_OBJECT_ID is raised whenever the RFC delta manager has problems coordinating the table parameter names between the sender and receiver in an RFC communication when internal tables are passed.
One of the table parameter names is either wrong or the receiving side no longer supports that table parameter. A typical example is the function module RFC_PING that no longer supports table parameters with the name RFCTAB. If this function module is used to test the connection, either the passing of the table parameter must be adjusted accordingly or the call removed from the program.

Solution
Check the names of the tables that you want to pass and correct their names if necessary. Check the table parameters to see if they are implemented as parameters on the receiving side. Note that the table parameter for the function module RFC_PING has been changed and that it now no longer expects any table parameters. You may need to adjust the function module or remove the call for RFC_PING.
Switch off the delta manager function for the RFC communication. There are two ways of doing this:
On the sending side, by calling the function module RFC_CONNECTION_CLOSE for the RFC RFC destination that is causing problems. This closes the RFC connection.
On the receiving side, by executing one of the ABAP statements SORT itab or REFRESH itab in the called function module for all table parameters.