Category Archives: SAP ABAP

Report Programming

A report is a data presentation made with the specific intention of conveying information in an organized structure.
Many systems enable to design and generate the reports in easily understandable format.
ABAP application supports report programming to create reports.

Open SQL Select

SELECT statement used to read the data from the database tables.
When coming to programming, it is always advisable to retrive only one record for a smoother processing.
If the SELECT statement retrieving more than one row, the first row from the result set gets retrieved to the work area.
If all the rows retrieved using SELECT statement are required to process in the ABAP program, then it advisable to use CURSOR statement.