Ansicht
Dokumentation

ABENDATA_INLINE - DATA INLINE

ABENDATA_INLINE - DATA INLINE

General Material Data   Addresses (Business Address Services)  
This documentation is copyright by SAP AG.
SAP E-Book

DATA, Inline Declaration for Variables

... DATA(var) ...

Effect

A declaration expression with the declaration operator DATA declares a variable var that is used as an operand in the current write position. The declared variable is visible statically in the program as of DATA(var) and is valid in the current context. The declaration is made when the program is compiled, regardless of whether the statement is actually executed.

The declaration operator DATA can be specified in any designated declaration position. The date type of the variable is determined by the operand type. It must be possible to derive this type completely statically.

A variable var declared inline cannot be used in a read position of the same statement.

If a data object called data already exists in the current context, DATA(var) is interpreted as a substring access and not as an inline declaration. A syntax warning indicates this. DATA(var) only works as an inline declaration if there is no data object called data yet.

Only use inline declarations locally.

Notes

  • A valid statement with an inline declaration of a variable can generally be interpreted as a short form for a declaration statement used as a direct prefix.
DATA var TYPE ...
... var ...
Deviations from this rule occur only if an identically named data object of a more global context is used in the same statement. This is still valid in the statement and is only hidden after the statement.
  • Just like the statement DATA, an inline declaration does not open a local context for the current statement block. An inline declaration for a variable can only be made once within a context and the variable must not have been declared there using DATA.
  • An inline declaration can never occur on the right-hand side of an assignment or within an expression.
  • The operand position and the types of other operands can be included in the static derivation of the operand type. If the type of a different operand cannot be identified statically, for example because it is specified as a generically typed field symbol, either a suitable standard type is used or no inline declaration is possible.
  • If the operand type is defined by reference to a data type of the ABAP Dictionary, it is inherited with its semantic attributes, such as field help, input help, or conversion routines.
  • If multiple equally valid operand types are possible in a declaration position, the recommended preferred data type is generally used.
  • If no other write accesses to the variable var should take place in the current context, it is preferable to use the declaration operator FINAL to declare an immutable variable instead of DATA.

Inline declaration of an internal table as the target field of an assignment and inline declaration of an appropriate work area in a LOOP.

Example

Inline declaration of an internal table as a target field of a SELECT statement and inline declaration of a variable for the table transformed to HTML. The data type of the variable is determined by the return value of the method.

Example

If a data object called data does not exist in the current context, the first statement is an inline declaration and the second statement executes a substring access.

DATA(data) = '1'.
DATA(data) = '2'.






Vendor Master (General Section)   General Material Data  
This documentation is copyright by SAP AG.

Length: 4855 Date: 20240424 Time: 121315     sap01-206 ( 72 ms )