Skip to content

ABAP Keyword Documentation →  ABAP − Reference →  Data Interfaces and Communication Interfaces →  RFC - Remote Function Call →  CALL FUNCTION - RFC 

CALL FUNCTION - DESTINATION

Quick Reference

Other versions: 7.31 | 7.40 | 7.54

Syntax


CALL FUNCTION func DESTINATION dest parameter_list. 

Effect

Synchronous call (sRFC) of a remote-enabled function module specified in func using the RFC interface. The addition DESTINATION is used to specify the destination in dest. func and dest expect character-like data objects. The calling program is continued using the statement CALL FUNCTION, if the remotely called function has finished.

More Information

More information about sRFC can be found in the RFC documentation on SAP Help Portal.


Notes

  • If an empty string or a text field consisting only of blanks is specified for dest, the addition DESTINATION is ignored and a regular CALL FUNCTION func call is made.
  • The synchronous RFC triggers a database commit in the calling program. An exception to this is sRFC in updates.

Continue

CALL FUNCTION - DESTINATION parameter_list

CALL FUNCTION - DESTINATION - Internal Addition