Category Archives: SAP ABAP

Function Modules

What is Function Module? Function modules are sub programs that contains set of reusable source code statements with importing, exporting parameters and exceptions. Function modules are stored in central library. Function modules available to the entire system. Function modules can execute independently. If the source code is only used within the same program, then use […]

Static Variables

Static variable initialized only once when the program or function or include etc, execution started and doesn’t initialize until the end of the program or function or include etc,. The value assigned to the static variable retain until the end of the program or function or include etc, execution.

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.

Keywords

SAP ABAP Keywords Summary – In this topic, we described about the below sections – ABAP Keywords What is keyword? Keyword Types Declarative keyword Modularization keyword Event keyword Defining keyword Control keyword Call keyword Operational keyword Database keyword What is a keyword? The first element of the ABAP statement is called as ABAP keyword. A […]

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 […]