Get Example source ABAP code based on a different SAP table
• DESTINATION CALL FUNCTION
CALL FUNCTION DESTINATION> Short Reference >
ABAP_SYNTAX CALL FUNCTION func DESTINATION dest parameter_list>.>
What does it do? BEGIN_SECTION VERSION 5 OUT 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> For more information about sRFC, see the documentation RFC> in SAP Help Portal. END_SECTION VERSION 5 OUT
Latest 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 performed.
The synchronous RFC triggers a database commit> in the calling program with the following exception: No database commit is triggered by an sRFC during update> processing. sRFC is not forbidden during updates>. ABAP_HINT_END