SAP END-OF-SELECTION ABAP Statements



Get Example source ABAP code based on a different SAP table
  


ID END-OF-SELECTION
• END-OF-SELECTION ABAP Statement

END-OF-SELECTION
Short Reference

ABAP_SYNTAX_OBS
END-OF-SELECTION.

What does it do?
The statement END-OF-SELECTION is only intended for use in executable programs that are linked with a logical database. The statement defines an event block whose event is raised as follows by the ABAP runtime framework during the process flow of the executable program:
If the executable program is linked with a logical database, END-OF-SELECTION is raised if the logical database has completed its work.
In an executable program without a logical database, END-OF-SELECTION is raised directly after START-OF-SELECTION (or START-OF-EDITING).



Latest notes:

In this event block, all data read by the logical database can be processed in summarized form.
In an executable program without a logical database, there is no need to implement the event block END-OF-SELECTION.
ABAP_HINT_END

ABAP_EXAMPLE_ABEXA
Logical Database, Linked with a Program
ABAP_EXAMPLE_END

Return to menu