Skip to content

ABAP Keyword Documentation →  ABAP − Reference →  Processing Internal Data →  Assignments →  Assigning References →  Setting Field Symbols 

ASSIGN

Quick Reference

Other versions: 7.31 | 7.40 | 7.54

Syntax


ASSIGN mem_area TO <fs>
casting_spec range_spec. 

Effect

This statement assigns the memory area specified using mem_area to the field symbol <fs>. A data object or a memory area calculated from the address of a data object can be assigned. After the assignment, the field symbol refers to the assigned memory area and can be used in operand positions. When used in a statement, it behaves like a dereferenced data reference, meaning that the statement works with the content of the memory area.

The following can be specified for <fs>:

  • An existing field symbol with appropriate typing.
  • An inline declaration FIELD-SYMBOL(<fs>). The typing depends on the mem_area specified.

The data type with which the assigned memory area is handled depends on what is specified in casting_spec. Either an explicit casting can be performed or the field symbol uses the data type of the data object specified in the assignment. In both cases, the data type used must match the typing of the field symbol. A field symbol to which a memory area is assigned, has this data type after the assignment and behaves like a data object of this type.

The assigned memory area mem_area must be at least as long as the data type specified in casting_spec and must have at least the same alignment. If the data type determined in casting_spec is deep, the deep components with their type and position must appear in the assigned memory area exactly like this.

The information in range_spec is used to define the memory area that can be assigned to the field symbol.

System Fields

sy-subrc Meaning
0 Assignment completed.
4 Assignment not completed.
8 A table expression was not assigned.

If a dynamic assignment or assignment of a table expression could not be performed, the field symbol keeps its previous state. If the static assignment could not be performed, a memory is not assigned to the field symbol after the statement ASSIGN and the assignment can be checked with the predicate expression <fs> IS ASSIGNED. If an assignment were to produce illegal memory accesses, an exception is raised in the case of both static and dynamic ASSIGN statements.


Notes

  • If field symbols are set using ASSIGN, permission to access the assigned data object is only checked at the position of the statement. The field symbol can then be passed on as required and used to access the assigned data object in any position. To prevent access to private and read-only attributes using field symbols outside classes, field symbols for these attributes should not be published externally. A constant or read-only input parameter, however, can never be made modifiable by passing a field symbol.
  • One obsolete form of the statement ASSIGN is ASSIGN LOCAL COPY.

Example

Three field symbols are assigned the subfields for year, month, and day of the system field sy-datlo. The subfields can then be addressed using field symbols.

FIELD-SYMBOLS <year>  TYPE n. 
FIELD-SYMBOLS <month> TYPE n. 
FIELD-SYMBOLS <day>   TYPE n. 

ASSIGN sy-datlo+0(4) TO <year>. 
ASSIGN sy-datlo+4(2) TO <month>. 
ASSIGN sy-datlo+6(2) TO <day>. 

cl_demo_output=>new( 
  )->write(   <year> 
  )->write(   <month> 
  )->display( <day> ). 

Exceptions

Handleable Exceptions

CX_SY_ASSIGN_CAST_ILLEGAL_CAST

  • Cause: The type of the source field and the target type do not match exactly in offset and type in those components that are strings, tables, or references.
    Runtime error: ASSIGN_CASTING_ILLEGAL_CAST

CX_SY_ASSIGN_CAST_UNKNOWN_TYPE

  • Cause: A type specified dynamically after CASTING is unknown.
    Runtime error: ASSIGN_CASTING_UNKNOWN_TYPE

CX_SY_ASSIGN_OUT_OF_RANGE

  • Cause: The data object in addition RANGE does not contain the assigned data object.
    Runtime error: ASSIGN_FIELD_NOT_IN_RANGE

Non-Handleable Exceptions

  • Cause: The field symbol is structured and the assigned field is shorter than the structure.
    Runtime error: ASSIGN_BASE_TOO_SHORT
  • Cause: The alignment for field f is too short for the type of the field symbol.
    Runtime error: ASSIGN_BASE_WRONG_ALIGNMENT
  • Cause: Only simple types can be specified for TYPE.
    Runtime error: ASSIGN_CAST_COMPLEX_TYPE
  • Cause: The source field is longer than 16 bytes and cannot be interpreted as a type p field.
    Runtime error: ASSIGN_CAST_P_TOO_LARGE
  • Cause: The alignment of field f is too short for the type specified in TYPE.
    Runtime error: ASSIGN_CAST_WRONG_ALIGNMENT
  • Cause: The length of field f does not match the type specified in TYPE.
    Runtime error: ASSIGN_CAST_WRONG_ALIGNMENT
  • Cause: The type specified in TYPE is unknown.
    Runtime error: ASSIGN_CAST_WRONG_TYPE
  • Cause: A maximum of 14 columns is permitted.
    Runtime error: ASSIGN_DECIMALS_TOO_HIGH
  • Cause: Decimal places are allowed only for type p.
    Runtime error: ASSIGN_DECIMALS_WRONG_TYPE
  • Cause: A length of 0 was specified for field f.
    Runtime error: ASSIGN_LENGTH_0
  • Cause: A length less than 0 was specified for field f.
    Runtime error: ASSIGN_LENGTH_NEGATIVE
  • Cause: An offset less than 0 was specified for field f.
    Runtime error: ASSIGN_OFFSET_NEGATIVE
  • Cause: An offset or length was specified for field f and the data type of the assigning field does not allow partial access. (This is the case for data types I, F, and P.)
    Runtime error: ASSIGN_OFFSET_NOTALLOWED
  • Cause: The offset specified for field f exceeds the range of the ABAP variable.
    Runtime error: ASSIGN_OFFSET_TOOLARGE
  • Cause: In the area addressed in the offset and length specifications for field f, deep components exist (data references, object references, strings, internal tables), which may not be overwritten.
    Runtime error: ASSIGN_OFF+LENGTH_ILLEGAL_CAST
  • Cause: Offset and length specified for field f exceed the range of the ABAP variable.
    Runtime error: ASSIGN_OFFSET+LENGTH_TOOLARGE
  • Cause: Field f is not a data reference. However, a data reference was expected.
    Runtime error: ASSIGN_REFERENCE_EXPECTED
  • Cause: The type of the source field and the target type do not match exactly in offset and type in those components that are strings, tables, or references.
    Runtime error: ASSIGN_STRUCTURE_ILLEGAL_CAST
  • Cause: Substrings cannot be assigned to a field symbol.
    Runtime error: ASSIGN_SUBSTRING_NOT_ALLOWED
  • Cause: The field symbol is typed and the type of the assigned field is incompatible with it.
    Runtime error: ASSIGN_TYPE_CONFLICT
  • Cause: The type of the source field contains strings, tables, or references.
    Runtime error: ASSIGN_TYPE_ILLEGAL_CAST
  • Cause: The type of the source field is a structure not compatible with the target type.
    Runtime error: ASSIGN_UC_STRUCT_CONFLICT

Continue

ASSIGN - mem_area

ASSIGN - casting_spec

ASSIGN - range_spec