Category Archives: SAP Tutorial

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

Subroutines

What is Subroutines – Subroutines are procedures that can define in any program and call from any ABAP program. Subroutines normally contains sections code or algorithms. Subroutines can be defined anywhere in the program and no restriction on where to define. Subroutines can be defined using FORM and ENDFORM statements. PERFORM statement used to call […]

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.