SAP ASSIGN CALC - Guide

Get Example source ABAP code based on a different SAP table
  


GUIDELINE 4.19

Assignments

ABAP_BACKGROUND
For explicit assignments in which the value of a source is assigned to a target, ABAP contains the general assignment operator = and the special casting operator ?=. Statements with these operators lhs =|?= rhs.
enable assignments of
data objects,
Return values/results of functional methods, predefined functions, or construction expressions, table expressions and
results of calculation expressions (arithmetic expressions, bit expressions, and string expressions)
to variables that can also be declared inline and to writable expressions.
Alongside the assignment operators, two obsolete statements exist for historical reasons that can also perform assignments:
The statement MOVE source TO|?TO destination. assigns a source source to a target destination. It covers some of the operators performed by the assignment operators = and ?= .
The statement COMPUTE lhs =|?= rhs. has the same semantics as lhs =|?= rhs. The keyword COMPUTE can be written in front of each assignment with the assignment operators = and ?= where the left side is not an inline declaration, but is ignored.

ABAP_RULE
Assignments with the assignment operators = and ?= only
Use the assignment operators instead of the statement MOVE. Do not use the keyword COMPUTE in front of assignments.

ABAP_DETAILS
Assignments with the assignment operators = and ?= implement the most global concept. The right side is a general expression position and the left side is a declaration position (except in down casts).
The statements MOVE and COMPUTE have the following drawbacks:
The statement MOVE cannot be used globally. The only sources allowed are data objects, function methods, and certain predefined functions whose arguments must be single data objects. The only targets allowed are variables; inline declarations are not possible. Any future enhancements to operand positions will not be applied to MOVE .
The keyword COMPUTE is both confusing and surplus to requirements. If an arithmetic expression or other calculation expression is on the right side, the keyword COMPUTE has the correct meaning, but is redundant. If a data object, a function method, a predefined functions, or a constructor expression is on the right side, the keyword COMPUTE has the wrong meaning, since a return value is assigned instead of an expression being calculated.
The statements MOVE and COMPUTE were created at a time when assignments were only made between individual data objects and calculations were exclusively arithmetic. Neither of these statements is appropriate in a modern, expression-oriented ABAP program that exploits all options on the left and right sides of an assignments.

Note
The optional addition EXACT of the statements MOVE and COMPUTE, which produces lossless assignments and lossless calculations, has been replaced in full by the lossless operator EXACT.

Bad example
The following source code shows a simple assignment using MOVE and the assignment of an arithmetic expression after COMPUTE. DATA text1 TYPE string.
DATA text2 TYPE string.
...
MOVE text1 TO text2.

DATA result TYPE decfloat34.
DATA number1 TYPE i.
DATA number2 TYPE i.
...
COMPUTE result = number1 * number2.

Good example
The following source code shows the same example as above but without specifying the keywords MOVE and COMPUTE. This makes inline declarations possible on the left side. DATA text1 TYPE string.
...
DATA(text2) = text1.

DATA number1 TYPE i.
DATA number2 TYPE i.
...
DATA(result) = CONV decfloat34( number1 * number2 ).