LOOP Statement reads line by line into <work-area> or into the table work area. LOOP statement is another statement used for reading or processing the internal table.
Category Archives: SAP ABAP
Comments or Non-executable statements definition are self-explanatory. Comments generally used to understand the code easily for the programmers. Comments are do nothing statements and are ignored by the computer.
ABAP supports supressing blanks from the input data. It increases the readability and understandability.
ABAP supports supressing zeroes from the input data. It increases the readability and understandability.
ABAP had SKIP command to insert blank lines in between the output lines.
The ULINE inserts a continuous line in the output. ABAP supports inserting full line and partial line. Inserting partial line requires more inputs from the user.
ABAP programming allows to concatenate consecutive statements with same keyword in the first part into a chain statement.
Constructors are special methods that are called automatically while creating an object or instantiated (accessing the class components) first time.
Constructor gets triggered when an object is created.
COLLECT statement used for populating the internal tables. COLLECT is used while inserting lines into an internal table with unique standard key.
Events are functions that are triggered based on the result of a condition.
Events are used by Objects or classes to trigger event handler methods in other objects or classes.
Any number of event handler methods can be called when an event is triggered.
The link between a trigger and its handler method is decided dynamically at run-time.
