SAP ITAB EMPTY KEY

Get Example source ABAP code based on a different SAP table
  


ARTICLE

Empty Table Key
The primary table key of a standard table can be empty. An empty table key does not contain any key fields.

Note
Sorted keys and hash keys are never empty, regardless of whether they are primary or secondary.

Declaration
An empty primary table key can be created as follows:
Explicitly with the addition EMPTY KEY of the statements TYPES, DATA, and so on.
Implicitly when using the standard key if a structured row type does not contain any non-numeric elementary components or if an unstructured row type is table-like.

Notes on Use

Uncritical use
An empty primary table key can be used to handle a table like an array. This means that filling the table and other access do not rely on an order determined by key values. In this case, an empty internal table key can be used in all statements that determine (implicitly or explicitly) the order in which the internal table is accessed.

Notes
Developers should always be aware of the fact that they are handling an empty primary table key. This is really achieved only when the empty key is declared explicitly. This implicit declaration using the standard key (in which the row type determines whether the primary table key is empty or not) is not usually suitable.
Even an empty primary key in a standard table has the order specified by the primary index, which can be exploited in related index accesses or loops.

Example
A particularly prominent example is the statement LOOP AT itab, which when used implicitly or explicitly (using USING primary_key) defines the processing order with respect to the primary table index, but otherwise has no effect.

Critical use
In the following statements, which work with the primary table key without specifying the key fields explicitly, specifying an empty primary table key is critical and generally produces unexpected behavior. An empty table key that can be identified statically produces a syntax check warning.
Primary table key specified by a work area:
If FROM wa is used to specify an empty table key for the statement READ TABLE, the first row of the internal table is read.
If FROM wa is used to specify an empty table key for the statement MODIFY, the first row of the internal table is modified.
If FROM wa is used to specify an empty table key for the statement DELETE, the first row of the internal table is deleted.
If the statement SORT itab is executed without the addition BY and the primary table key is empty, the statement has no effect and the table is not sorted.
If the statement DELETE ADJACENT DUPLICATES is executed and the primary table key is empty, no rows are deleted.
If the primary table key is empty and the statement COLLECT is executed, the first row of the internal table is compressed. In this case, all components of the row type must be numeric.

Note
The statements described above can be particularly unpredictable when using the standard key (which itself can be declared implicitly) to declare an empty internal table key.