SAP END PROCESSING BLOCKS



Get Example source ABAP code based on a different SAP table
  


VERSION 5 IN

Regular Exiting of a Processing Block
A processing block is terminated regularly when its end is reached.
BEGIN_SECTION VERSION 5 OUT For processing blocks that are completed using an END statement, this is the end. Event blocks that are not completed explicitly with a statement have an implicit completion after their last statement.
END_SECTION VERSION 5 OUT
Depending on the processing block that is exited, the runtime framework behaves as follows:
In procedures, the program returns to the position after the procedure call. The output parameters for which pass by values are defined are passed to the bound actual parameters.
BEGIN_SECTION VERSION 5 OUT
In dialog modules, the program returns to after the calling position in the dynpro flow logic.
In event blocks, the control is returned back to the runtime framework and the current process of the runtime framework continues with the program execution.
END_SECTION VERSION 5 OUT

ABAP_EXAMPLE_VX5
Output before, during, and after execution of a procedure.
ABEXA 01004
ABAP_EXAMPLE_END