SAP END-OF-PAGE ABAP Statements



Get Example source ABAP code based on a different SAP table
  


ID END-OF-PAGE
• END-OF-PAGE ABAP Statement

END-OF-PAGE
Short Reference

ABAP_SYNTAX
END-OF-PAGE.

What does it do?
This statement defines an event block, whose event is raised by the ABAP runtime framework during the creation of a basic list at the following time:
If lines were reserved in the addition LINE-COUNT of the program-initiating statement for a page footer that was reached by a write on this page. List output made in the event block is placed in this area. Output statements that exceed the reserved area are ignored.
If no lines were reserved in the addition LINE-COUNT for a page footer and the end of page was reached by a write on this page. List outputs made in the event block have no effect.



Latest notes:

The event END-OF-PAGE is intended for writing list outputs in the page footer and is raised only when the page footer or end of page is reached. Statements such as NEW-PAGE do not raise the event.
ABAP_HINT_END



Example ABAP Coding

This program outputs a list of flights and creates a page for each connection with a header line and footer line.
ABEXA 00235
ABAP_EXAMPLE_END

Return to menu