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
Can we access static attribute from instance method
ABAP : Classical reports events name
Explain what are interactive reports?
What is the name of the system variable that holds the contents of the selected line in interactive reporting?
What is tcode se16? For what is it used.
The extract statements in field groups can be used before or after processing the sort statements. State true or false. : abap modularization
What are the mandatory fields to be filled for BAPI_CUSTOMER_CREATEFROMDATA1
What is the differences between abap and ooabap. In which situation we useooabap?
What is the difference between pnp and pnpce? : abap hr
What is meant by a schema? : sap abap hr
Explain the differences between sap memory and abap memory?
Explain what are the events used in interactive reports?
What are the data types of internal tables?
What do you mean by transparent tables in sap abap? : abap data dictionary
What are the functional modules used in sequence in bdc? : abap bdc