Get Example source ABAP code based on a different SAP table
Calling Processing Blocks In every processing block> of an ABAP program, processing blocks of the same program can be called (internal calls) or processing blocks of other ABAP programs can be called (external calls).
Direct call of procedures>.
Indirect call of event handlers> by raising events from the same class in methods. This supplies the interface of the event handler. A prerequisite for the execution of an event handler is its registration>. BEGIN_SECTION VERSION 5 OUT
Indirect call of event blocks by raising events in the runtime framework explicitly. The statement MODULE>> is used to call dialog modules in the processing blocks of the dynpro flow logic>, however, and not in processing blocks of an ABAP program. END_SECTION VERSION 5 OUT