what are the events in ABAP?
Answer Posted / 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 |
Post New Answer View All Answers
Explain what are the events in screen programming?
A field containing quantity amounts (data type quan) must be assigned to a reference table and a reference field. Explain? : abap data dictionary
How do you write transaction programs in sap?
what is bapi,badi,bdc,ale idocs?
What are the types of subroutines?
What is dynpro? what are its components ?
How many default tab strips are there? How to insert more tabs in it?
What is the purpose of creating symbolic a/c, what is transaction code for same? Can we assign one symbolic a/c to multiple wage types? : sap abap hr
Difference between Field groups and internal tables?
What is help view?
When the get cursor command used in interactive lists?
Did you create primary index?
What is primary index?
What is the step-by-step process to create a table in data dictionary? : abap data dictionary
What is the lock object?