Skip to main content

dateTime()

Last updated 18/07/2023

Example

The following code executes before a new row is inserted into a table and sets the current date and time in local time as a string in the OrderDate field.

Set the local current date and time in the OrderDate field
function NewOrder(five: Five, context: any, result: FiveError): FiveError {
context.new.OrderDate = five.dateTime();
return five.success();
}