How can stop process the next workflow if last workflow failed?

Status: Open · Asked by Ton Won on · 0 views

Ton Won — Question ·

How can make the workflow stop process the next step if once failed?

Arshil Ahmad — Reply ·

Hi @gpro,

If you want the subsequent steps to stop executing when there is an error in Step 5, you can add a Filter step immediately after Step 5. This will ensure that the next steps are executed only if there is no error in Step 5.

Thanks & Regards,
Arshil Ahmad
Customer Support Associate
? Pabbly.com
?Rate your support

Ton Won — Reply ·
Hi @gpro,

If you want the subsequent steps to stop executing when there is an error in Step 5, you can add a Filter step immediately after Step 5. This will ensure that the next steps are executed only if there is no error in Step 5.

Thanks & Regards,
Arshil Ahmad
Customer Support Associate
? Pabbly.com
?Rate your support


Thanks!

How about if it used "Iterator(Pabbly)" on before workflow, will it stop all the process if the workflow failed in filter? or keep to run next?

Arshil Ahmad — Reply ·
Thanks!

How about if it used "Iterator(Pabbly)" on before workflow, will it stop all the process if the workflow failed in filter? or keep to run next?


It will stop for particular iterations that do not meet the filter conditions. The process will continue for the iterations that meet the filter conditions, even if they occur after a failed iteration.

For example, if you have 3 items in your JSON, and the first one does not meet the condition while the other two do, the workflow will stop at the Filter step for the first item. Then, within the same task, the next item will be processed, and if it meets the filter conditions, the step after the filter will execute.

In short, each item in the JSON will be checked individually. The workflow will not stop if a particular item does not meet the filter condition. You can add the Iterator without worrying about the filter.

Thanks & Regards,
Arshil Ahmad
Customer Support Associate
? Pabbly.com
?Rate your support

Back to all forum threads · Log in to reply