SAP NetWeaver AS ABAP Release 740, ©Copyright 2014 SAP AG. All rights reserved.
ABAP Keyword Documentation → ABAP − Short Reference →
CALL FUNCTION - Short Reference
Syntax
CALL FUNCTION func [ {IN UPDATE TASK}
| { [ {STARTING NEW TASK task}
| {IN BACKGROUND TASK [AS SEPARATE UNIT]} ]
[DESTINATION dest] }
| {IN BACKGROUND UNIT} ]
[{CALLING meth}|{PERFORMING subr} ON END OF TASK]
{[EXPORTING p1 = a1 p2 = a2 ...]
[IMPORTING p1 = a1 p2 = a2 ...]
[TABLES t1 = itab1 t2 = itab2 ...]
[CHANGING p1 = a1 p2 = a2 ...]
[EXCEPTIONS [exc1 = n1 exc2 = n2 ...]
[error_message = n_error]
[system_failure = ns
[MESSAGE smess]]
[communication_failure = nc
[MESSAGE cmess]]
[resource_failure = nc]
[OTHERS = n_others]]}
| {[PARAMETER-TABLE ptab]
[EXCEPTION-TABLE etab] }.
Effect
Calls the function module specified in func.
Additions