This format will apply the KT_formatDate function on the selected field. This function will convert from database date formats to the selected screen format, according to the options set in the InterAKT Control Panel > Date formats.
This format should be used on fields that contain dates, and if retrieved from a database, their format must match the one set for the Database date format in the InterAKT Control Panel. Otherwise, the conversion may not work as expected.
When applied on a field (e.g. name_emp), it will become a parameter for the function.
For the PHP server model, the code is like the following: KT_formatDate($row_rsRecordset['name_emp']).
For the ColdFusion server model, the code is: #Request.KT_formatDate(rsRecordset.name_emp)#
For ASPVBScript,
the code is: KT_formatDate((rsRecordset.Fields.Item("name_emp").Value))