Author Archives: Admin

Class

What is Class? A class is a collection of equivalent properties and set of instructions. Class is a template to objects and define objects. In technical, objects are runtime instances of a class. Any number of objects can be created on a single class. Each instance/object of a class has a unique identity and its […]

Basic Statements

ABAP program is a combination of executable and non-executable statements. Every executable statement in ABAP starts with a keyword and ends with a period(.).
First executable statement starts with REPORT keyword followed by the report-name (same as the program name) and ends with period.
This first statement automatically written by the editor even though the program is creating for the first time.

Strings

What is String? Strings are set of characters arranged in sequence. Strings also called as character strings. Character or string data type is used to declare the character strings in ABAP. Character data type holds alphanumeric characters with minimum length of 1 character and maximum of 65535 characters. Character data type is left justified and […]