- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2024 10:53 AM
Hi all,
How to Cancel all SC Tasks in RITM when RITM state changes to Close Incomplete using Business Rule.
The requirement is to close all SC Task under Closed Incomplete RITM's.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2024 06:10 AM
That is the OOB behaviour, to avoid this you can simply take one group's sys_id of servicedesk or some generic group and write "tasks.assignment_group = <sys_id of assignment group>;
Please mark helpful/correct if my response helped you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2024 11:10 AM
tasks.addQuery('request_item', current.sys_id); //It is request_item. try and let us know
Please mark helpful/correct if my response helped you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2024 03:38 AM
Above Code Works but i am getting below Error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2024 06:10 AM
That is the OOB behaviour, to avoid this you can simply take one group's sys_id of servicedesk or some generic group and write "tasks.assignment_group = <sys_id of assignment group>;
Please mark helpful/correct if my response helped you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2024 06:37 AM
Thanks a lot Anubhav