ABAP - Keyword Documentation →  ABAP - Dictionary →  Classic Objects in ABAP Dictionary →  Data Types → 

Structures

A structure in ABAP Dictionary defines a structured type that contains other data types as components. These components can be:

A structure that contains other structures as components is called a nested structure. Structure components are substructures and substructures can themselves be nested. A structure that contains a reference type or a table type as a direct or nested component is a deep structure. A structure that contains only elementary data types as a direct or nested component is a flat structure. An internal program object declared with reference to a structure is a data object structured correspondingly (or structure for short).

A structure in ABAP Dictionary can be included in another structure as an include structure, with the components of the included structure being added as the components of the including structure.

Notes

Programming Guideline

Names of structure components

Example

The structure SOADDRESS for the address of a SAPoffice user is a nested structure with substructures.



Continue
Technical Attributes of Structures
Semantic Attributes of Structures
Include Structures