SAP START-OF-SELECTION ABAP Statements
Get Example source ABAP code based on a different SAP table
ID START-OF-SELECTION
• START-OF-SELECTION ABAP Statement
ABAP_SYNTAX
What does it do?
This event keyword defines the standard processing block of an executable program. The associated event is raised by the
In an executable program, the following statements are assigned to an implicit
Latest notes:
If the program is linked to a
ABAP_HINT_END
Example ABAP Coding
The following program section shows the recommended use of
ABEXA 00685
ABAP_EXAMPLE_END
Example ABAP Coding
The following three executable programs all have the same functionality:
The first program contains an explicit event block
ABEXA 00686
In the second program, there is an assignment before the first processing block, which constructs a second implicit event block
ABEXA 00687
In the third program, there is no explicit processing block. All statements implicitly construct the event block
ABEXA 00688
The third program has the same meaning as the first program. The second program, however, would have the following form if expressed explicitly:
ABEXA 00689
ABAP_EXAMPLE_END
Return to menu