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 Specialist
Margaret Rouse
Technology Specialist

Margaret is an award-winning writer and educator known for her ability to explain complex technical topics to a non-technical business audience. Over the past twenty years, her IT definitions have been published by Que in an encyclopedia of technology terms and cited in articles in the New York Times, Time Magazine, USA Today, ZDNet, PC Magazine, and Discovery Magazine. She joined Techopedia in 2011. Margaret’s idea of ​​a fun day is to help IT and business professionals to learn to speak each other’s highly specialized languages.