This article has multiple issues.Please helpimprove itor discuss these issues on thetalk page.(Learn how and when to remove these messages)
|
ABAP(Advanced Business Application Programming, originallyAllgemeiner Berichts-Aufbereitungs-Prozessor,German for "general report preparation processor"[2]) is ahigh-level programming languagecreated by the GermansoftwarecompanySAP SE.It is currently positioned, alongsideJava,as the language for programming theSAP NetWeaver Application Server,which is part of theSAP NetWeaverplatform for building business applications.
Paradigm | Object-oriented,structured,imperative |
---|---|
Designed by | SAP SE |
First appeared | 1983 |
Stable release | 7.58[1]
/ October 26, 2023 |
Typing discipline | Static,strong,safe,nominative |
OS | Cross-platform |
Website | community |
Majorimplementations | |
SAP R/2,SAP R/3,SAP S/4HANA | |
Influenced by | |
Objective-C,[citation needed]COBOL,[citation needed]SQL[citation needed] |
Introduction
editABAP is one of the many application-specific fourth-generation languages (4GLs) first developed in the 1980s. It was originally the report language forSAP 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 ofAllgemeinerBerichts-Aufbereitungs-Prozessor,German for "generic report preparation processor", but was later[when?]renamed to the EnglishAdvancedBusinessApplicationProgramming.ABAP was one of the first languages to include the concept ofLogical Databases(LDBs), which provides a high level of abstraction from the basic database level(s), which supports every platform, language and units.
The ABAP language was originally used by developers to develop theSAP R/3platform. 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 was geared towards more technical customers with programming experience.
ABAP remains as the language for creating programs for the client–serverR/3system, 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 platformNetWeaversupports both ABAP andJava.
ABAP has an abstraction between the business applications, the operating system and database. This ensures that applications do not depend directly upon a specific server or database platform and can easily be ported from one platform to another.
SAP Netweaver currently runs onUNIX(AIX,HP-UX,Solaris,Linux),Microsoft Windows,i5/OSonIBM System i(formerly iSeries, AS/400), andz/OSonIBM System z(formerly zSeries, S/390). Supported databases areHANA,SAP ASE (formerly Sybase),IBM Db2,Informix,MaxDB,Oracle,andMicrosoft SQL Server(support for Informix was discontinued in SAP Basis release 7.00).[3]
ABAP Runtime Environment
editAll 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 withJavabytecode. 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 aVirtual Machinecomparable with the Java VM. A key component of the ABAP runtime system is the Database Interface, which turns database-independent 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.
SAP Systems and Landscapes
editAll SAP data exists and all SAP software runs in the context of aSAP system.A system consists of a central relational database and one or more application servers ( "instances" ) accessing the data and programs in this database. A SAP system contains at least one instance but may contain more, mostly for reasons of sizing and performance. In a system with multiple instances, load balancing mechanisms ensure that the load is spread evenly over the available application servers.
Installations of theWeb Application Server(landscapes) typically consist of three systems: one for development; one for testing and quality assurance; and one for production. The landscape may contain more systems (e.g., separate systems for unit testing and pre-production testing) or it may contain fewer (e.g., only development and production, without separate QA); nevertheless three is the most common configuration. ABAP programs are created and undergo first testing in the development system. Afterwards they are distributed to the other systems in the landscape. These actions take place under control of the Change and Transport System (CTS), which is responsible for concurrency control (e.g., preventing two developers from changing the same code at the same time), version management, and deployment of programs on the QA and production systems.
TheWeb Application Serverconsists of three layers: the database layer; the application layer; and the presentation layer. These layers may run on the same or on different physical machines. Thedatabase layercontains the relational database and the database software. The 'application layer' knowledge contains the instance or instances of the system. All application processes, including the business transactions and the ABAP development, run on the application layer. Thepresentation layerhandles the interaction with users of the system. Online access to ABAP application servers can go via a proprietary graphical interface, which is called "SAP GUI", or via a Web browser.
Software Layers
editABAP software is deployed in software components. Examples for these are:
- SAP_BASISis the technical base layer which is required in every ABAP system.
- SAP_ABAcontains functionalities which is required for all kinds of business applications, like business partner and address management.
- SAP_UIprovides the functionality to create SAP UI5 applications.
- BBPCRMis an example for a business application, in this case the CRM application
Transactions
editA transaction in SAP terminology is the execution of a program. The normal way of executing ABAP code in the SAP system is by entering a transaction code (for instance, VA01 is the transaction code for "Create Sales Order" ). The common transaction codes (T-codes) used by ABAP developer are SE38, SE09, SE10, SE24, SE11, SE16N, SE80, SE37, ST22 etc.[4][5]Transactions can be called via system-defined or user-specific, role-based menus. They can also be started by entering the transaction code directly into a command field, which is present in every SAP screen. Transactions can also be invoked programmatically by means of the ABAP statements CALL TRANSACTION and LEAVE TO TRANSACTION. The general notion of atransactionis called a Logical Unit of Work (LUW) in SAP terminology.
Types of ABAP programs
editAs in other programming languages, an ABAP program is either an executable unit or a library, which provides reusable code to other programs and is not independently executable.
ABAP distinguishes two types of executable programs:
- Reports
- Module pools
Reports follow a relatively simple programming model whereby a user optionally enters a set of parameters (e.g., a selection over a subSET of data) and the program then uses the input parameters to produce a report in the form of an interactive list. The term "report" can be somewhat misleading in that reports can also be designed tomodifydata; the reason why these programs are called reports is the "list-oriented" nature of the output they produce.
Module pools define more complex patterns of user interaction using a collection of screens. The term “screen” refers to the actual, physical image that the user sees. Each screen also has a "flow logic", which refers to the ABAP code implicitly invoked by the screens, which is divided into a "PBO" (Process Before Output) and "PAI" (Process After Input) section. In SAP documentation the term “dynpro” (dynamic program) refers to the combination of the screen and its flow logic.
The non-executable program types are:
- INCLUDE modules– These get included at generation time into the calling unit; it is often used to subdivide large programs.
- Subroutine pools– These contain ABAP subroutines (blocks of code enclosed by FORM/ENDFORM statements and invoked with PERFORM).
- Function groups– These are libraries of self-contained function modules (enclosed by FUNCTION/ENDFUNCTION and invoked with CALL FUNCTION).
- Object classes– These are similar to Java classes and interfaces; the first define a set of methods and attributes, the second contain "empty" method definitions, for which any class implementing the interface must provide explicit code.
- Interfaces– Same as object classes
- Type pools– These define collections of data types and constants.
ABAP programs are composed of individual sentences (statements). The first word in a statement is called an ABAP keyword. Each statement ends with a period. Words must always be separated by at least one space. Statements can be indented as you wish. With keywords, additions and operands, the ABAP runtime system does not differentiate between upper and lowercase.
Statements can extend beyond one line. You can have several statements in a single line (though this is not recommended). Lines that begin with asterisk * in the first column are recognized as comment lines by the ABAP runtime system and are ignored. Double quotations marks ( ") indicate that the remainder of a line is a comment.
Development environment
editThere are two possible ways to develop in ABAP. The availability depends on the release of the ABAP system.
ABAP Workbench
editTheABAP Workbenchis part of the ABAP system and is accessed viaSAP GUI.It contains different tools for editing programs. The most important of these are (transaction codes are shown in parentheses):
- ABAP Editorfor writing and editing reports, module pools, includes and subroutine pools (SE38)
- ABAP Dictionaryfor processing database table definitions and retrieving global types (SE11)
- Menu Painterfor designing the user interface (menu bar, standard toolbar, application toolbar, function key assignment) (SE41)
- Screen Painter,ascreen generatorfor designing screens and flow logic (SE51)
- Function Builderfor function modules (SE37)
- Class Builderfor ABAP Objects classes and interfaces (SE24)
TheObject Navigator(transaction SE80) provides a single integrated interface into these various tools.
ABAP Development Tools
editTheABAP Development Tools(ADT), formally known as "ABAP in Eclipse", is a set of plugins for theEclipse IDEto develop ABAP objects.[6]
In this scenario, the ABAP developer installs the required tools on his computer and works locally, whereas a continuous synchronization with the backend is performed.
ABAP Dictionary
editThe ABAP Dictionary contains all metadata about the data in the SAP system. It is closely linked with the ABAP Workbench in that any reference to data (e.g., a table, a view, or a data type) will be obtained from the dictionary. Developers use the ABAP Dictionary transactions (directly or through the SE80 Object Navigator inside the ABAP Workbench) to display and maintain this metadata.
When a dictionary object is changed, a program that references the changed object will automatically reference the new version the next time the program runs. Because ABAP is interpreted, it is not necessary to recompile programs that reference changed dictionary objects.
A brief description of the most important types of dictionary objects follows:
- Tablesare data containers that exist in the underlying relational database. In the majority of cases there is a 1-to-1 relationship between the definition of a table in the ABAP Dictionary and the definition of that same table in the database (same name, same columns). These tables are known as "transparent". There are two types of non-transparent tables: "pooled" tables exist as independent entities in the ABAP Dictionary but they are grouped together in large physical tables ( "pools" ) at the database level. Pooled tables are often small tables holding for example configuration data. "Clustered" tables are physically grouped in "clusters" based on their primary keys; for instance, assume that a clustered tableHcontains "header" data about sales invoices, whereas another clustered tableDholds the invoice line items. Each row of H would then be physically grouped with the related rows from D inside a "cluster table" in the database. This type of clustering, which is designed to improve performance, also exists as native functionality in some, though not all, relational database systems.
- Indexesprovide accelerated access to table data for often used selection conditions. Every SAP table has a "primary index", which is created implicitly along with the table and is used to enforce primary key uniqueness. Additional indexes (unique or non-unique) may be defined; these are called "secondary indexes".
- Viewshave the same purpose as in the underlying database: they define subsets of columns (and/or rows) from one or – using a join condition – several tables. Since views are virtual tables (they refer to data in other tables) they do not take a substantial amount of space.
- Structuresare complex data types consisting of multiple fields (comparable tostructin C/C++).
- Data elementsprovide the semantic content for a table or structure field. For example, dozens of tables and structures might contain a field giving the price (of a finished product, raw material, resource,...). All these fields could have the same data element "PRICE".
- Domainsdefine the structural characteristics of a data element. For example, the data element PRICE could have an assigned domain that defines the price as a numeric field with two decimals. Domains can also carry semantic content in providing a list of possible values. For example, a domain "BOOLEAN" could define a field of type "character" with length 1 and case-insensitive, but would also restrict the possible values to "T" (true) or "F" (false).
- Search helps(successors to the now obsolete "matchcodes" ) provide advanced search strategies when a user wants to see the possible values for a data field. The ABAP runtime provides implicit assistance (by listing all values for the field, e.g. all existing customer numbers) but search helps can be used to refine this functionality, e.g. by providing customer searches by geographical location, credit rating, etc.
- Lock objectsimplement application-level locking when changing data.
ABAP syntax
editThis brief description of the ABAP syntax begins with the ubiquitous"Hello".
Hello world
editREPORTTEST.
WRITE'Hello, World!'.
This example contains two statements:REPORT
andWRITE
.The program displays a list on the screen. In this case, the list consists of the single line "Hello, World!". TheREPORT
statement indicates that this program is a report. This program could be a module pool after replacing theREPORT
statement withPROGRAM
.
Chained statements
editConsecutive statements with an identical first (leftmost) part can be combined into a "chained" statement using the chain operator:
.The common part of the statements is written to the left of the colon, the differing parts are written to the right of the colon and separated by commas. The colon operator is attached directly to the preceding token, without a space (the same applies to the commas in the token list on, as can be seen in the examples below).
Chaining is often used inWRITE
statements.WRITE
accepts just one argument, so if for instance you wanted to display three fields from a structure called FLIGHTINFO, you would have to code:
WRITEFLIGHTINFO-CITYFROM.
WRITEFLIGHTINFO-CITYTO.
WRITEFLIGHTINFO-AIRPTO.
Chaining the statements results in a more readable and more intuitive form:
WRITE:FLIGHTINFO-CITYFROM,FLIGHTINFO-CITYTO,FLIGHTINFO-AIRPTO.
In a chain statement, the first part (before the colon) is not limited to the statement name alone. The entire common part of the consecutive statements can be placed before the colon. Example:
REPLACE'A'WITH'B'INTOLASTNAME.
REPLACE'A'WITH'B'INTOFIRSTNAME.
REPLACE'A'WITH'B'INTOCITYNAME.
could be rewritten in chained form as:
REPLACE'A'WITH'B'INTO:LASTNAME,FIRSTNAME,CITYNAME.
Comments
editABAP has 2 ways of defining text as acomment:
- Anasterisk(*) in the leftmost column of a line makes the entire line a comment
- Adouble quotation mark( ") anywhere on a line makes the rest of that line a comment
Example:
***************************************
** Program: BOOKINGS **
** Author: Joe Byte, 07-Jul-2007 **
***************************************
REPORTBOOKINGS.
* Read flight bookings from the database
SELECT*FROMFLIGHTINFO
WHERECLASS='Y'"Y = economy
ORCLASS='C'."C = business
(...)
Spaces
editCode in ABAP is whitespace-sensitive.
x=a+b(c).
assigns to variable x the substring of the variable a, starting from b with the length defined by the variable c.
x=a+b(c).
assigns to variable x the sum of the variable a and the result of the call to method b with the parameter c.
ABAP statements
editIn contrast with languages like C/C++ or Java, which define a limited set of language-specific statements and provide most functionality via libraries, ABAP contains an extensive amount of built-in statements. These statements traditionally used sentence-like structures and avoided symbols, making ABAP programs relatively verbose. However, in more recent versions of the ABAP language, a terser style is possible.[7]
An example of statement based syntax (whose syntax originates in COBOL) versus expression-based syntax (as in C/Java):
ADDTAXTOPRICE.
* is equivalent to
PRICE=PRICE+TAX.
Data types and variables
editABAP provides a set of built-in data types. In addition, every structure, table, view or data element defined in the ABAP Dictionary can be used to type a variable. Also, object classes and interfaces can be used as types.
The built-in data types are:
Type | Description |
---|---|
I | Integer |
P | Packed decimal |
F | Floating point |
N | Character numeric |
C | Character |
D | Date |
T | Time |
X | Hexadecimal (raw byte) |
STRING | Variable-length string |
XSTRING | Variable-length raw byte array |
Date variables or constants (type D) contain the number of days since January 1, 1 AD. Time variables or constants (type T) contain the number of seconds since midnight. A special characteristic of both types is that they can be accessed both as integers and as character strings (with internal format "YYYYMMDD" for dates and "hhmmss" for times), which can be used for date and time handling. For example, the code snippet below calculates the last day of the previous month (note: SY-DATUM is a system-defined variable containing the current date):
DATALAST_EOMTYPED."last end-of-month date
* Start from today's date
LAST_EOM=SY-DATUM.
* Set characters 6 and 7 (0-relative) of the YYYYMMDD string to "01",
* giving the first day of the current month
LAST_EOM+6(2)='01'.
* Subtract one day
LAST_EOM=LAST_EOM-1.
WRITE:'Last day of previous month was',LAST_EOM.
All ABAP variables have to be explicitlydeclaredin order to be used. They can be declared either with individual statements and explicit typing or, since ABAP 7.40, inline withinferred typing.
Explicitly typed declaration
editNormally all declarations are placed at the top of the code module (program, subroutine, function) before the first executable statement; this placement is a convention and not an enforced syntax rule. The declaration consists of the name, type, length (where applicable), additional modifiers (e.g. the number of implied decimals for a packed decimal field) and optionally an initial value:
* Primitive types:
DATA:COUNTERTYPEI,
VALIDITYTYPEIVALUE60,
TAXRATE(3)TYPEPDECIMALS1,
LASTNAME(20)TYPEC,
DESCRIPTIONTYPESTRING.
* Dictionary types:
DATA:ORIGINTYPE COUNTRY.
* Internal table:
DATA:T_FLIGHTSTYPE TABLE OFFLIGHTINFO,
T_LOOKUPTYPE HASHED TABLE OFFLT_LOOKUP.
* Objects:
DATA:BOOKINGTYPE REF TOCL_FLT_BOOKING.
Notice the use of the colon to chain together consecutive DATA statements.
Inline declaration
editSince ABAP 7.40,[8]variables can be declared inline with the following syntax:
DATA(variable_name)='VALUE'.
For this type of declaration it must be possible to infer the type statically, e.g. bymethod signatureor database table structure.
This syntax is also possible in OpenSQL statements:
SELECT*FROMekkointo@DATA(lt_ekko)WHEREebelnEQ@lv_ebeln.
ABAP Objects
editThe ABAP language supportsobject-oriented programming,through a feature known as "ABAP Objects".[9]This helps to simplify applications and make them more controllable.
ABAP Objects is fully compatible with the existing language, so one can use existing statements and modularization units in programs that use ABAP Objects, and can also use ABAP Objects in existing ABAP programs. Syntax checking is stronger in ABAP Objects programs, and some syntactical forms (usually older ones) of certain statements are not permitted.
Objects form a capsule which combines the character to the respective behavior. Objects should enable programmers to map a real problem and its proposed software solution on a one-to-one basis. Typical objects in a business environment are, for example, ‘Customer’, ‘Order’, or ‘Invoice’. From Release 3.1 onwards, the Business Object Repository (BOR) of SAP Web Application Server ABAP has contained examples of such objects. The BOR object model will be integrated into ABAP Objects in the next Release by migrating the BOR object types to the ABAP class library. A comprehensive introduction to object orientation as a whole would go far beyond the limits of this introduction to ABAP Objects. This documentation introduces a selection of terms that are used universally in object orientation and also occur in ABAP Objects. In subsequent sections, it goes on to discuss in more detail how these terms are used in ABAP Objects. The end of this section contains a list of further reading, with a selection of titles about object orientation.
- Objectsare instances of classes. They contain data and provide services. The data forms the attributes of the object. The services are known as methods (also known as operations or functions). Typically, methods operate on private data (the attributes, or state of the object), which is only visible to the methods of the object. Thus the attributes of an object cannot be changed directly by the user, but only by the methods of the object. This guarantees the internal consistency of the object.
- Classesdescribe objects. From a technical point of view, objects are runtime instances of a class. In theory, any number of objects based on a single class may be created. Each instance (object) of a class has a unique identity and its own set of values for its attributes.
- Object Referencesare unique addresses that may be used to identify and point to objects in a program. Object references allow access to the attributes and methods of an object.
In object-oriented programming, objects usually have the following properties:
- Encapsulation – Objects restrict the visibility of their resources (attributes and methods) to other users. Every object has an interface, which determines how other objects can interact with it. The implementation of the object is encapsulated, that is, invisible outside the object itself.
- Inheritance – An existing class may be used to derive a new class. Derived classes inherit the data and methods of the superclass. However, they can overwrite existing methods, and also add new ones.
- Polymorphism – Identical (identically named) methods behave differently in different classes. In ABAP Objects, polymorphism is implemented by redefining methods during inheritance and by using constructs called interfaces.
CDS Views
editThe ABAP Core Data Services (ABAP CDS) are the implementation of the general CDS concept for AS ABAP. ABAP CDS makes it possible to define semantic data models on the central database of the application server. On AS ABAP, these models can be defined independently of the database system. The entities of these models provide enhanced access functions when compared with existing database tables and views defined in ABAP Dictionary, making it possible to optimize Open SQL-based applications. This is particularly clear when an AS ABAP uses a SAP HANA database, since its in-memory characteristics can be implemented in an optimum manner.
The data models are defined using the data definition language (DDL) and data control language (DCL) provided in the ABAP CDS in the ABAP CDS syntax. The objects defined using these languages are integrated into ABAP Dictionary and managed here too.
CDS source code can only be programmed in the Eclipse-based ABAP Development Tools (ADT). The Data Definition Language (DDL) and the Data Control Language (DCL) use different editors.[10]
Features
editSAP NW ABAP | SQL Joins | SQL Set Operations | SELECT Clauses |
---|---|---|---|
7.40 SP05 |
|
|
|
7.40 SP08 | |||
7.50 | |||
7.51 |
|
SAP NW ABAP | Literals | Arithmetic Operators | Conditional Expressions |
---|---|---|---|
7.40 SP05 |
|
|
|
7.40 SP08 |
|
||
7.50 | |||
7.51 |
|
SAP NW ABAP | Aggregate functions | Numeric functions | String functions |
---|---|---|---|
7.40 SP05 |
|
|
|
7.40 SP08 |
|
| |
7.50 |
| ||
7.51 |
|
|
|
SAP NW ABAP | Byte string functions | Date and time functions | Other functions |
---|---|---|---|
7.40 SP05 |
| ||
7.40 SP08 |
| ||
7.50 |
|
|
|
7.51 |
|
|
SAP NW ABAP | Conditional (CASE) expressions | Extensibility | (Unmanaged) Associations |
---|---|---|---|
7.40 SP05 |
|
|
|
7.40 SP08 |
|
|
|
7.50 |
|
|
|
7.51 |
|
|
|
SAP NW ABAP | Session variables | Input parameters | Other |
---|---|---|---|
7.40 SP05 |
| ||
7.40 SP08 |
|
||
7.50 |
|
|
|
7.51 |
|
|
Internal tables in ABAP
editInternal tables are an important feature of the ABAP language. An internal table is defined similarly to a vector ofstructs in C++ or a vector of objects in Java. The main difference with these languages is that ABAP provides a collection of statements to easily access and manipulate the contents of internal tables. Note that ABAP does not support arrays; the only way to define a multi-element data object is to use an internal table.[citation needed]
Internal tables are a way to store variable data sets of a fixed structure in the working memory of ABAP, and provides the functionality of dynamic arrays. The data is stored on a row-by-row basis, where each row has the same structure.
Internal tables are preferably used to store and format the content of database tables from within a program. Furthermore, internal tables in connection with structures are an important means of defining complex data structures in an ABAP program.
The following example defines an internal table with two fields with the format of database table VBRK.
* First define structured type
TYPES:BEGIN OFt_vbrk,
VBELNTYPEVBRK-VBELN,
ZUONRTYPEVBRK-ZUONR,
END OFt_vbrk.
* Now define internal table of our defined type t_vbrk
DATA:gt_vbrkTYPE STANDARD TABLE OFt_vbrk,
gt_vbrk_2TYPE STANDARD TABLE OFt_vbrk."easy to define more tables
* If needed, define structure (line of internal table)
* Definition with type or with reference to internal table:
DATA:gs_vbrkTYPEt_vbrk,
gs_vbrk_2LIKE LINE OFgt_vbrk_2.
* You can also define table type if needed
TYPEStt_vbrkTYPE STANDARD TABLE OFt_vbrk.
History
editThe following list only gives a rough overview about some important milestones in the history of the language ABAP. For more details, seeABAP – Release-Specific Changes.
Version | Release date | Major changes |
---|---|---|
4.6C | May 2000 |
|
6.40 | 2004 | |
7.0 | 2006 |
|
7.02 |
| |
7.40 | 2012-11-29 |
|
7.40 SP05 | December 2013 |
|
7.40 SP08 | September 2014 |
|
7.50 | November 2015 |
|
7.51 | October 2016 |
|
7.52 | September 2017 |
|
7.54 | September 2019 |
|
7.55 | September 2020 |
|
7.56 | October 2021 |
|
7.57 | October 2022 |
|
7.58 | October 2023 |
|
See also
editReferences
edit- ^"Changes in Releases 7.5x".help.sap.com.Archivedfrom the original on 2020-10-24.Retrieved2024-09-03.
- ^""ABAP History".SAP-technical.com".Archived fromthe originalon 2011-04-15.Retrieved2024-12-07.
- ^"Product Availability Matrix - PAMs".scn.sap.com.2016-09-28. Archived fromthe originalon 2016-09-28.Retrieved2024-09-03.
- ^"List of Transaction codes".SAP Help Portal.Retrieved2023-09-09.
- ^"Full List of Transaction codes in S4/HANA - docsfortec.com".docsfortec.com.Archivedfrom the original on 2024-05-14.Retrieved2024-05-14.
- ^"Get Started with the ABAP Development Tools for SAP NetWeaver | SAP Blogs".19 June 2012.Archivedfrom the original on 28 June 2015.Retrieved15 June2015.
- ^"Example of an ABAP program with many expressions".Archivedfrom the original on 2015-06-19.Retrieved2015-06-19.
- ^"DATA - Inline Declaration".help.sap.com.
- ^"Classes",SAP NetWeaver 7.0,archivedfrom the original on 28 November 2009,retrieved10 August2009
- ^"ABAP Keyword Documentation".Archivedfrom the original on 2019-07-11.Retrieved2019-07-11.
- ^"Core Data Services (CDS) ABAP Feature Matrix | SAP Blogs".2 February 2015.Archivedfrom the original on 11 July 2019.Retrieved11 July2019.
External links
edit- ABAP — Keyword Documentation
- SAP Help Portal
- ABAP Developmentdiscussions, blogs, documents and videos on theSAP Community Network (SCN)