Interested in a ServiceNow event built for developers? Registration for now[dev]26 is officially open!

Flow Designer Error

pallav_nagar
Tera Contributor

Error occured while inserting record: Operation against file 'sc_task' was aborted by Business Rule 'Abort changes on group^a81036a30f320fd08d6bc1e800d1b268'. Business Rule Stack:Abort changes on group

pallav_nagar_0-1787673463365.png

 

 

5 REPLIES 5

yashkamde
Giga Sage

Hello @pallav_nagar ,

 

The Business Rule Abort changes on group is designed to reject any insert/update on sc_task where the assigned_to user isn't a member of the assignment_group (it checks sys_user_grmember).

 

Screenshot 2026-08-26 124110.png

 

So your flow's Create Task action is setting assigned_to to a user who isn't part of the group referenced - sys_id.

So for fixing you can :

Leave assigned_to blank in the Create Task action if you only want to set the group, let assignment happen manually or via a separate assignment rule.

OR

Fix the group membership, add the user to that group in sys_user_grmember if they're genuinely supposed to own this task.

 

If my response helped mark as helpful and accept the solution.