- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2023 06:32 AM
Hello,
I was hoping someone would be able to advise as to the best approach to take in order to automate a change to the the "needs attention" field on any Case record to being true whenever any user who is not currently assigned to the record updates any field on said record.
I am currently assuming that an after update business rule would be the go-to solution, unless anyone has any advice as to a better way to do this?
Many thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2023 06:45 AM - edited 09-26-2023 06:57 AM
Hello @Jake McC
An OOB flow "Set Needs Attention if additional comments are added by others" already exists when you install the
Case Action Status plugin. The flow sets the Needs Attention flag to true when someone other than the assignee adds a comment to a case. You can modify the flow to check for the fields that can be changed.
*No need to install the plugin you already did.
if my answer has helped with your question, please mark my answer as an accepted solution and give a thumbs up.
Kind regards
Misgana D.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2023 06:45 AM - edited 09-26-2023 06:57 AM
Hello @Jake McC
An OOB flow "Set Needs Attention if additional comments are added by others" already exists when you install the
Case Action Status plugin. The flow sets the Needs Attention flag to true when someone other than the assignee adds a comment to a case. You can modify the flow to check for the fields that can be changed.
*No need to install the plugin you already did.
if my answer has helped with your question, please mark my answer as an accepted solution and give a thumbs up.
Kind regards
Misgana D.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2023 06:46 AM
Hi @Jake McC ,
It's better to use before BR and set the value to true it will save a DB transaction and no need to use current.update().
Anvesh

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2023 07:03 AM
@Jake McC Create an onBefore Update BR, in condition field check if current.sys_updated_by!=gs.getUserName();
in the script filed set needs attention field to true.