sapdev logo background
sapdev logo sapdev logo
Comments

SAP OO OBS IMPLICITE TYPE 1 documentation, setup help and example usage



Return to SAP documentation index


INCLUDE
ARTICLE

Cannot Declare Type, Length, or Decimal Places Implicitly

In the TYPES statement in ABAP Objects, you must implicitly declare the type of type C types; the length of type C, N, P, and X types; and the number of decimal places of type P types.

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


  • TYPES: t1,
    t2 TYPE p.
  • Correct syntax:


  • TYPES: t1(1) TYPE c,
    t2(8) TYPE p DECIMALS 0.
  • Cause:


  • Complete type definitions are a prerequisite for considering incompletely defined types as generic types later. In the DATA statement, short forms are completed as before.
    Documentation extract taken from SAP system, � Copyright SAP AG. All rights reserved




    OO_OBS_HIDE_1
    OO_OBS_INFOTYPES_1




    comments powered by Disqus