Skip to main content

time()

Last updated 18/07/2023

Example

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

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