- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2023 02:43 PM
Hi,
I have a workflow that needs a task to launch when a certain variable(select box) is selected. I have tried the "wait for" and "if" but the end result is the task that has the variable in it has to be closed first. The task must remain open and a new task is generated when the variable is selected and the opened task is saved or updated.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2023 02:54 PM - edited 11-07-2023 02:59 PM
Use the wait for activity, and put it on a parallel path with the Catalog Task. You can use a Branch activity, but that's really just for readability - all you really need is two paths coming out of the previous activity - one going to the Catalog Task, and the other going to the Wait For activity. Each activity in these paths will do whatever comes next in that path (generating the new Catalog Task after the wait for) then use a Join activity to wait for both paths to reach it before moving on to the next step, if that's what you want to do. So in the simplest form:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2023 02:54 PM - edited 11-07-2023 02:59 PM
Use the wait for activity, and put it on a parallel path with the Catalog Task. You can use a Branch activity, but that's really just for readability - all you really need is two paths coming out of the previous activity - one going to the Catalog Task, and the other going to the Wait For activity. Each activity in these paths will do whatever comes next in that path (generating the new Catalog Task after the wait for) then use a Join activity to wait for both paths to reach it before moving on to the next step, if that's what you want to do. So in the simplest form: