- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-05-2025 12:25 AM
I have a business rule set to run on update of the 'State' field on the Incident table. It works perfectly when the field is updated manually or through a script, but when I update the same field using Flow Designer, the business rule doesn’t trigger. Why is this happening? Is there something different about how Flow Designer updates records?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-05-2025 04:45 AM
Flow Designer might not trigger BRs if the field value isn’t actually changing or if it uses setWorkflow(false) internally. Also, BRs with current.field.changes() won’t run unless there’s a real change.
Can you post your BR script? I can look into that and help you better
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-05-2025 01:25 AM - edited ‎07-05-2025 01:25 AM
Hi @vikramkehar,
How do you set your BR? Kindly post you code and the conditions, if is after or before and insert or update
Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-05-2025 02:37 AM
Hello @vikramkehar
I suggest to paste the business rule here (via a screenshot or script) and I am quite positive that the Community will assist you with this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-05-2025 04:45 AM
Flow Designer might not trigger BRs if the field value isn’t actually changing or if it uses setWorkflow(false) internally. Also, BRs with current.field.changes() won’t run unless there’s a real change.
Can you post your BR script? I can look into that and help you better
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-05-2025 04:49 AM
Thanks, I got it where I am lagging with your explanation.