ABAP - Keyword Documentation →  ABAP - Dictionary →  Predefined Data Types in ABAP Dictionary →  Attributes of the Predefined Dictionary Types →  Special Dictionary Types → 

Date Types and Time Types

The following character-like data types in ABAP Dictionary describe date fields and time fields:

From a technical perspective, the predefined data type DATS describes objects of the type CHAR with a length of 8 characters. It is designed for calendar dates in the format YYYYMMDD, but this is not checked when performing writes and reads on database fields with this type. Automatic checks are only made for dynpro fields typed with reference to DATS. In ABAP, DATS is assigned to the special type d and the associated rules apply.
From a technical perspective, the predefined data type TIMS describes objects of the type CHAR with a length of 6 characters. It is designed for times in the format HHMMSS, but this is not checked when performing writes and reads on database fields with this type. Automatic checks are only made for dynpro fields typed with reference to TIMS. In ABAP, TIMS is assigned to the special type t and the associated rules apply.
From a technical perspective, the predefined data type ACCP describes objects of the type CHAR with a length of 6 characters. It is designed for posting periods in the format YYYYMM, but this is not checked when performing writes and reads on database fields with this type. Automatic checks are only made for dynpro fields typed with reference to ACCP.

Notes