sapdev logo background
sapdev logo sapdev logo
Comments

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



Return to SAP documentation index


INCLUDE
ARTICLE

No Obsolete Casting in FIELD-SYMBOLS

In ABAP Objects the STRUCTURE addition is not allowed in the
FIELD-SYMBOLS statement.

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


  • FIELD-SYMBOLS fs STRUCTURE struc DEFAULT f.
  • Correct syntax:


  • FIELD-SYMBOLS fs TYPE|LIKE struc.

    ASSIGN f TO fs CASTING.
  • Reason:


  • Field symbols defined with the STRUCTURE addition are a mixture of field symbols whose type is defined and a tool for casting on data types defined in the ABAP Dictionary or locally in the program. The
    types of field symbols are defined with the TYPE addition of the FIELD-SYMBOLS statement and the CASTING addition of the ASSIGN statement can be used for the casting.
    Documentation extract taken from SAP system, � Copyright SAP AG. All rights reserved




    OO_OBS_STOP_1
    OO_OBS_STRUCT_1




    comments powered by Disqus