Expand my Community achievements bar.

Join us LIVE in San Francisco on November 14th for Experience Makers The Skill Exchange. Don't miss out on this free learning event!

Fusion scenario does NOT fire on form changes if form isn't on the top of the stack

Avatar

Level 2

I have a project that has 7 forms attached. The target form is not the top form, but say the 5 form in the stack.
I have a Fusion Scenario Watch Event (Instant/Acid) set up to trigger when a project is updated with a specific categoryId.

When I update the target form in the project, Fusion scenario does NOT fire.

When I adjust the form stack on the project and move the target form to the top of the stack and then update the form the Fusion scenario does fire.

Is this normal behavior? How can I make sure to get all form updates on any form using Fusion?

2 Replies

Avatar

Level 3

Yes, unfortunately, it appears to be normal behavior in the Watch event. You would have more flexibility in modules further down to bring back all objectCategories in an array and then loop through the array for the form you're looking for, but not in the Watch event. 

 

One "hack" I've used when I have an object with multiple forms is to set an Admin-Only field on the specific form with a default value. Then in the Watch event, rather than look for just the project with that categoryID, I look specifically a project with specifically that field having the default value.

 

For example, this task may have multiple forms in any stack order, yet scenario will fire if the field has this value set to Yes (or even if the field just exists):

gardensurfer_5-1724772820661.png

 

Avatar

Level 5

I created an admin only field that is a concatenation of all fields on a form. This works well as long as all fields combined would not be over 2000 characters. Make the webhook trigger be on field change. This approach limits the webhook events while also giving access to all updates within the form. I did not have to worry about the 2000 char limit so I never tried to make it more pretty.

 

The formula is just CONCAT(field1, field2, ...)