DATE_FORMAT
String specifying the format used to output dates. Supported separators are: . (full-stop), — (hyphen), / (slash) or separating spaces.
Default: yyyy-mm-dd / dd.mm.yyyy
Format specifiers:
dd
Writes day of the month as a decimal number. Range 01...31.
mm
Writes month as a decimal number. Range 01...12.
yyyy
Writes 4 digits of year, e.g. 2022.
yy
Writes last 2 digits of year. Range 00...99.
aa
Writes abbreviated weekday name, e.g. Fri (depends on current Creo language).
AA
Writes full weekday name, e.g. Friday (depends on current Creo language).
bb
Writes abbreviated month name, e.g. Jan .(depends on current Creo language)
BB
Writes full name of month, e.g. January (depends on current Creo language).
Example
yyyy-mm-dd — results 2022–09–12
dd.mm.yyyy — results 12.09.2022
dd/mm/yy — results 12/09/22
dd bb yyyy — results 12 Sep 2022
aa dd bb yy — results Mon 12 Sep 22