what are the events in ABAP?
Answers were Sorted based on User's Feedback
Answer / munnaluri siva
Example of Classical Report
LINE-SIZE 70
LINE-COUNT 30(3)
NO STANDARD PAGE HEADING . " We will give for describing our
own format
Select-options : S1 for P_Matnr
Initialization. "ABAP will process this first and when you
activate the program it will called first .
s1-low = '45'
s1-high = '89'
AT Selection-screen . " it will do some validation , on the
screen , before your compiling it will check whether user
enter any fields or not.
if S1-low='' and S1-high = ''.
Message ' Enter some value' type 'E'.
Endif.
Start-of-selection . " this mainly used for retrieve the
data from the Db and logic will be executed here .
SELECT MATNR MBRSH MTART FROM MARA INTO TABLE ITAB WHERE
MATNR IN S1.
TOP-of-Page." Mainly used for display .
WRITE:/ 'TEST FOR CLASSICAL REPORTS' COLOR 7.
ULINE.
END-OF-SELECTION. " To display the data which is fetched
from the db .
LOOP AT ITAB.
WRITE:/ ITAB-MATNR,ITAB-MBRSH,ITAB-MTART.
ENDLOOP.
End-of-page. " this is used to display the end of the report .
WRITE:/ 'THIS IS END OF PAGE' COLOR 5.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sandhya
Classical Reports:
Initialization
At Selection-Screen Output
At Selection-Screen <on field>
At Selection-Screen
Start-of-Selection
End-of-Selection
Top-of-page
End-of-page
Interactive Reports:
At line Selection
At User Command
Top of Page During Line Selection
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / saravanan.p
Events in Classical Report:
1.Initialization
2.At selection-screen.
a) At Selection-screen output.
b) At selection-screen on field.
c) At selection-screen on value-request.
d) At selection-screen on Help-request.
3.Start-of-selection.
4.Start-of-page.
5.End-of-page.
6.End-of-selection.
Events in Interactive Reports:
1.At line selection.
2.Top of page during line selection.
3.At user Command.
4.At pfn( Press function key).
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / ashwinikumar
EVENTS IN ABAP:
There are five types of events in ABAP, given below,
1. CLASSICAL EVENTS
a. Initialization
b. Load of program
c. At selection screen output
d. At selection screen of field
e. At selection screen on value request
f. At selection screen on help request
g. At selection screen
h. Start of selection
i. End of selection
j. Top of page and End of page.
2. INTERACTIVE EVENTS
a. At line Selection
b. At PF(predefined function) key
c. At User command
d. Top of page during Line_ selection
3. MODULE- POOL PROGRAMMING EVENTS
a. PAI - Process after input
b. PBO - Process before output
c. POV- Process on value Request(F! Help)
d. POH- Process on Help Request(F4 Help)
4. LIST EVENTS
a. Top of Page
b. End of Page
5.CONTROL BREAK EVENTS
a. At First
b. At Last
c. At New
d. At end of
e. On change of
f. GET node
g. GET node LATE
h. At line selection
i. At user command
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / narin
In Clasical Reports
--------------------
1.Initialization
2.At Selection-Screen.
3.Start-Of-Selection.
4.Top-of-page.
5.End-of-page.
6.End-of-selection.
In Interactive Reports
----------------------
1.At Line-Selection.
2.At PF key
3.At User-Command
4.Top-of-page During Line-Selection.
5.GET
6.GET LATE
Is This Answer Correct ? | 14 Yes | 15 No |
Answer / sridhar
There are several events
In Clasical Reports
1.Initialization
2.At Selection-Screen.
3.At selection on field.
4.At selection output
5.Start-Of-Selection.
6.Top-of-page.
7.End-of-page.
8.End-of-selection.
In Interactive Reports
1.At Line-Selection.
2.At PF key
3.At User-Command
4.Top-of-page During Line-Selection.
Is This Answer Correct ? | 9 Yes | 11 No |
Answer / p.pandian
ABAP Report has the following events
1. initilization.
2. top-of-page.
3. end-of-page.
4. start-of-page.
5. end-of-page.
6. at selection-screen.
7. at selection-screen output.
8. at line-selection.
9. at user-command.
Using the above events you can initialize and manipulate
the data.
By P.PANDIAN.
Is This Answer Correct ? | 7 Yes | 9 No |
Answer / samsul akhtar
1. INITIALIZATION
2. AT-SEECTION-SCREEN
3. START-OF-SELECTION
4. TOP-OF-PAGE
5 END-OF-PAGE
6 END-OF-SELECTION
7 AT-LINE-SELECTION
8 AT-USER-COMMAND
9 TOP-OF-PAGE DURING LINE-SELECTION
Is This Answer Correct ? | 8 Yes | 14 No |
What is the difference between open_form and close_form?
Explain data dictionary in abap?
16) Is BSEG and BKPF transaparent tables?
In Function module SAP provieds Two Standard Exception, give name of that two exceptions.
How do you send the output of a script as an email attachment
What are RFCs? How do you write RFCs on SAP side?
What are the domains and data element?
Define abap/4 layer?
What is off cycle payroll run
i have cleared my technical round and manager round in cts but they told me u will get a call with in couple of days now i dont know about my status
What is the process to enhance the Infotype
What are the difference between pool tables and transparent tables?