Event Stream Processor datatypes map to SAP ABAP datatypes.
The ABAP T (time) and D (date) datatypes have HHMMSS and YYYYMMDD formats respectively. The ESP date datatype to which they map has a YYYY-MM-DD HH:mm:ss format. When the ABAP T datatype is converted, the YYYY-MM-DD portion is set to 1970-01-01 (epoch). When the ABAP D datatype is converted, the HH:MM:SS portion is set to 00:00:00.
| ABAP Datatype | Event Stream Processor Datatype |
|---|---|
| I | integer |
| F | float |
| P | string |
| C | string |
| D | date |
| N | string |
| T | date |
| X | binary |
| g(string) | string |
| y(xstring) | binary |