SAP ABAP Tutorials

ABAP Programming Complete Course

ERP and SAP IntroductionIntroduction to ERP, why company needs an ERP software? Introduction to SAP, History and Evolution of SAP. Functional and Technical Modules in SAP. SAP System ArchitectureArchitecture of SAP System. SAP R/1 single-tier architecture, SAP R/2 tow-tier architecture, SAP R/3 three-tier architecture. Understanding SAP NetWeaver Technology Platform. SAP NetWeaver Application Server . SAP

ABAP Programming Complete Course Read More »

SAP three-tier architecture

With SAP R/3 system, SAP moved towards 3-tier architecture. A three-tier architecture is a client/server architecture, wherein we have three service layers Presentation layer, Application layer and Database layer. Each of these layers are developed and maintained as individual modules. SAP Installation consists of a database server, typically on a UNIX based machine/system; one or

SAP three-tier architecture Read More »

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 »