sapdev logo background
sapdev logo sapdev logo
Comments

SAP OO OBS MOVE 1 documentation, setup help and example usage



Return to SAP documentation index


INCLUDE
ARTICLE

Cannot Use the MOVE PERCENTAGE Statement

You cannot use the MOVE PERCENTAGE in ABAP Objects.

  • In ABAP Objects, the following statement causes an error message:


  • MOVE c1 TO c2 PERCENTAGE n.
  • Correct syntax:


  • DATA l TYPE i.

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


  • If necessary, you can assign a percentage of a field to another field using other statements.
    Documentation extract taken from SAP system, � Copyright SAP AG. All rights reserved




    OO_OBS_MARK_1
    OO_OBS_NAMES_1




    comments powered by Disqus