Skip to content

SAP ABAP Training, Study materials, Help Documents, tutorials, guides

SAP ABAP Training, Study materials, Help Documents

TOP-OF-PAGE event in ABAP

Usage :   TOP-OF-PAGE [DURING LINE-SELECTION]. Addition:  DURING LINE-SELECTION This statement defines an event block whose event is triggered by the ABAP runtime environment during the creation of a list. This occurs when a new page is started – that is, immediately before the first line in a new page is to be output. All list [...]

START-OF-SELECTION event in ABAP

Usage :  START-OF-SELECTION. This event keyword defines an event block for which the event is triggered by the ABAP runtime environment during the flow of an executable program and before any selection screens are processed.In an executable program, all statements that are not declarations and that are listed before the first explicit processing block, or [...]

LOAD-OF-PROGRAM event in ABAP

Usage : LOAD-OF-PROGRAM. This event keyword defines an event block whose event is triggered by the ABAP-runtime environment when an executable program, a module pool, a function group or a sub-routine pool is loaded in the internal session.When a program is called using SUBMIT or using a transaction code, then – at every call – [...]

INITIALIZATION event in ABAP

Usage:  INITIALIZATION. This event keyword defines an event block whose event is triggered by the ABAP runtime environment during the flow of an executable program, directly after LOAD-OF-PROGRAM and before the selection screen processing of any existing standard selection screen. This gives you the one-time opportunity to initialize the input fields of the selection screen, [...]

END-OF-SELECTION event in ABAP

Usage :  END-OF-SELECTION. This statement defines an event block, whose event is raised by the ABAP-runtime environment during the calling of an executable program , if the logical database, with which the program is linked, has completely finished its work.

END-OF-PAGE event in ABAP

Usage:  END-OF-PAGE. This statement defines an event block that is raised by the ABAP-runtime during creation of a basic list, if there is a line reservation in the addition LINE-COUNT of the initiating statement for a page footer, which was reached while writing to this page. A list output that takes place in the event [...]

AT USER-COMMAND event in ABAP

Usage : AT USER-COMMAND. This statement defines an event block whose event is triggered by the ABAP runtime environment if, during the display of a screen list, a function with a self-defined function code was chosen.

AT SELECTION-SCREEN event in ABAP

Usage : AT SELECTION-SCREEN selscreen_event. This statement defines event blocks for different events selscreen_event that are triggered by the ABAP runtime environment during selection screen processing.Selection screen events occur immediately before sending a selection screen and after certain user actions on a displayed selection screen. They assist in selection screen processing in the ABAP program.AT [...]

AT PF## event in ABAP

Usage : AT PF##. This statemet defines an event block whose event is triggered by the ABAP runtime environment during list display – provided the screen cursor is on a list line and a function is selected using the function code PF##. Here ## stands for a number between 01 and 24. In the= standard [...]

AT LINE-SELECTION event in ABAP

Usage :   AT LINE-SELECTION. This statement defines an event block whose event is triggered by the ABAP runtime environment during the display of a screen list – provided the scren cursor is on a list line and you select a function using the function code PICK. Through the definition of this event block, the standard [...]