Category Archives: SAP Tutorial

Internal Tables

What is Internal Table? Internal table is a temporary table that is created and used during the program execution and deleted before the program terminated. Internal tables used to store the dynamic data that sets from a fixed structure in the main/working memory in ABAP. The life time of the table is until end of […]

While Loop

WHILE loop executes the block of statements until the specified condition is false. The block of statements can gets executed any number of times as long as the condition is true.
In while loop, condition is validated before executing the block of statements. If the condition is false for the first time, no statements in the loop gets executed.

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.