Internal Table

Why Trust Techopedia

What Does Internal Table Mean?

In ABAP programming, internal tables are dynamic data objects that are used to provide a mechanism of transferring data from a database or any other fixed structure to working memory for the purposes of array functionality. The data extracted is stored in memory, record by record.
Internal tables are mainly used to process a dataset with a predefined structure within an ABAP program. With the help of internal tables, SAP developers can store and format data within a program extracted from a database table. Due to their dynamic nature, they also save programmers from having to worry about dynamic memory management, which would otherwise be a concern.

Advertisements

Techopedia Explains Internal Table

For an internal table, the minimum size is 256 bytes. Similar to most variable declarations in ABAP, the internal tables are declared with the help of the DATA statement.

The syntax for an internal table is:

DATA <itab> TYPE|LIKE <tabkind> OF <linetype> WITH <key>

One can also declare static internal tables using the STATIC statement. Data statement can be used to construct new or program-based internal tables along with the addition of TYPE or LIKE for existing objects and types.

The table types for internal tables are declared based on the operations to be performed. The most commonly used types include:

Standard Table Type: Used in case individual records are accessed using the records index.
Hashed Table Type: Used if the main operation performed is key access.
Sorted Table Type: Used if the table is to be sorted as the data is stored.

Advertisements

Related Terms

Margaret Rouse
Technology Expert
Margaret Rouse
Technology Expert

Margaret é uma premiada redatora e professora conhecida por sua habilidade de explicar assuntos técnicos complexos para um público empresarial não técnico. Nos últimos vinte anos, suas definições de TI foram publicadas pela Que em uma enciclopédia de termos tecnológicos e citadas em artigos do New York Times, Time Magazine, USA Today, ZDNet, PC Magazine e Discovery Magazine. Ela ingressou na Techopedia em 2011. A ideia de Margaret de um dia divertido é ajudar os profissionais de TI e de negócios a aprenderem a falar os idiomas altamente especializados uns dos outros.