SAP CALL PROCEDURES



Get Example source ABAP code based on a different SAP table
  



Calling Procedures
Procedures can be called both internally and externally. The following figure shows the most important internal and external calls.

IMAGE ABDOC_Call_Proc.gif 467 360

The statements for calling procedures are
for methods: meth( ... ) CALL METHOD dynamic_meth ...
BEGIN_SECTION VERSION 5 OUT
for function modules: CALL FUNCTION func ...
and (for the time being) for the obsolete subroutines: PERFORM subr ...
END_SECTION VERSION 5 OUT
These statements supply the parameter interfaces of the procedures. When the call is terminated correctly, control returns to the statement after the call position.