Skip to content

ABAP Keyword Documentation →  ABAP - Reference →  Obsolete Language Elements →  Obsolete Processing of Internal Data →  Obsolete Assignments 

MOVE - PERCENTAGE

Short Reference

Other versions: 7.31 | 7.40 | 7.54

Obsolete Syntax

MOVE source TO destination PERCENTAGE perc [LEFT|RIGHT].

Effect

This variant of the statement MOVE (also obsolete), which is not permitted in classes, assigns the subfield of the data object source that begins at the first position and whose length matches the percentage of the total length of source specified in perc, to the data object destination. By default, and if LEFT is specified, destination is left-aligned; if RIGHT is specified, it is right-aligned.

The data type of the data objects source and destination must be character-like, otherwise the addition PERCENTAGE is ignored. perc expects a data object of type i. If the value of perc is less than or equal to 0, nothing is assigned. If the value of perc is greater than or equal to 100, the entire content of source is assigned.


Note

This variant of the statement MOVE can (if required) be replaced by substring accesses with dynamic offsets/lengths or by substring functions.

Bad example

MOVE c1 TO c2 PERCENTAGE n.

Good example

DATA l TYPE i.

DESCRIBE FIELD c1 LENGTH l.
l = l * n / 100.
MOVE c1(l) TO c2.