- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-19-2024 10:38 PM
When problem is marked as closed then all open tasks are getting auto canceled. I want to restrict auto closer of task as well as problem if there is any open task associated with.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-20-2024 07:40 AM
Hi @nehasingh98 ,
You have to do 2 things.
1. Deactivate the property which is responsible for closing the PTASK.
2. Create one before business rule and trigger it when state changes to close. In BR Gliderecord on pTask and look for any active pTask, If found then do current.setAbortAction(true).
-------------------------------------------------------------------------
If you found my response helpful, please consider selecting "Accept as Solution" and marking it as "Helpful." This not only supports me but also benefits the community.
Regards
Runjay Patel - ServiceNow Solution Architect
YouTube: https://www.youtube.com/@RunjayP
LinkedIn: https://www.linkedin.com/in/runjay
-------------------------------------------------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-20-2024 07:40 AM
Hi @nehasingh98 ,
You have to do 2 things.
1. Deactivate the property which is responsible for closing the PTASK.
2. Create one before business rule and trigger it when state changes to close. In BR Gliderecord on pTask and look for any active pTask, If found then do current.setAbortAction(true).
-------------------------------------------------------------------------
If you found my response helpful, please consider selecting "Accept as Solution" and marking it as "Helpful." This not only supports me but also benefits the community.
Regards
Runjay Patel - ServiceNow Solution Architect
YouTube: https://www.youtube.com/@RunjayP
LinkedIn: https://www.linkedin.com/in/runjay
-------------------------------------------------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-20-2024 08:00 AM
Thank you for your response! Will configure it and let you know.