Update content

This commit is contained in:
danrega
2023-03-10 15:33:21 +01:00
parent a48aefe904
commit a1775f5983

View File

@@ -1,72 +1,45 @@
# Working with Structures # Working with Structures
- [Working with Structures](#working-with-structures) - [Working with Structures](#working-with-structures)
- [Structures ...](#structures-) - [Structures ...](#structures-)
- [Creating Structures and Structured Types](#creating-structures-and-structured-types) - [Creating Structures and Structured Types](#creating-structures-and-structured-types)
- [Variants of Structures](#variants-of-structures) - [Variants of Structures](#variants-of-structures)
- [Working with Structures](#working-with-structures-1) - [Accessing (Components of) Structures](#accessing-components-of-structures)
- [Accessing Components of Structures](#accessing-components-of-structures) - [Populating Structures](#populating-structures)
- [Filling Structures](#filling-structures) - [Using the VALUE Operator](#using-the-value-operator)
- [Using the CORRESPONDING Operator and MOVE-CORRESPONDING Statements](#using-the-corresponding-operator-and-move-corresponding-statements)
- [Clearing Structures](#clearing-structures) - [Clearing Structures](#clearing-structures)
- [Structures in Use in the Context of Tables](#structures-in-use-in-the-context-of-tables) - [Processing Structures](#processing-structures)
- [Excursion: Including Structures](#excursion-including-structures) - [Excursion: Including Structures](#excursion-including-structures)
- [More Information](#more-information)
- [Executable Example](#executable-example) - [Executable Example](#executable-example)
## Structures ... ## Structures ...
- (or structured [data - are [data objects](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abendata_object_glosry.htm "Glossary Entry")
objects](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abendata_object_glosry.htm "Glossary Entry")) with [structured data types](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenstructured_type_glosry.htm "Glossary Entry") (which is a [complex data type](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abencomplex_data_type_glosry.htm "Glossary Entry") because it is composed of other data types).
are ABAP variables typed with [structured - consist of a sequence of [components](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abencomponent_glosry.htm "Glossary Entry") of any data type, that is, the components of a structure can be, for example, [elementary data objects](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenelementary_data_object_glosry.htm), structures themselves, [internal tables](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abeninternal_table_glosry.htm "Glossary Entry") or [references](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenreference_glosry.htm).
types](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenstructured_type_glosry.htm "Glossary Entry"). - are used to combine different data objects that belong together. A typical example is an address. It has several components, such as name, street, city, and so on, that belong together.
- are [complex data - play an important role in the context of internal tables and [database tables](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abendatabase_table_glosry.htm "Glossary Entry"). Structured types serve as [line types](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenrow_type_glosry.htm) for these tables. Most internal tables across [ABAP programs](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenabap_program_glosry.htm) may have structured line types. For database tables, there is no alternative to structured line types.
types](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abencomplex_data_type_glosry.htm "Glossary Entry"). - can be created locally in an ABAP program. You can also create them as a global [DDIC structures](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenddic_structure_glosry.htm) in the [ABAP Dictionary](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenabap_dictionary_glosry.htm). Such a DDIC structure defines a globally available structured type ([DDIC type](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenddic_type_glosry.htm)).
- are composed of a sequence of other data objects which are called - Note: There are other structured types available globally, which may be the structured types most commonly used in ABAP programs:
[components](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abencomponent_glosry.htm "Glossary Entry"). - [Database tables](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenddic_db_table_glosry.htm) defined in the ABAP Dictionary can be used as data types just like DDIC structures in an ABAP program. This means that when you create a structure in your ABAP program, for example, you can simply use the name of a database table to address the line type of the table. The structure you created will then have the same structured type as the database table. Typically, you use the database tables to create structures of such a type, or internal tables of such a structured line type, to process data read from the database table in structures or internal tables.
- have components that can be of any type, that is, they can - A [CDS entity](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abencds_entity_glosry.htm) such as a [CDS view](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abencds_view_glosry.htm) also represents a structured data type and can be used as such in ABAP programs (but not in the ABAP Dictionary). The same applies to [DDIC views](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenddic_view_glosry.htm) that are only available in [Standard ABAP](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenstandard_abap_glosry.htm).
themselves be, for example, structures or [internal - Structures and structured data types can also be defined in the public [visibility section](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenvisibility_section_glosry.htm) of [global classes](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenglobal_class_glosry.htm) or in [global interfaces](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenglobal_interface_glosry.htm) and then used globally.
tables](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abeninternal_table_glosry.htm "Glossary Entry").
- summarize different pieces of information, that is, data objects,
that belong together. A typical example is the following: An address
has several components like name, street, city, and so on.
- mostly serve as line types of internal tables and [database
tables](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abendatabase_table_glosry.htm "Glossary Entry").
- are often used to process data sequentially, such as the data stored
in the rows and columns of a database table.
- and structured types can typically be found in the [ABAP Dictionary
(DDIC)](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenabap_dictionary_glosry.htm "Glossary Entry"),
sometimes in [global
classes](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenglobal_class_glosry.htm "Glossary Entry");
or they can be defined locally in ABAP programs.
- Most of the structures that are worked with in ABAP programs may
be globally defined structures in the DDIC.
- Why? Apart from globally defined structures in the DDIC, each
database table or
[view](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenview_glosry.htm "Glossary Entry")
constitutes a structured type. When a database table etc. is
activated, a globally available structured type of the same name
is created, too. Hence, in an ABAP program, a database table's
name is typically used as type name to declare data objects, for
example, structures or internal tables.
- can be addressed as a whole. You can also address the individual
components of structures.
## Creating Structures and Structured Types ## Creating Structures and Structured Types
The typical language elements for creating structures and structured types locally in an ABAP program are [`BEGIN OF ... END OF ...`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abaptypes_struc.htm). They are used in combination with the [`TYPES`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abaptypes.htm) keyword to create a structured type and the [`DATA`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapdata.htm) keyword to create a structure.
> **💡 Note**<br> > **💡 Note**<br>
> This cheat sheet focuses on locally defined structures and structured types. > This cheat sheet focuses on locally defined structures and structured types.
The typical syntactical elements are [`BEGIN OF ... END OF ...`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abaptypes_struc.htm).
They are used in combination with
[`TYPES`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abaptypes.htm)
to create a structured type and
[`DATA`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapdata.htm)
to create a structure.
**Creating structured types** **Creating structured types**
The structures' components are listed between `... BEGIN OF ...` and `... END OF ...`. - The following statement defines a structured type introduced by `TYPES`. The type name is preceded by `BEGIN OF` (which marks the beginning of the structured type definition) and `END OF` (the end of the definition).
- The components - at least one must be defined - are listed in between.
- Such structured type definitions are usually grouped together in a [chained statement](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenchained_statement_glosry.htm), i.e. `TYPES` is followed by a colon, and the components are separated by commas.
``` abap ``` abap
TYPES: BEGIN OF struc_type, TYPES: BEGIN OF struc_type,
         comp1 TYPE ...,          comp1 TYPE ...,
@@ -75,8 +48,8 @@ TYPES: BEGIN OF struc_type,
         ...,          ...,
       END OF struc_type.        END OF struc_type.
``` ```
Alternatively, you could go with the following syntax, however, a chained statement with the colon `:` above is preferable due to
better readability. Alternatively, you can also use the following syntax. However, a chained statement provides better readability.
``` abap ``` abap
TYPES BEGIN OF struc_type. TYPES BEGIN OF struc_type.
TYPES comp1 TYPE ... . TYPES comp1 TYPE ... .
@@ -85,66 +58,55 @@ TYPES BEGIN OF struc_type.
... . ... .
TYPES END OF struc_type. TYPES END OF struc_type.
``` ```
As mentioned above, the components of structures can be of any type.
They can be
[elementary](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenelementary_data_type_glosry.htm "Glossary Entry")
and also complex, that is, a structure component can be a structure or
internal table. Besides this, the components can be [reference
variables](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenreference_variable_glosry.htm "Glossary Entry"),
too.
For the components, the additions
[`TYPE`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapdata_simple.htm) - The simplest structures and structured types have [elementary](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenelementary_data_type_glosry.htm "Glossary Entry")
and components.
[`LIKE`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapdata_referring.htm) - As mentioned above, the components can be of any type, i.e. they can be of structured types themselves, internal table types, or [reference types](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenreference_type_glosry.htm).
are possible. - You can use the [`TYPE`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapdata_simple.htm)
> **💡 Note**<br> and [`LIKE`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapdata_referring.htm) additions for the types of the components.
> Setting default values with You can use the [`LINE OF`] addition to refer to a table type or an internal table.
[`VALUE`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapdata_options.htm)
is - in contrast to the creation of structures using a `DATA`
statement as shown further down - not possible in this case.
``` abap ``` abap
TYPES: BEGIN OF struc_type, TYPES: BEGIN OF struc_type,
         comp1 TYPE i,                 "elementary type          comp1 TYPE i,             "elementary type    
         comp2 TYPE c LENGTH 5,         "elementary type          comp2 TYPE c LENGTH 5, "elementary type
         comp3 TYPE local_structured_type,   "local structured type          comp3 TYPE structured_type,   "structured type
         comp4 TYPE itab_type,         "internal table type          comp4 TYPE itab_type,         "internal table type
         comp5 TYPE ddic_type,         "DDIC type          comp5 TYPE ddic_type,         "DDIC type
         comp6 TYPE REF TO i,           "data reference          comp6 TYPE REF TO i,          "data reference
         comp7 LIKE data_object,       "deriving type from a data object          comp7 LIKE data_object,       "deriving type from a data object
comp8 TYPE LINE OF itab_type, "component has structured type, type derived from internal table type
comp9 LIKE LINE OF itab, "component has structured type, type derived from internal table
comp10, "no TYPE/LIKE specification: component is of type c length 1
         ...,          ...,
       END OF struc_type.        END OF struc_type.
``` ```
> **💡 Note**<br>
> Outside of classes, you can also refer to DDIC types using `LIKE` (`... comp11 LIKE ddic_type, ...`). If you actually want to refer to an existing data object, but due to typing errors you inadvertently specify a name that exists as DDIC type, errors may be unavoidable.
**Creating structures** **Creating structures**
There are multiple ways to create structures in a program using a `DATA` statement: - To create a structure in an ABAP program, you can use the `DATA` keyword. - It works in the same way as the `TYPES` statement above.
- Unlike the `TYPES` statement, you can use the [`VALUE`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapdata_options.htm) addition to set default values.
- Creating a structure either based on a local type or a globally available type from the DDIC:
``` abap
DATA ls_from_local TYPE struc_type,
     ls_from_global TYPE ddic_type.
```
- Creating a structure by directly specifying the components using `... BEGIN OF ... END OF ...`. The syntax is similar to the `TYPES` statement. Here, default values can be set with
`VALUE`.
``` abap ``` abap
DATA: BEGIN OF struc, DATA: BEGIN OF struc,
        comp1 TYPE ...,         comp1 TYPE ...,
        comp2 TYPE ... VALUE ...,         comp2 TYPE ... VALUE ...,
        comp3 TYPE i VALUE 99,         comp3 TYPE i VALUE 99,
        comp4 TYPE i VALUE IS INITIAL, "Without the addition VALUE, or if IS INITIAL is specified, the content is initial.         comp4 TYPE i VALUE IS INITIAL, "Without the addition VALUE, or if IS INITIAL is specified,
"the content is initial.
        comp5 TYPE local_structured_type,         comp5 TYPE local_structured_type,
        ...,         ...,
      END OF struc.       END OF struc.
``` ```
Alternatively and similar to the `TYPES` statement, you Alternatively, you can use the following syntax. Similar to above, a chained statement provides better readability.
could use the following syntax, however, a chained statement with the colon `:` as above is preferable due to better
readability.
``` abap ``` abap
DATA BEGIN OF struc. DATA BEGIN OF struc.
@@ -153,51 +115,95 @@ There are multiple ways to create structures in a program using a `DATA` stateme
... . ... .
DATA END OF struc. DATA END OF struc.
``` ```
- Creating a structure by referring to a local structured data object using `LIKE` or to an internal table using `LIKE LINE OF`.
``` abap
DATA struc1 LIKE other_struc.
DATA struc2 LIKE LINE OF itab. > **💡 Note**<br>
>- The keywords [`CLASS-DATA`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapclass-data.htm) and [`CONSTANTS`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapconstants.htm) can also be used to create structures. In principle, they represent special cases of the general statement shown above. See the ABAP Keyword Documentation for more information.
>- Structures can also be created [inline](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abeninline_declaration_glosry.htm) using [`DATA(...)`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abendata_inline.htm) or [`FINAL(...)`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenfinal_inline.htm), as shown below.
Creating structures using existing structured types:
``` abap
"Local structured type
TYPES: BEGIN OF struc_type,
         comp1 TYPE i,                 
         comp2 TYPE c LENGTH 5,
       END OF struc_type.
"Creating a structure using a local structured type
DATA struc_1 TYPE struc_type.
"Creating structures based on globally available types from the DDIC
"Note: When referring to such types, you cannot provide start values for the individual components.
DATA: struc_2 TYPE some_ddic_structure,
struc_3 TYPE some_ddic_table,
struc_4 TYPE some_cds_view.
"Structure based on a structured type that is available in the public
"visibility section of a global class
DATA struc_5 TYPE cl_some_class=>struc_type.
"Creating structures by referring to local data objects and internal table types
DATA: struc_6 LIKE struc_1,
struc_7 LIKE LINE OF some_itab,
struc_8 TYPE LINE OF some_itab_type.
``` ```
- Creating a structure by inline declaration, e. g. using `DATA( ... )`. Note that in newer ABAP releases, the declaration operator [`FINAL`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenfinal_inline.htm) is available with which you can create [immutable variables](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenimmutable_variable_glosry.htm).
Creating structures by inline declaration using `DATA(...)`
- This is particularly useful for declaring data objects at the [operand positions](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenoperand_position_glosry.htm) where you actually need them.
- In this way, you can avoid an extra declaration of the structure in different contexts.
- In newer ABAP releases, you can use the [`FINAL`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenfinal_inline.htm) declaration operator to create [immutable variables](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenimmutable_variable_glosry.htm).
``` abap ``` abap
"Type is derived from the right-hand structure; "Structures created inline instead of an extra declared variable
"the content of struc is assigned, too. DATA struc_9 LIKE struc_1.
struc_9 = struc_1
DATA(struc1) = struc. "Type is derived from the right-hand structure; the content of struc is assigned, too.
DATA(struc_10) = struc_1.
FINAL(struc_11) = struc_9.
"Using the VALUE operator; structured type is specified before the "Structures declared inline instead of an extra declared variable
"first parenthesis; component values can be assigned, too
DATA(struc2) = VALUE struc_type( comp1 = ... ). "Example: SELECT statement
"Extra declaration
"It is particularly handy for declaring the structure where you actually need it DATA struc_12 TYPE zdemo_abap_fli.
"without prior extra declaration of the structure in various contexts;
"e. g. SELECT or LOOP AT statements; structured types are automatically
"derived from the context
SELECT SINGLE * SELECT SINGLE *
FROM zdemo_abap_fli FROM zdemo_abap_fli
WHERE carrid = 'LH' WHERE carrid = 'LH'
INTO @DATA(struc3). INTO @struc_12.
LOOP AT itab INTO DATA(wa). "Inline declaration
SELECT SINGLE *
FROM zdemo_abap_fli
WHERE carrid = 'LH'
INTO @DATA(struc_13).
"Example: Loop over an internal table
DATA itab TYPE TABLE OF zdemo_abap_fli WITH EMPTY KEY.
... "itab is filled
"Extra declaration
DATA wa_1 LIKE LINE OF itab.
LOOP AT itab INTO wa_1.
  ...
ENDLOOP.
"Inline declaration
LOOP AT itab INTO DATA(wa_2).
  ...   ...
ENDLOOP. ENDLOOP.
``` ```
## Variants of Structures ## Variants of Structures
Depending on the component type, the structure can be a [flat Depending on the component type, the structure can be a [flat structure](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenflat_structure_glosry.htm "Glossary Entry"),
structure](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenflat_structure_glosry.htm "Glossary Entry"), a [nested structure](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abennested_structure_glosry.htm "Glossary Entry"),
a [nested or a [deep structure](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abendeep_structure_glosry.htm "Glossary Entry").
structure](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abennested_structure_glosry.htm "Glossary Entry"),
or a [deep
structure](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abendeep_structure_glosry.htm "Glossary Entry").
**Flat structure** - **Flat structures** contain only elementary types that have a fixed length, that is, there are no internal tables, reference types or strings as components. Nesting does not matter in this context. Even a nested structure is considered flat unless a substructure contains a deep component.
Flat structures contain only elementary types that have a fixed length, that is, there are no internal tables, reference types or strings as components:
``` abap ``` abap
DATA: BEGIN OF structure, DATA: BEGIN OF structure,
        comp1 TYPE i,         comp1 TYPE i,
@@ -206,15 +212,9 @@ DATA: BEGIN OF structure,
        ...,         ...,
      END OF structure.       END OF structure.
``` ```
> **💡 Note**<br>
> Nesting does not play a role in this context. Even a nested structure is considered flat unless a substructure contains a deep component.
**Nested structure** - **Nested structures**: At least one component of a structure is a [substructure](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abensubstructure_glosry.htm "Glossary Entry"),
that is, it refers to another structure. The following example has multiple substructures.
At least one component of a structure is a
[substructure](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abensubstructure_glosry.htm "Glossary Entry"),
that is, it refers to another structure. The following example has
multiple substructures.
``` abap ``` abap
DATA: BEGIN OF address_n, DATA: BEGIN OF address_n,
        BEGIN OF name,         BEGIN OF name,
@@ -233,9 +233,7 @@ DATA: BEGIN OF address_n,
      END OF address_n.       END OF address_n.
``` ```
**Deep structure** - **Deep structures**: Contains at least one internal table, reference type, or string as a component.
A deep structure contains at least one internal table, reference type, or string as a component.
``` abap ``` abap
DATA: BEGIN OF address_d, DATA: BEGIN OF address_d,
        name    TYPE string VALUE `Mr. Duncan Pea`,         name    TYPE string VALUE `Mr. Duncan Pea`,
@@ -244,7 +242,7 @@ DATA: BEGIN OF address_d,
        details TYPE TABLE OF some_table WITH EMPTY KEY,         details TYPE TABLE OF some_table WITH EMPTY KEY,
      END OF address_d.       END OF address_d.
``` ```
Despite the fact that the following structure looks fairly simple, it is not to be considered a flat structure but a deep structure since it contains strings. Although the following structure looks quite simple, it is not a flat structure, but a deep structure, because it contains strings.
``` abap ``` abap
DATA: BEGIN OF address, DATA: BEGIN OF address,
        name   TYPE string VALUE `Mr. Duncan Pea`,         name   TYPE string VALUE `Mr. Duncan Pea`,
@@ -253,105 +251,161 @@ DATA: BEGIN OF address,
      END OF address.       END OF address.
``` ```
## Working with Structures > **💡 Note**<br>
>- The data types of DDIC types are all flat (not nested) structures. Exception: Components of type `string` can be contained.
>- [Work areas](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenwork_area_glosry.htm) of ABAP SQL statements cannot contain any deep components other than strings among others.
>- Especially for assignments and comparisons of deep structures, the compatibility of the source and target structure must be taken into account.
### Accessing Components of Structures ## Accessing (Components of) Structures
The structure as a whole and also the individual components can be - Structures can be accessed as a whole. You can also address the individual components of structures at the appropriate operand positions.
addressed. To address the components, you use the [structure component - To address the components, use the [structure component selector](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenstructure_component_sel_glosry.htm "Glossary Entry")
selector](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenstructure_component_sel_glosry.htm "Glossary Entry") `-`.
`-`: - For variables with reference to a structured data object, the [object component selector](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenobject_component_select_glosry.htm) `->` can be used: `...dref->comp ...`. The following syntax also works, but is less *convenient*: `... dref->*-comp ...`.
- ADT and the ABAP Editor provide code completion for structure components after the component selectors.
``` abap ``` abap
structure-comp1 ... "Addressing components via the structure component selector
... structure-comp1 ...
... structure-comp2 ...
... structure-comp3 ...
address-name ... "Examples for addressing the whole structure and individual components
IF structure IS INITIAL.
...
ENDIF.
IF structure-comp1 = 1.
...
ENDIF.
DATA(complete_struc) = structure.
DATA(comp_value) = structure-comp2.
"Type and data declarations
TYPES: type_1 TYPE structured_type-comp1,
      type_2 LIKE structure-comp1.
DATA: var_1 TYPE structured_type-comp1,
      var_2 LIKE structure-comp1.
"Variables with reference to a structured data object
DATA ref_struc_1 TYPE REF TO structured_type.
ref_struc_1 = NEW #( ).
"Excursion: Creating a reference variable using inline declaration
DATA(ref_struc_2) = NEW structured_type( ).
... ref_struc_1->comp1 ...
... ref_struc_1->*comp1 ... "Using the dereferencing operator
... ref_struc_2->-comp2 ...
... ref_struc_2->*-comp2 ... "Using the dereferencing operator
``` ```
Nested components can be addressed via chaining: Nested components can be addressed using chaining:
```
structure-substructure-comp1 ...
address_n-name-title ...
```
> **✔️ Hints**<br>
>- You can refer to structure components when creating new data types and data objects:
> ``` abap
> TYPES: lty_1 TYPE structured_type-comp1,
>        lty_2 LIKE structure-comp1.
>
> DATA: lv_1 TYPE structured_type-comp1,
>       lv_2 LIKE structure-comp1.
> ```
>- ADT and the ABAP Editor provide code completion for structure components after the component selector.
>- When declaring a variable with reference to a structured data object, the object component selector `->` can be used:
`...dref->comp ...` (apart from the needlessly longer syntax `... dref->*-comp ...`).
### Filling Structures
Filling structure components using the component selector in the context of an assignment using the [assignment operator](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenassignment_operator_glosry.htm) `=`..
``` abap ``` abap
... structure-substructure-comp1 ...
... address_n-name-title ...
```
> **💡 Note**<br>
> The [`ASSIGN`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapassign_dynamic_components.htm) statement has special variants for dynamically accessing structure components.
## Populating Structures
You can copy the content of a structure to another using the [assignment operator](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenassignment_operator_glosry.htm) `=`.
In the following example, it is assumed that the target and source structure are of compatible types. In general, note that special [conversion](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenconversion_struc.htm) and [comparison rules](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenlogexp_rules_operands_struc.htm) apply to value assignments involving structures.
``` abap
some_struc = another_struc.
"When creating a new structure by inline declaration, the type of
"the right-hand structure is derived and the content is assigned.
DATA(struc_inl) = some_struc.
```
To assign values to individual structure components, use the component selector.
``` abap
TYPES: BEGIN OF addr_struc,
        name   TYPE string,
        street TYPE string,
        city   TYPE string,
   END OF addr_struc.
DATA address TYPE addr_struc.
address-name   = `Mr. Duncan Pea`. address-name   = `Mr. Duncan Pea`.
address-street = `Vegetable Lane 11`. address-street = `Vegetable Lane 11`.
address-city   = `349875 Botanica`. address-city   = `349875 Botanica`.
``` ```
Filling structure components using the
[`VALUE`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenconstructor_expression_value.htm) ### Using the VALUE Operator
operator. Value assignments by addressing the structure
components individually can be very bulky. Hence, the use of the - The [`VALUE`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenconstructor_expression_value.htm) operator can be used to construct the content of complex data objects such as structures or internal tables.
`VALUE` operator is very handy for the value assignment, - It is particularly useful because assigning values by addressing the structure components individually can be very cumbersome, especially when assigning values to structure components at the [operand position](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenoperand_position_glosry.htm "Glossary Entry").
especially for filling structure components at [operand position](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenoperand_position_glosry.htm "Glossary Entry"). - If the type of the operand can be inferred implicitly, the `#` character can be used used before the parentheses. Otherwise, the type must be specified explicitly.
In the example below, the `#` sign is used before the - The `VALUE` operator and inline declarations can be used to create and populate structures in one go.
parentheses which means that the type of the operand can be implicitly - Note that there are special [conversion](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenconversion_struc.htm) and [comparison](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenlogexp_rules_operands_struc.htm) rules for structures. See the ABAP Keyword Documentation for more details.
derived. This is not the case for the example further down in which a
new structure is [declared inline](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abendata_inline.htm).
Hence, the type must be explicitly specified before the parentheses.
Note that components that are not specified and assigned a value remain
initial.
``` abap ``` abap
"# used: type of the operand can be implicitly derived
address = VALUE #( name   = `Mr. Duncan Pea` address = VALUE #( name   = `Mr. Duncan Pea`
                    street = `Vegetable Lane 11`.                     street = `Vegetable Lane 11`.
                    city   = `349875 Botanica` ).                     city   = `349875 Botanica` ).
"Declaring a structure inline
"Type used explicitly: type of the operand cannot be implicitly derived
DATA(addr) = VALUE addr_struc( name   = `Mr. Duncan Pea`
                   street = `Vegetable Lane 11`.
                   city   = `349875 Botanica` ).
"Nesting value operators
TYPES: BEGIN OF struc_nested,
a TYPE i,
BEGIN OF nested_1,
b TYPE i,
c TYPE i,
END OF nested_1,
BEGIN OF nested_2,
d TYPE i,
e TYPE i,
END OF nested_2,
END OF struc_nested.
DATA str_1 TYPE struc_nested.
str_1 = VALUE #( a = 1
nested_1 = VALUE #( b = 2 c = 3 )
nested_2 = VALUE #( d = 4 e = 5 ) ).
"Inline declaration
"Component a is not specified here, i.e. its value remains initial.
DATA(str_2) = VALUE struc_nested( nested_1 = VALUE #( b = 2 c = 3 )
nested_2 = VALUE #( d = 4 e = 5 ) ).
"Apart from the VALUE operator, the NEW operator can be used to create
"a data reference variable (and populate the structure)
DATA(str_ref) = NEW struc_nested( a = 1
nested_1 = VALUE #( b = 2 c = 3 )
nested_2 = VALUE #( d = 4 e = 5 ) ).
``` ```
Using the `VALUE` operator and inline declarations, structures can be created and filled in one go.
``` abap
TYPES address_type LIKE address.
DATA(add2) = VALUE address_type( name   = `Mrs. Jane Pea` ### Using the CORRESPONDING Operator and MOVE-CORRESPONDING Statements
                                 street = `Vegetable Lane 11`.
                                 city   = `349875 Botanica` ).
```
Copying the content of a structure to another one. In the example below, the assumption is that target and source structure have the same type. For value assignments, generally
bear in mind that there are special [conversion](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenconversion_struc.htm)
and [comparison rules](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenlogexp_rules_operands_struc.htm)
that apply to assignments involving structures.
``` abap
address = add2.
"When creating a new structure by inline declaration, the type of - You can use statements with [`MOVE-CORRESPONDING`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapmove-corresponding.htm)
"the right-hand structure is derived and the content is assigned. and the [`CORRESPONDING`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenconstructor_expr_corresponding.htm) operator to assign values to structure components, especially when assigning values from a source structure to a target structure which have incompatible types and/or differently named components.
- Both are used to assign identically named components of structures to each other.
- The syntax also works for structures of the same type.
- Also note the special [conversion](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenconversion_struc.htm) and [comparison](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenlogexp_rules_operands_struc.htm) rules for structures in this context.
DATA(add3) = add2. > **💡 Note**<br>
``` >- The [`CL_ABAP_CORRESPONDING`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abencl_abap_corresponding.htm) system class is available for making assignments. See the ABAP Keyword Documentation for the details.
Copying content of a structure to another one that has a different type. You can use statements with >- The `INTO` clause of ABAP SQL statements has the `CORRESPONDING` addition. There, the following basic rule applies, which affects the value assignment: Without the `CORRESPONDING ...` addition, column names do not matter, only the position. With the `CORRESPONDING ...` addition, the position of the columns does not matter, only the name. See examples in the ABAP SQL cheat sheet.
[`MOVE-CORRESPONDING`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapmove-corresponding.htm)
and the The following examples demonstrate the value assignment using `MOVE-CORRESPONDING` statements and the `CORRESPONDING` operator with various additions.
[`CORRESPONDING`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenconstructor_expr_corresponding.htm) The focus is on flat structures only.
operator. Both are used to assign identically named components of
structures to each other. This syntax also works for structures that
have the same type.
Note the rules mentioned above and consider the result of the value
assignment when using either of the two options with
`MOVE-CORRESPONDING` and the `CORRESPONDING` operator.
See more information and syntax variants in the ABAP Keyword
Documentation:
[`MOVE-CORRESPONDING`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abencorresponding_constr_arg_type.htm)
and
[`CORRESPONDING`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abencorresponding_constr_arg_type.htm).
In the examples below, the focus is only on flat structures.
``` abap ``` abap
"Moves identically named components; content in other components "Moves identically named components; content in other components
"of the targets structure are kept. "of the targets structure are kept.
@@ -379,14 +433,10 @@ diff_struc = CORRESPONDING #( BASE ( diff_struc )
diff_struc = CORRESPONDING #( BASE ( diff_struc ) diff_struc = CORRESPONDING #( BASE ( diff_struc )
                           struc EXCEPT comp1 ).                            struc EXCEPT comp1 ).
``` ```
**Excursion**: Copying content of a deep structure to another deep structure that has a different type. You can use statements with
[`MOVE-CORRESPONDING`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapmove-corresponding.htm)
and the
[`CORRESPONDING`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenconstructor_expr_corresponding.htm)
operator here, too. However, in the context of deep structures, more syntax variants are available. The focus of the following examples is on internal tables as structure components. See the executable example for visualizing the effect.
> **💡 Note**<br> Value assignments in deep structures
> Bear in mind that there are special conversion and comparison rules that apply to assignments involving structures and that affect the value assignments in the internal table components. - In the context of deep structures, there are additional syntax variants available for [`MOVE-CORRESPONDING`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapmove-corresponding.htm) statements and the [`CORRESPONDING`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenconstructor_expr_corresponding.htm).
- The follwing examples focus on internal tables as structure components. For the effect, see the executable example.
``` abap ``` abap
"Nonidentical elementary component types are kept in target "Nonidentical elementary component types are kept in target
@@ -454,36 +504,24 @@ diff_deep_struc = CORRESPONDING #( DEEP APPENDING BASE ( diff_struc ) deep_struc
``` ```
                                                                     
## Clearing Structures ## Clearing Structures
You can reset individual components to their initial value and clear the You can reset individual components to their initial values and clear the
complete structure using the keyword entire structure using the [`CLEAR`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapclear.htm) keyword.
[`CLEAR`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapclear.htm).
``` ```
CLEAR structure-component. CLEAR structure-component.
CLEAR structure. CLEAR structure.
``` ```
## Structures in Use in the Context of Tables ## Processing Structures
Structures are primarily used to process data from tables. In this Structures are primarily used to process data from tables. In this context, structures often take on the role of a [work area](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenwork_area_glosry.htm "Glossary Entry").
context, structures often assume the role of a [work The following code snippets cover only a selection. For more examples, see the cheat sheets about internal tables and ABAP SQL.
area](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenwork_area_glosry.htm "Glossary Entry").
**Reading a line from a database table into a structure that has a matching type**. Note that, since database tables are flat, the **Reading a row from a database table into a structure that has a compatible type**. Note that, since database tables are flat, the
target structure must also be flat. In the example below, the addition target structure must also be flat. In the example below, the [`SINGLE`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapselect_single.htm)
[`SINGLE`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapselect_single.htm) addition reads only a single row into the structure. It returns the first entry that matches the `WHERE` condition.
reads only a single row into the structure. The first entry that is
found according to the `WHERE` condition is returned.
> **💡 Note**<br>
> See more details on
[`SELECT`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapselect.htm)
statements in the ABAP Keyword Documentation. The ABAP cheat sheet [ABAP
SQL: Working with Persisted Data in Database
Tables](03_ABAP_SQL.md)
also provides information and more code snippets when using
`SELECT` statements.
``` abap ``` abap
"Creating a structure with a matching type "Creating a structure with a compatible type
DATA ls_fli1 TYPE zdemo_abap_fli. DATA ls_fli1 TYPE zdemo_abap_fli.
SELECT SINGLE FROM zdemo_abap_fli SELECT SINGLE FROM zdemo_abap_fli
@@ -497,7 +535,9 @@ SELECT SINGLE FROM zdemo_abap_fli
    WHERE carrid = 'LH'     WHERE carrid = 'LH'
    INTO @DATA(ls_fli2).     INTO @DATA(ls_fli2).
``` ```
**Reading a line from a database table into a structure that has a different type**. Components in the structure having identical names are filled. **Reading a row from a database table into a structure that has an incompatible type**.
Components in the structure with identical names are filled.
``` abap ``` abap
SELECT SINGLE FROM zdemo_abap_fli SELECT SINGLE FROM zdemo_abap_fli
    FIELDS *     FIELDS *
@@ -506,24 +546,17 @@ SELECT SINGLE FROM zdemo_abap_fli
``` ```
**Reading a line from an internal table into a structure** ... **Reading a line from an internal table into a structure** ...
... using a `SELECT` statement. Note the specified alias name and that ABAP variables like internal tables must be escaped using `@`. The addition `INTO CORRESPONDING FIELDS OF` also applies here. ... using a `SELECT` statement. Note the specified alias name and that ABAP variables like internal tables must be escaped with `@`. The addition `INTO CORRESPONDING FIELDS OF` also applies here.
``` abap ``` abap
SELECT SINGLE FROM @itab AS itab_alias SELECT SINGLE FROM @itab AS itab_alias
    FIELDS *     FIELDS *
    WHERE ...     WHERE ...
    INTO @DATA(ls_struc).     INTO @DATA(ls_struc).
    "INTO CORRESPONDING FIELDS OF @struc.     "INTO CORRESPONDING FIELDS OF @some_existing_struc.
``` ```
... using a `READ TABLE` statement. The code snippet below shows the reading of one line ... using a `READ TABLE` statement. The code snippet below shows the reading of a line into a [work area](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenwork_area_glosry.htm "Glossary Entry"), a [field symbol](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenfield_symbol_glosry.htm "Glossary Entry"), and a [data reference variable](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abendata_reference_variable_glosry.htm "Glossary Entry"), all of which
into a [work represent structured data objects that are declared inline. In the following example, a line is read based on the line number by
area](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenwork_area_glosry.htm "Glossary Entry"), specifying `INDEX`. For more details, see the section *Determining the target area* in the cheat sheet [Working with Internal Tables](01_Internal_Tables.md#).
[field
symbol](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenfield_symbol_glosry.htm "Glossary Entry")
and a [data reference
variable](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abendata_reference_variable_glosry.htm "Glossary Entry"),
all representing structured data objects and declared inline below. In
the example below, the reading of a line is based on the line number by
specifying `INDEX`. See the section *Determining the target area* in the cheat sheet [Working with Internal Tables](01_Internal_Tables.md#) for more details.
``` abap ``` abap
READ TABLE itab INTO DATA(wa) INDEX 1. READ TABLE itab INTO DATA(wa) INDEX 1.
@@ -531,41 +564,38 @@ READ TABLE itab ASSIGNING FIELD-SYMBOL(<fs>) INDEX 2.
READ TABLE itab REFERENCE INTO DATA(dref) INDEX 3. READ TABLE itab REFERENCE INTO DATA(dref) INDEX 3.
``` ```
... using a [table ... using a [table expression](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abentable_expression_glosry.htm "Glossary Entry").
expression](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abentable_expression_glosry.htm "Glossary Entry"). The code snippet shows how to read a line into a structure declared inline. The index is given in square brackets.
The code snippet below shows the reading of one line into a structure
that is declared inline. The index is specified in square brackets.
``` abap ``` abap
DATA(ls_table_exp) = itab[ 3 ]. DATA(ls_table_exp) = itab[ 3 ].
``` ```
> **💡 Note**<br> **Sequentially reading** ...
> See more syntax variants and code snippets for `READ TABLE` statements and statements with table expressions in the ABAP cheat sheet `Working with Internal Tables`.
**Sequentially reading a line from** ... ... a row from a database table into a structure. A `SELECT` loop can be specified with the syntax `SELECT ... ENDSELECT.`.
In the following example, the row found and returned in a structure declared inline can be processed further.
... a database table into a structure. A `SELECT` loop can be specified by using the syntax `SELECT ... ENDSELECT.`.
In the simple example below, the line that is found and returned in a structure, which is declared inline, can be further processed.
A `SELECT` loop might also have an internal table as data source.
``` abap ``` abap
SELECT FROM zdemo_abap_fli SELECT FROM zdemo_abap_fli
    FIELDS *   FIELDS *
    WHERE carrid = 'AZ'   WHERE carrid = 'AZ'
    INTO @DATA(ls_sel_loop).   INTO @DATA(ls_sel_loop).
      IF sy-subrc = 0.       
IF sy-subrc = 0.
        ...         ...
      ENDIF.   ENDIF.
ENDSELECT. ENDSELECT.
``` ```
... an internal table into a structure using a [`LOOP AT`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abaploop_at_itab_variants.htm) statement. There are numerous options for specifying the condition on which the loop is based. The example below covers the option of reading all lines sequentially into a field symbol which is declared inline. When using a field symbol, components can be directly modified, for example. ... a line from an internal table into a structure using a [`LOOP AT`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abaploop_at_itab_variants.htm) statement. There are many ways to specify the condition on which the loop is based. The following example covers the option of reading all lines sequentially into a field symbol declared inline. When using a field symbol, you can, for example, directly modify components.
``` abap ``` abap
LOOP AT itab ASSIGNING FIELD-SYMBOL(<fs>). LOOP AT itab ASSIGNING FIELD-SYMBOL(<fs>).
   <fs>-comp1 = ...    <fs>-comp1 = ...
   ...    ...
ENDLOOP. ENDLOOP.
``` ```
**Inserting an individual row from a structure into a database table** using ABAP SQL statements with
[`INSERT`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapinsert_dbtab.htm). The statements below can be considered as alternatives. The third statement demonstrates that the structure might also be created and filled directly instead of inserting a line from an existing structure. Note that a line with a certain key should not be inserted into the database table if a line with the same key already exists there. **Inserting a single row into a database table from a structure** using ABAP SQL statements with
[`INSERT`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapinsert_dbtab.htm). The following statements can be considered as alternatives. The third statement shows that instead of inserting a row from an existing structure, you can create and fill a structure directly.
Note that you should avoid inserting a row with a particular key into the database table if a row with the same key already exists.
``` abap ``` abap
INSERT INTO dbtab VALUES @structure. INSERT INTO dbtab VALUES @structure.
@@ -573,13 +603,13 @@ INSERT dbtab FROM @structure.
INSERT dbtab FROM @( VALUE #( comp1 = ... comp2 = ... ) ). INSERT dbtab FROM @( VALUE #( comp1 = ... comp2 = ... ) ).
``` ```
**Updating an individual row from a structure in a database table** using ABAP SQL statements with [`UPDATE`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapupdate.htm). Note that with this syntax, the whole line and all components are changed. **Updating a single row in a database table from a structure** using ABAP SQL statements with [`UPDATE`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapupdate.htm). Note that this syntax changes the entire row and all of its components.
``` abap ``` abap
UPDATE dbtab FROM @structure. UPDATE dbtab FROM @structure.
UPDATE dbtab FROM @( VALUE #( comp1 = ... comp2 = ... ) ). UPDATE dbtab FROM @( VALUE #( comp1 = ... comp2 = ... ) ).
``` ```
If you want to update a database table row from a structure by specifying components to be changed without overwriting other components, you might use the following way. First, read the intended line from the database table into a structure. Then, use the `VALUE` operator with the addition `BASE` and specify the components to be changed. If you want to update a database table row from a structure by specifying components to be changed without overwriting other components, you can use the following method. First, read the desired row from the database table into a structure. Then, use the `VALUE` operator with the `BASE` addition and specify the components to be changed.
``` abap ``` abap
SELECT SINGLE * SELECT SINGLE *
FROM dbtab FROM dbtab
@@ -588,22 +618,21 @@ SELECT SINGLE *
UPDATE dbtab FROM @( VALUE #( BASE wa comp2 = ... comp4 = ... ) ). UPDATE dbtab FROM @( VALUE #( BASE wa comp2 = ... comp4 = ... ) ).
``` ```
**Updating or creating an individual row in a database table from a structure** using ABAP SQL statements with **Updating or creating a single row in a database table from a structure** using ABAP SQL statements with
[`MODIFY`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapmodify_dbtab.htm). If a line in the database table already exists with the same keys as specified in the structure, the line is updated. If a line does not exist with the keys specified in the structure, a new line is created in the database table. [`MODIFY`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapmodify_dbtab.htm). If a row with the same key as specified in the structure already exists in the database table, the row is updated. If no row with the keys specified in the structure exists, a new row is created in the database table.
``` abap ``` abap
MODIFY dbtab FROM @structure. MODIFY dbtab FROM @structure.
MODIFY dbtab FROM @( VALUE #( comp1 = ... comp2 = ... ) ). MODIFY dbtab FROM @( VALUE #( comp1 = ... comp2 = ... ) ).
``` ```
**Adding rows to and updating individual rows in an internal table from a structure** using statements with `INSERT`, **Adding lines to and updating single lines in an internal table from a structure** using `INSERT`,
`APPEND`, and `MODIFY`. Note that all statements, including `INSERT` and `MODIFY`, are ABAP statements in this context, not ABAP SQL statements. `APPEND`, and `MODIFY` statements.
- Note that all statements, including `INSERT` and `MODIFY`, are ABAP statements in this context, not ABAP SQL statements.
Both `INSERT` and `APPEND` add one line (or more) to an internal table. While `APPEND` adds at the bottom of the - Both `INSERT` and `APPEND` add one or more lines to an internal table. While `APPEND` adds at the bottom of the
internal table, `INSERT` can be used to add lines at a specific position in tables. If you go without specifying the position, then the lines are added at the bottom of the table, too. However, when using `INSERT`, `sy-tabix` is not set as compared to `APPEND`. internal table, `INSERT` can be used to add lines at a specific position in the table. If you do not specify the position, the lines are also added at the bottom of the table. However, unlike `APPEND`, `INSERT` does not set `sy-tabix`.
`MODIFY` changes the content of an internal table entry. - `MODIFY` changes the content of an internal table entry.
- Statements using the `VALUE` operator to directly create and populate the structures are also possible. For more information and code
Statements using the `VALUE` operator for directly creating and filling the structures are possible, too. For more information and code snippets, see the [Working with Internal Tables](01_Internal_Tables.md#) cheat sheet.
snippets, refer to the cheat sheet [Working with Internal Tables](01_Internal_Tables.md#).
``` abap ``` abap
INSERT structure INTO TABLE itab. INSERT structure INTO TABLE itab.
@@ -612,26 +641,23 @@ APPEND structure TO itab.
MODIFY TABLE itab FROM structure. MODIFY TABLE itab FROM structure.
``` ```
### Excursion: Including Structures ## Excursion: Including Structures
Although their use is not recommended according to the ABAP programming - Although their use is not recommended in the ABAP programming
guidelines, you might stumble upon statements with [`INCLUDE TYPE`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapinclude_type.htm) guidelines, you may come across [`INCLUDE TYPE`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapinclude_type.htm)
and [`INCLUDE STRUCTURE`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapinclude_type.htm) and [`INCLUDE STRUCTURE`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abapinclude_type.htm) statements
in the context of local structures. Structured data objects and types in the context of local structures.
that are created with `... BEGIN OF... END OF ...` can - Structured data objects and types created with `... BEGIN OF... END OF ...` can use this syntax to include components of another structure, whether it is a locally defined or global structure, without creating substructures.
include the said syntax to integrate components of another structure, no - `INCLUDE TYPE` can be used to include a structured type.
matter if it is a locally defined or global structure, without the need - You can use `INCLUDE STRUCTURE` to include a structure.
to create substructures. `INCLUDE TYPE` can be used to include a
structured type. `INCLUDE STRUCTURE` can be used to include a
structure.
> **💡 Note**<br> > **💡 Note**<br>
> - They are not additions of `... BEGIN OF ... END OF ...` but individual ABAP statements. > - They are not additions of `... BEGIN OF ... END OF ...` but individual ABAP statements.
> - If a chained statement is used for the structure declaration with the colon, the inclusion of other structures with these statements interrupts the chained statement, that is, the components of the included structures are included as direct components of the [superstructure](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abensuperstructure_glosry.htm "Glossary Entry"). > - If you use a chained statement with a colon to declare the structure, the inclusion of other structures with these statements interrupts the chained statement, that is, the components of the included structures are included as direct components of the [superstructure](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abensuperstructure_glosry.htm "Glossary Entry").
>- Using the optional addition `AS` and the specification of a name, the included components can be addressed by this common name as if the components were actually components of a substructure. >- By using the optional `AS` addition and specifying a name, the included components can be addressed by this common name as if they were actually components of a substructure.
>- Using the optional addition `RENAMING WITH SUFFIX` and the specification of a name, the included components are given a suffix name to avoid naming conflicts with other components. >- The optional `RENAMING WITH SUFFIX` addition, followed by a name, gives the included components a suffix name to avoid naming conflicts with other components.
The example below shows how structured types and data objects are included in another structure. First, three structured types as well as a structured data object based on one of those types are created. Then, the types and the structure are included in the structured type `address_type`. The demonstration class visualizes a structure that includes other structures this way. The following example shows how structured types and data objects are included in another structure. First, three structured types and a structured data object based on one of these types are created. Then, the types and the structure are included in the structured type `address_type`. The executable example demonstrates a structure that includes other structures in this way.
``` abap ``` abap
TYPES: BEGIN OF name_type, TYPES: BEGIN OF name_type,
        title   TYPE string,         title   TYPE string,
@@ -656,12 +682,7 @@ TYPES BEGIN OF address_type.
TYPES END OF address_type. TYPES END OF address_type.
``` ```
## More Information
See the topic
[Structures (F1 docu for standard ABAP)](https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/index.htm?file=abendata_objects_structure.htm)
for more information.
## Executable Example ## Executable Example
[zcl_demo_abap_structures](./src/zcl_demo_abap_structures.clas.abap) [zcl_demo_abap_structures](./src/zcl_demo_abap_structures.clas.abap)
Note the steps outlined [here](README.md#-getting-started-with-the-examples) about how to import and run the code. Follow the steps outlined [here](README.md#-getting-started-with-the-examples) to import and run the code.