SAP NetWeaver AS ABAP Release 740, ©Copyright 2014 SAP AG. All rights reserved.
ABAP Keyword Documentation →
ABAP − Reference →
Calling and leaving program units →
Calling Processing Blocks →
Calling Procedures →
Internal Procedure Call
All procedures which are defined in the same ABAP program and are visible from the calling position can be called internally.
- In every ABAP program, and within a class, the visible
methods of the class or visible
methods of other local classes of the same program can be called. The calling of methods is the only procedure call which is recommended for the program modularization.
- In every ABAP program that still contains
subroutines, these can also still be called internally. Subroutines are an obsolete form of internal modularization and should be replaced by methods if possible.
The required program is always already loaded for internal calls.