- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2018 07:56 AM
I have a business rule and want to trigger it on specific interval using scheduled job. Can anyone tell how to achieve this functionality.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2018 08:03 AM
Hi,
Yes, you can trigger business rule from a scheduled job. In a scheduled job, a 'Job context' field is present in which it needs to call with business rule
Refer to the below link for more information,
Mark correct or helpful based on the response.
Regards,
Ashwini.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2018 08:03 AM
Hi,
Yes, you can trigger business rule from a scheduled job. In a scheduled job, a 'Job context' field is present in which it needs to call with business rule
Refer to the below link for more information,
Mark correct or helpful based on the response.
Regards,
Ashwini.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2018 09:15 AM
Check for incident autoclose scheduled job in your instance for example model.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2018 09:23 AM
Hi,
You need to create a schedule item in the sys_trigger table and add then add the following line in Job context field
fcScriptName=Your_Business_Rule_Name_here
And setup the required schedule

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2023 08:50 PM
Thanks!