0% found this document useful (0 votes)
51 views

Edit Source Edit: ABAP Runtime Environment

ABAP is a fourth-generation programming language originally developed by SAP in the 1980s. It was used to develop SAP's R/3 platform and allows customers to customize and build interfaces for SAP applications. ABAP programs reside in the SAP database and execute within the SAP runtime environment and kernel. The runtime system processes ABAP statements and controls screen flows and events. It acts as a virtual machine similar to Java VM. A key component is the database interface that converts ABAP statements into native SQL understood by the underlying database.

Uploaded by

swayam
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
51 views

Edit Source Edit: ABAP Runtime Environment

ABAP is a fourth-generation programming language originally developed by SAP in the 1980s. It was used to develop SAP's R/3 platform and allows customers to customize and build interfaces for SAP applications. ABAP programs reside in the SAP database and execute within the SAP runtime environment and kernel. The runtime system processes ABAP statements and controls screen flows and events. It acts as a virtual machine similar to Java VM. A key component is the database interface that converts ABAP statements into native SQL understood by the underlying database.

Uploaded by

swayam
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Introduction[edit source | editbeta]

ABAP is one of the many application-specific fourth-generation languages (4GLs) first developed in the 1980s. It was originally the report language for SAP R/2, a platform that enabled large corporations to build mainframe business applications for materials management and financial and management accounting. ABAP used to be an abbreviation of Allgemeiner BerichtsAufbereitungsProzessor, German for "generic report preparation processor", but was later renamed to the English Advanced BusinessApplication Programming. ABAP was one of the first languages to include the concept of Logical Databases (LDBs), which provides a high level of abstraction from the basic database level(s). The ABAP language was originally used by developers to develop the SAP R/3 platform. It was also intended to be used by SAP customers to enhance SAP applications customers can develop custom reports and interfaces with ABAP programming. The language is fairly easy to learn[opinion] for programmers but it is not a tool for direct use by non-programmers. Knowledge of relational database design and preferably also of object-oriented concepts is necessary to create ABAP programs. ABAP remains as the language for creating programs for the client-server R/3 system, which SAP first released in 1992. As computer hardware evolved through the 1990s, more and more of SAP's applications and systems were written in ABAP. By 2001, all but the most basic functions were written in ABAP. In 1999, SAP released an object-oriented extension to ABAP called ABAP Objects, along with R/3 release 4.6. SAP's current development platform NetWeaver supports both ABAP and Java.

ABAP runtime environment[edit

source | editbeta]

All ABAP programs reside inside the SAP database. They are not stored in separate external files like Java or C++ programs. In the database all ABAP code exists in two forms: source code, which can be viewed and edited with the ABAP Workbench tools; and generated code, a binary representation somewhat comparable with Java bytecode. ABAP programs execute under the control of the runtime system, which is part of the SAP kernel. The runtime system is responsible for processing ABAP statements, controlling the flow logic of screens and responding to events (such as a user clicking on a screen button); in this respect it can be seen as a Virtual Machine comparable with the Java VM. A key component of the ABAP runtime system is the Database Interface, which turns databaseindependent ABAP statements ("Open SQL") into statements understood by the underlying DBMS ("Native SQL"). The database interface handles all the communication with the relational database on behalf of ABAP programs; it also contains extra features such as buffering of tables and frequently accessed data in the local memory of the application server.

You might also like