SAP CALL FUNCTION BACKGROUND PARA ABAP Statements



Get Example source ABAP code based on a different SAP table
  


• EXPORTING CALL FUNCTION IN BACKGROUND
• TABLES CALL FUNCTION IN BACKGROUND

CALL FUNCTION IN BACKGROUND, parameter_list
Short Reference

ABAP_SYNTAX
... $[EXPORTING p1 = a1 p2 = a2 ... $]
$[TABLES t1 = itab1 t2 = itab2 ...$] ...

What does it do?
These additions are used to assign actual parameters to the formal parameters of the function module. The additions have the same meaning as in synchronous RFC with the exception that no values can be applied using IMPORTING and CHANGING and no return values can be assigned to non-class-based exceptions.

Return to menu