OData Supported Data Types
OData ABAP service data types are also knows as 'EDM' data types.
The supported data types are:
- EDM.Binary > Fixed or variable length binary data
- EDM.Boolean > To represent binary value logic (True/False)
- EDM.Byte > Unsigned 8-bit integer value
- EDM.DateTime > Date and time values
- EDM.Decimal > Numeric values with fixed precision and scale
- EDM.Double > Floating point number with 15 digit precision
- EDM.Float> Floating point number with 7 digit precision
- EDM.Sbyte > Signed 8-bit integer value
- EDM.Int16 > Signed 16-bit integer value
- EDM.Int32 > Signed 32-bit integer value
- EDM.Int64 > Signed 64-bit integer value
- EDM.Single > Floating point number with 7-digit precision
- EDM.String > Fixed or variable length character data
- EDM.Time > Time of the day with values ranging from 00:00:00 to 23:59:59
The above are not ABAP Data Types. They are OData service data types used at OData level, and are called EDM data types.
EDM stands for Entity Data Model.
Comments
Post a Comment