What conditions must be met for the schedule code to run?
In detail about crons in the documentation.
The code
must be filled in and status
included in the table System tables
—> Main
—> Settings and cron
—> Crons
.
Which field code is executed on a schedule?
From the code
field.
At what intervals will the task run if all the time fields are empty?
Once per minute.
At what intervals and at what point the task will run if the hour field is 0, and all other fields are blank?
From 0:00 to 1:00 every minute.
What should be specified in the time fields to run the task once a day at 11 pm?
Minutes = 0, Hours = 23
How do I execute the schedule code manually?
By the button do_it_now
.
What functions cannot be used in schedule codes?
Do not use linkTo...
functions as they open windows!
What is the problem with linkToScript and what should be used instead?
linkToScript opens a window and does not work in crons. Instead, getFromScript is used.
How to check if the schedule code works?
Place in code
and enable cron in the line where all time intervals are empty:
=: set(table: $#ntn; field: 'status' = false; where: 'id' = #id)
When crons are running within a minute, the activity checkbox should be unchecked.