SAP END-OF-SELECTION ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for END-OF-SELECTION

END-OF-SELECTION

Short Reference
• END-OF-SELECTION ABAP Statement

ABAP Syntax(Obsolete)END-OF-SELECTION.

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

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



Example ABAP Coding
See Example for Reporting Events


Return to menu