END-OF-PAGE : ABAP Keyword a day
END-OF-PAGE
Basic form
END-OF-PAGE.
Effect
List processing event.
The END-OF-PAGE event is executed whenever processing reaches that area when formatting a list page or if the RESERVE statement detects that there is insufficient space remaining on the current page.
Note
* The size of the END-OF-PAGE area of list pages is defined in the LINE-COUNT specification of the REPORT statement (e.g. EXPORT TEST LINE-COUNT 65(3) ). If no size is defined, the END-OF-PAGE area contains no lines and the event END-OF-PAGE is never executed.
* If the standard setting LINE-COUNT 0 applies (i.e. no restriction on the number of lines per page), the event END-OF-PAGE is not processed, since no automatic new page follows.
* If you explicitly specify a new page with NEW-PAGE , END-OF-PAGE is ignored.
Related TOP-OF-PAGE
If you like this post, you may as well like these too:
- DESCRIBE : ABAP Keyword a day DESCRIBE Return attributes of a field - DESCRIBE FIELD f. Return attributes of an internal table - DESCRIBE TABLE itab. Determine distance between two fields - DESCRIBE DISTANCE BETWEEN...
- BACK: ABAP Keyword a day BACK. EffectReturns output position to the first line of the current page after the TOP-OF-PAGE processing.When used in connection with RESERVE x LINES , the statement returns the output...
- EXIT : ABAP Keyword a day EXIT Basic forms 1. EXIT. 2. EXIT FROM STEP-LOOP. 3. EXIT FROM SQL. EXIT in loops and modularization units Basic form EXIT. Effect * In loop structures: Leaves the...
- CHECK : ABAP Keyword a day CHECK Within loops and events- CHECK logexp.Special for reports with logical databases- CHECK sel.- CHECK SELECT-OPTIONS. CHECK - within loops Basic formCHECK logexp.EffectCHECK evaluates the subsequent logical expression ....
- DO : ABAP Keyword a day DO Variants 1. DO. 2. DO n TIMES. Variant 1 DO. Addition … VARYING f FROM f1 NEXT f2 Effect Repeats the processing enclosed by the DO and ENDDO...
















Leave a Reply