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


Please Help Members By Posting Answers For Below Questions

Explain the advantages of different types of bdc's?

724


Kindly help me to Know the process of mapping in EDI from R/3 to a convertor(third party which translates IDoc flatfile to EDIFACT /XML / FTP /HTTP ) ?

1760


what is sales order confirmation and how can do design it in webdynpro. what is Tcode for the same?

2185


What are null values? : abap data dictionary

878


Difference between domain and data element? What are aggregate object?

841


Can we use on change of between select and endselect?

777


When to use logical database?

756


What is human resource information systems (chris)? : sap abap hr

721


What are the data types of the external layer? : abap data dictionary

1021


How many ways can a sap system be accessed?

890


Did you create help views?

735


Can a domain, assigned to a data element be changed? : abap data dictionary

755


What is tcode se16. For what is it used. Explain briefly?

733


Difference between Field groups and internal tables?

816


How do you validate the selection criteria of a report? And how do you display initial

784