• Home
  • Search Tags
  • About

ABAP

Topics related to ABAP:

Getting started with ABAP

ABAP is a programming language developed by SAP for programming business applications in the SAP environment.

Previously only procedural, ABAP is now also an object-oriented language thanks to the ABAP Objects enhancement.

Comments

Data Declaration

Internal Tables

ABAP Objects

Loops

When looping over internal tables, it is generally preferable to ASSIGN to a field symbol rather than loop INTO a work area. Assigning field symbols simply updates their reference to point to the next line of the internal table during each iteration, whereas using INTO results in the line of the table being copied into the work area, which can be expensive for long/wide tables.

Strings

Unit testing

Dynamic Programming

ABAP GRID List Viewer (ALV)

Regular Expressions

Naming Conventions

Open SQL

Control Flow Statements

Template Programs

Message Classes/MESSAGE keyword

The maximum length of a message, including parameters passed to it using &, is 72 characters.

Content on the page is taken from Stack Overflow Documentation

This site is NOT affiliated with Stack Overflow or any of the contributors. | Privacy Policy | Terms of Service