Business Rule
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-18-2024 07:46 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-18-2024 11:28 PM
Hi,
Instead BR you can go with Scheduled Job to achieve this.
Is there any specific reason for BR?
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-18-2024 11:57 PM
hello @Dhananjay Pawar
it's a user recruitment to process with business rule.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-18-2024 11:33 PM
Hi @Shrabanti
please refer to below script
var today = new GlideDateTime();
var dur = new GlideDuration(60*60*24*1000*3);
var sch= new GlideSchedule('36a0629197010210b958f84de053afaa'); //Schedule sys id
var businessDay= sch.add(today,dur);
gs.info(businessDay);
gs.eventQueueScheduled("<name_of_your_event>", current, "", "", businessDay);
Thanks
Thanks
dgarad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-18-2024 11:50 PM
Hello @dgarad
can u please tell that what are the conditions need to add in business rule before that script u provided.
scheduled sys id means?