Catalog task update

kmannem
Tera Contributor

Hi everyone,

I’m facing an issue in Flow Designer where my flow will create a task and check for a condition where state is shipped. If state is shipped it should update the assignment group / assigned to fields. But its not working.

What I have:

  • Flow triggers Catalog Task.

  • Condition checks:

    • State = Shipped

    • Destination = Cambridge

  • Then I use “Update Catalog Task Record” action

Is there anything I might be missing in updating assignment fields via Flow Designer?What’s the best practice to assign groups dynamically based on conditions in Flow Designer?

Any help or pointers would be greatly appreciated!

Thanks in advance 🙏

13 REPLIES 13

Hello @kmannem ,

 

You can use wait for condition in which you can use condition like  state == shipped , means until state changes to shipped , flow will wait 

I agree with Aditya on the wait condition.   I would also double check the Choice table to ensure the Shipped value matches what you are evaluating against.  shipped vs. 8

kmannem
Tera Contributor

@timothywick @yashkamde Added the screenshots.

yes @kmannem ,

after unchecking wait checkbox the flow is stop because the state is open and in your flow it is directly check is the state is shipped..

 

So you need to add Wait for Condition after creation of catalog task > And then in IF condition check that wait for condition is complete or not.

Screenshot 2026-03-24 095114.pngScreenshot 2026-03-24 095247.png

 

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