ABAP Keyword Documentation → ABAP − Reference → Creating Objects and Values → CREATE DATA
CREATE DATA - TABLE OF
Other versions: 7.31 | 7.40 | 7.54
Syntax
CREATE DATA dref [area_handle]
{ {TYPE [STANDARD]|SORTED|HASHED TABLE OF [REF TO] {type|(name)}}
| {LIKE [STANDARD]|SORTED|HASHED TABLE OF dobj} }
[ WITH { {[UNIQUE|NON-UNIQUE]
{KEY {comp1 comp2 ...}|(keytab)}|{DEFAULT KEY}}}
| {EMPTY KEY} ]
[INITIAL SIZE n].
Effect
The statement CREATE DATA uses the addition tabkind OF
to create an internal table. The meaning of the additions is the same as when declaring internal tables
using the statement DATA, but
with special rules for CREATE
DATA if dobj is specified after LIKE. The explicit definition of the primary table key is only optional if a
standard table is being created.
Whereas the content of DATA is specified statically, the following can be specified dynamically for CREATE DATA:
-
The row type after
TYPEor the static type of a row flagged as a reference variable afterTYPE REF TOcan have a character-like data object called name. In this case, the same rules apply as in the other variants ofCREATE DATA. -
The definition of the primary table key can specify a parenthesized internal table
keytabinstead of a static componentcomp1 comp2 ...:... WITH [UNIQUE|NON-UNIQUE] KEY (keytab) ...
The tablekeytabmust have a character-like data type and must contain the name of a valid component in each row or the identifiertable_linefor the primary table key in a single row. -
A numeric data object can be specified for
nafterINITIAL SIZE.
Notes
-
The definition of the table key is subject to the following conditions that do not apply to
DATA:
- No secondary table keys can be defined in the statement
CREATE DATA.
- The name
primary_keyand the additionCOMPONENTScannot be specified explicitly in the definition of the primary key.
keytab can only be used to define non-empty keys.
-
CREATE DATAcannot be used to create internal tables with header lines.
Example
Creates and uses an anonymous hash table. The type of the data reference variable is generic, which means it can only be dereferenced in the case of assignment to a field symbol.
DATA dref TYPE REF TO data.
FIELD-SYMBOLS <fs> TYPE ANY TABLE.
CREATE DATA dref TYPE HASHED TABLE OF scarr
WITH UNIQUE KEY carrid.
ASSIGN dref->* TO <fs>.
SELECT *
FROM scarr
INTO TABLE @<fs>.
cl_demo_output=>display( <fs> ).