Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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

if while coding power goes off , how to retrieve the codes?

2131


Find the scenario and give the result: a, b, c are employees, where a, b will get basic, hra, da. C gets basic and da. How to group for the allowances? : sap abap hr

1151


What are the 3 types of tables in sap? : abap data dictionary

1144


What is pass by value and what is pass by reference? Which is better?

1444


What is database utility?

1376


How to combine multiple order in one Delivery ( Step by Step)?

2441


ABAP : Classical reports events name

1381


Can you delete data element, which is being used by table fields. : abap data dictionary

1193


What is the differences between structure and table in data dictionary in abap?

1138


Explain what are the system fields? Explain?

1184


What are the modes in which any update tasks work?

1187


data:zxyz type xyz. where xyz is a standard sap structure where it contains data type fields and line type (refer to other structure) fields. my question is how to assign values to field zxyz-str-matnr where str is a structure inside xyz structure.

2365


What is the difference between Check and Continue?

1181


Define database layer?

1104


Performance tuning techniques

1404