sapdev logo background
sapdev logo sapdev logo
Comments

SAP OO OBS ASSIGN LOCAL 1 documentation, setup help and example usage



Return to SAP documentation index


INCLUDE
ARTICLE

No local copies using ASSIGN

In ABAP Objects it is not possible to use field symbols in procedures to work with copies of other data.

  • Error message in ABAP Objects if the following syntax is used:


  • ASSIGN LOCAL COPY OF INITIAL f TO fs .

    ASSIGN LOCAL COPY OF f TO fs .
  • Correct syntax:


  • DATA dref TYPE REF TO data.
    CREATE DATA dref LIKE f.
    ASSIGN dref- * TO fs .

    DATA dref TYPE REF TO data.
    CREATE DATA dref LIKE f.
    ASSIGN dref- * TO fs .
    fs = f.
  • Reason:


  • Due to the introduction of the general data references concept, the addition LOCAL COPY of the statement ASSIGN is obsolete. The value of f can be copied using the assigment <(><)> = f after ASSIGN .
    Documentation extract taken from SAP system, � Copyright SAP AG. All rights reserved




    OO_OBS_ADD_1
    OO_OBS_ASSIGN_TABLE_1




    comments powered by Disqus