ABAP Keyword Documentation → ABAP - Reference → Calling and leaving program units → Calling Processing Blocks
Calling procedures
Procedures can be called internally and externally. The following mapping shows the most important internal and external calls.
The statements for calling procedures are
- for methods:
[CALL METHOD] meth ...
- for function modules:
CALL FUNCTION func ...
- and for the obsolete subroutines:
PERFORM subr ...
These statements supply the parameter interfaces of the procedures. When the call ends, control returns to the statement after the call position.
Other versions: 7.31 | 7.40 | 7.54