Ansicht
Dokumentation

ABAPMOVE_PERCENTAGE - MOVE PERCENTAGE

ABAPMOVE_PERCENTAGE - MOVE PERCENTAGE

TXBHW - Original Tax Base Amount in Local Currency   BAL_S_LOG - Application Log: Log header data  
This documentation is copyright by SAP AG.
SAP E-Book

MOVE, PERCENTAGE

Short Reference



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

Effect

This variant of the statement MOVE (also obsolete), which is not allowed in classes, assigns the substring 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

If necessary, this variant of the statement MOVE can be replaced by substring accesses with dynamic offsets/lengths or by substring functions.

MOVE c1 TO c2 PERCENTAGE n.

DATA l TYPE i.

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






Vendor Master (General Section)   BAL_S_LOG - Application Log: Log header data  
This documentation is copyright by SAP AG.

Length: 1898 Date: 20240420 Time: 025223     sap01-206 ( 36 ms )