Category Archives: SAP Tutorial

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.

Modularization

What is Modularization? In some scenarios, the application programs are too big and it’s not easy to maintain or find out issues or debug the issues in the program. The application program in ABAP can be divided into smaller units using the technique called Modularization. Modularization is a technique used to divide the application program […]

Macros

If same statements block is repeated more than once in various places of the program, it causes code redundancy.
One of the repeated statements block can place in the macro and the macro call replaces the statements block where ever it repeatedly existed.