sapdev logo background
sapdev logo sapdev logo
Comments

ABAP ASSIGN LOCAL COPY Statement syntax, information and example SAP source code



Return to Statement index



ASSIGN LOCAL COPY

Short Reference

ABAP Syntax(Obsolete) ASSIGN LOCAL COPY
OF { {[INITIAL] mem_area}
| {INITIAL LINE OF {itab|(itab_name)}}
| {MAIN TABLE FIELD (name)} }
TO fs casting_spec.

ABAP_ADDITIONS:
1 ... mem_area
2 ... MAIN TABLE FIELD (name)
3 ... casting_spec

What does it do? Obsolete creation of a local data object. This variant of the ASSIGN statement can only be used in subroutines and function modules . The field symbol fs must be declared locally in the procedure.
Like the regular statement ASSIGN , the statement ASSIGN LOCAL COPY assigns a memory area mem_area
to the field symbol fs . Unlike the regular statement ASSIGN , the field symbol does not reference the memory area specified in mem_area after the successful assignment. Instead, an anonymous data object is created in the local data area of the procedure. After the successful execution of the statement, the field symbol points to the new data object. The new data object is treated as follows:
The size of the memory area of the new data object conforms to either the data in mem_area or the line type
of an internal table if LINE OF is specified. The internal table can be specified directly as itab or as the content of a flat character-like field itab_name .
The data type with which the newly created data object is to be handled conforms to the data in casting_spec as is the case when using the regular ASSIGN .
The initial content of the new data object is copied from the memory area specified in mem_area when specifying mem_area without the addition INITIAL . Otherwise it is initialized according to type.
Limitation of the memory area range_spec
, which can occur in the regular ASSIGN statement implicitly and explicitly, occurs only implicitly in accordance with the rules that also apply to the normal ASSIGN .

Latest notes: The creation of a local data object using the statement ASSIGN LOCAL COPY is replaced by the statement CREATE DATA
with subsequent dereferencing in the regular ASSIGN statement.

ABAP_ADDITION_1 ... mem_area
Syntax of mem_area
... { dobj[+off][(len)]
| (name)
| oref->(attr_name)
| {class|(class_name)}=>{attr|(attr_name)}
| dref- * } ...

What does it do? The specifications in mem_area are a subset of the
specifications in the regular ASSIGN
statement. They have the same function except for the following restrictions:
If the addition INITIAL is used before mem_area , the data object name must be character-like and
flat .
If the addition INITIAL is used before mem_area , the data object dref cannot be typed generically when using the dereferencing operator - * .

ABAP_ADDITION_2 ... MAIN TABLE FIELD (name)


What does it do? This addition is a special form of the specified memory area mem_area that can only be used in this variant of the
ASSIGN statement. It has the same function as the obsolete TABLE FIELD (name) in a regular ASSIGN with the exception that the search area is restricted to the current main program group .

ABAP_ADDITION_3 ... casting_spec

What does it do? If specified, casting_spec is the same as a regular ASSIGN with the limitation that if the addition INITIAL is used before mem_area and an internal tables is specified, no explicit specifications can be made. This means, the field symbol copies the data type of the data object in mem_area or the line type of the internal table.

Example ABAP Coding A typical use of the statement ASSIGN LOCAL COPY was the creation of a local copy of a global data object.
DATA g_dobj TYPE i.
...
CLEAR g_dobj.
PERFORM subroutine1.
...
FORM subroutine1.
FIELD-SYMBOLS <(><<)>l_dobj> TYPE ANY.
ASSIGN LOCAL COPY OF g_dobj TO <(><<)>l_dobj>.
<(><<)>l_dobj> = <(><<)>l_dobj> + 1.
cl_demo_output=>write_data( <(><<)>l_dobj> ).
cl_demo_output=>display_data( g_dobj ).
ENDFORM.
The following subroutine shows how the same functions can be universally implemented with a data reference.
DATA g_dobj TYPE i.
...
CLEAR g_dobj.
PERFORM subroutine2.
...
FORM subroutine2.
DATA dref TYPE REF TO data.
FIELD-SYMBOLS <(><<)>l_dobj> TYPE ANY.
CREATE DATA dref LIKE g_dobj.
ASSIGN dref->* TO <(><<)>l_dobj>.
<(><<)>l_dobj> = g_dobj.
<(><<)>l_dobj> = <(><<)>l_dobj> + 1.
cl_demo_output=>write_data( <(><<)>l_dobj> ).
cl_demo_output=>display_data( g_dobj ).
ENDFORM.
Documentation extract taken from SAP system, � Copyright SAP AG. All rights reserved




ASSIGN_EXCEPTIONS
ASSIGN_MEM_AREA




comments powered by Disqus