Skip to main content
Question

A module to stop the action flow at some point

  • September 9, 2025
  • 2 replies
  • 66 views

A Rab
Level 2
Forum|alt.badge.img

Hi,

I have an action flow with a Router module, and I want one of the branches to just end the Action Flow without going through the rest of the Modules in the Action Flow. Because I have an Aggregate module, it always continues executing from there, so I want to just stop the Action Flow at specific condition. Thanks

2 replies

janpeter.van.d
Level 12
Forum|alt.badge.img+26

Hi ​@A Rab

 

The only thing I can think of, is using error handling modules to stop the flow. Unfortunately these modules are not documented on the Celonis website, but are on the website of the underlying software ‘Make’: https://help.make.com/quick-error-handling-reference. It seems that the Commit module can stop the execution, while still mark it as a success. You should let your flow check for a certain condition, and if true, let it arrive at the commit module (possible via a thrown exceptions). 

I hope this helps!

Best regards,
Jan-peter


A Rab
Level 2
Forum|alt.badge.img
  • Author
  • Level 2
  • September 11, 2025

@janpeter.van.d that is very helpful, thanks