Chapter 02_ABAP Events
Chapter 02_ABAP Events
ABAP Events
Objectives
The participants will be able to:
Interpret ABAP Event-Driven Programming.
Identify the System Triggered events that are executed during runtime of a Report
program
Identify the User Invoked List Display events, that are triggered after the report has
generated the basic list.
NODES:BSIK.
END-OF-SELECTION.
WRITE: / ‘END-OF-SELECTION’,
3
‘has occurred’.
START-OF-SELECTION.
WRITE: / ‘START-OF- 1
SELECTION’,
‘has occurred’.
Select records
from logical
database tables
Demonstration
Practice
PF##
PICK
16 ABAP Events | Dec-2008 © 2005 IBM Corporation
IBM Global Services
All Others
besides
PICK or PF##
Demonstration
Observe the following user-invoked List Display events after the Basic List has
been generated by a Report Program.
AT PF##.
AT LINE-SELECTION.
AT USER-COMMAND.
Practice
Observe the following user-invoked List Display events after the Basic List has
been generated by a Report Program.
AT PF##.
AT LINE-SELECTION.
AT USER-COMMAND.
Summary
Questions
What are the different events in an ABAP program that can be triggered before
user interaction ? When do they get triggered ?
What are the user-invoked events for a list display ?
What are the events used for displaying Headers and Footers in a list ? When
are these events invoked ?
Which part of a code in a program are executed for an event ?