Configure Scheduled Job
Copy
The Scheduled Job Item implements some common properties and extends for different Schedule types.
Scheduled Job shared properties
The common properties are:
- Name
- Run As User
- Parameters
- Start Schedule On
- Time Zone
Run As User property
Defines an Innovator User whose behalf Job method will be executed. Configurable Job Scheduling impersonates this user during Job’s execution. It allows to set Permissions context scoped to the defined User. Run As User property is a required property.
Parameters property
Contains json dictionary which is used to execute Jobs. Implemented as Text property.
Parameters is a json dictionay
{
"method_name": "method to execute name",
"method_param_1": "parameter to send to a method in method_name"
}
method_name is a required parameter to define the Server Method Name to be executed. The json can contain any number of parameters to be sent to the defined method when it is called.
Start Schedule On property
Defines date and time used to calculate first Job creation time. Implemented as a string property in format dd/MM/yyy HH:mm:ss. Start Schedule On property is a required property.
Time Zone property
Defines the time zone applicable to any date and time defined in the Scheduled Job Item.
Implemented as a populated list.
Once Schedule
Once is convenient way of preparing a Job execution to happen in the future at a given time.
Daily Schedule
Daily Schedule is a recurrent schedule set to repeat every given number of days at the Start Schedule Time.
Given its recurring nature the End Schedule On property is required to define a limit to close the cycle.
Weekly Schedule
Weekly Schedule is a recurrent schedule set to repeat every given number of weeks at the Start Schedule Time on a specific day, or set of days, of the week.
Given its recurring nature the End Schedule On property is required to define a limit to close the cycle.
Monthly, Numbered Day Schedule
Monthly, Numbered Day Schedule is a recurrent schedule set to repeat every given number of months at the Start Schedule Time on a specific day number of the month.
Given its recurring nature the End Schedule On property is required to define a limit to close the cycle.
Monthly, Relative Day Schedule
Monthly, Relative Day Schedule is a recurrent schedule set to repeat every given number of months at the Start Schedule Time on a day defined as First, Second Third, Fourth of Last, day or days of the week.
Given its recurring nature the End Schedule On property is required to define a limit to close the cycle.