ABAP statements

ABAP Program is made up of various statements. Every ABAP statement starts with keyword. The ABAP statement could be categorized as Declarative Statements- begins with declarative keyword to declare user-defined type or data objects. TYPES, DATA, CONSTANTS, PARAMETERS, SELECT-OPTIONS, TABLES. Modularization statements defines processing block. Some keywords to define module are FORM.. ENDFORM, FUCNTION.. ENDFUNCTION, […]

ABAP statements Read More »

Structure of ABAP Program

An ABAP program follows the following structure. Header Global Declarations Processing Block Subroutine definitions Header Area It follows a standard template and includes information about the development and important comments. Global Declaration In the Global declaration section, we define types, and data objects which are global and can be accessed from anywhere in the program.

Structure of ABAP Program Read More »

ABAP Data Objects

DATA Keyword Data objects or variables in ABAP are defined with DATA statement. You use an elementary type, or a local type, or a data dictionary global type to define data object. TYPE and LIKE When creating a Data Object referring to a Data Type use TYPE. Use LIKE keyword when defining data object by

ABAP Data Objects Read More »