Category Archives: SAP ABAP

Complex Types

Complex data types are created with the combination of elementary types. ABAP supports complex data types. Complex types allow us to manage and process conceptually-related data under a single name. Complex types can be processed as a whole or individually.

Literals

What is Literal? Literal is a data object that specifies character like values. Literal defined in the source code of the program. Literals are fully defined by their values. The value of the literal can’t be changed. The fixed values assigned to a constant can also consider as literals. There are two types of literals […]

Constants

What is Constant? Constants are named objects that are used to store a fixed value and the value is fixed during program execution from begining to ending. The difference between constants and variables are, variables value can change any time however the constant value is fixed and can’t be changed. Constants are similar to variables […]

Variables

What is Variable? Variable are named data objects that refers to the memory location allocated during the program execution for processing. Variable contains data and act as a referring name for the data. We can modify data, change data, clear data or apply operations on the data with help of the variable. Each variable should […]

Statements

ABAP programs are written with individual sentences (statements) and each sentence or line of code in the ABAP program is called as ABAP statement. In other words, statement is a combination of keywords, operands, operators, and expressions and so on.