- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2022 11:47 PM
Hello Team,
when we update the assignment group directly on list view the "assigned to" field value is not getting cleared. I want to make the "assigned to" clear when "assignment group" value updated .
Please help with the script for this.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2022 11:55 PM
You can try before/update business rule with no script
condition
Assignment Group Changes
Action
Assigned To set it to Nothing
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2022 11:55 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2022 11:56 PM
Hello
For doing that you can define a Before Business Rule with following script in tab Advanced:
if(current.assignment_goup.changes())
current.assigned_to ='';
Please mark answer correct/helpful based on Impact
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2022 11:57 PM
Hi
Just for knowledge sharing I believe no scripting is required for this, You can find my response
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2022 12:17 AM
Hello
I do not think Actions work well in List view. That is the reason I suggested the script.
Thanks