what are the events in ABAP?
Answer Posted / onkar rai
There are several events used in ABAP . we mainly use events
in Reports. while developing a report sequence of event is
1) Initialization: process after load of program and before
the selection screen processing.
2) At Selection Screen output: This event is generally used
for modification of the screen like hide/unhide parameters.
3) At Selection Screen: Occurs each user command in
selection screen. We can use it to perform checking on user
input.
4) Start of Selection: occurs when standard selection screen
has been processed. data is read in this event.
5) End of Selection: This event is triggered in type
executable programs once the logical database has finished
reading all data and before the list processor is started
6) Top of Page: Occurs when a new page starts. Use it for
write report header.
7) End of Page: Occurs when a page ends. use it for write
report footer.
8) At Line Selection: occurs when user double click on report.
9) At User Command: Occurs when the user push the toolbar
button.
Apart form this we use four events in module programming:
1) PAI: Process After Input
2) PBO: Process Before Output
3) POV: Process on Value Request (F1 Help)
4) POH: Process on Help Request (F4 help)
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
After running a BDC program in background, next day morning when you see the results, few records are not updated(error records). What will you do then ?
A field containing quantity amounts (data type quan) must be assigned to a referencetable and a reference field. Explain?
What are logical data bases used in hr module? : abap hr
What are the rules to create a BAPI?
What is the max. No. Of structures that can be included in a table or structure? : abap data dictionary
What is the collect statement? How is it different from append?
Why grouping of fields is required? What is the max no of modification groups for each field?
What is a size category?
What are the functional areas? User groups? And how does abap/4 query work in relation to these?
What is the symbol to do “concatenation” operation in nw abap 7.4 ?
What are the different modes of processing batch input sessions? : abap bdc
What are the sequences of event block?
What is the difference between internal tables and extract datasets? : abap modularization
Explain different types of locks?
What is the structure of the bdc table? : abap bdc