‎2007 Apr 18 12:30 PM
‎2007 Apr 18 12:30 PM
END-OF-PAGE
AT SELECTION-SCREEN (without additions)
START-OF-SELECTION
GET
You leave these event blocks via STOP, and the runtime environment triggers the event END-OF-SELECTION.
Santhosh
Message was edited by:
Kaluvala Santhosh
‎2007 Apr 18 12:43 PM
If you use the STOP statement within an event block, the system stops processing the block immediately. The ABAP runtime environment triggers the next event according to the following diagram:
INITIALIZATION.
STOP --> SELECTION-SCREEN
START-OF-SELECTION OR GET
STOP. --> END OF SELECTION
END OF SELECTION
STOP --> OUT OF PROGRAM
REPORT EVENT_TEST.
NODES: SPFLI, SFLIGHT, SBOOK.
START-OF-SELECTION.
WRITE 'Test program for STOP'.
GET SBOOK.
WRITE: 'Bookid', SBOOK-BOOKID.
STOP.
END-OF-SELECTION.
WRITE: / 'End of Selection'