Power Automate Best practices, Tips and Tricks: #6 Error handling… configure run after settings

Are you surprised? Are you under where are the first five tips?

I start this series of blog posts on the Serveless360 blog and you can see and read the previous Best practices, Tips, and Tricks while working with Power Automate here:

Today I’m going to speak about another critical Best practice, Tips, and Tricks: implementing Error handling inside Power Automate.

#6 Error handling… configure run after settings

When designing a business process, one of the most important design considerations you need to keep in mind is what happens when things go wrong. By default, Power Automate allows us to handle errors by using the Configure run after settings at a per action level. This is what common programming languages like C# do.

  • Line 5 will only be executed if line 4 executes with success.  
  • Line 7 will only be executed if line 5 executes with success.
  • and so on
  • If an error happens on one of these lines, the function or program will be interrupted there.

The same default behavior happens on Power Automate. An upcoming action will run if the current one is successfully finished with success. However, in Power Automate we have the possibility to easily change this behavior and, kind of, implement a try-catch per action level.

Changing the default action run after settings

As you see in the picture below, by default the upcoming action will run if the previous one is successfully finished with success:

  • Parse JSON action will run if HTTP action is successfully finished
  • Create file action will run if Parse JSON action is successfully finished

And this behavior makes all sense.

Note that you cannot configure the run after settings for the first action, in this case, the HTTP action because that depends on the trigger execution. And that makes also sense.

Now let’s assume that we add a Logging shape to track some information – there are better ways to do this! This is just a POC sample.

Normally these tracking actions shouldn’t break your business workflow if something gets wrong with them, let’s say the service was offline. Should we miss an invoice just because we can’t do tracing or logging? No. 

To avoid that we can on the action below, in our sample, the Create file action, change the default run after setting. And to do that we should:

  • On the Create file action, click on the  (3 dots) and select the Configure run after option.
  • On the Create file should run after panel, you will see that the Logging sample is selected and now you just need to select the following options:
    • is successful (by default already selected)
    • has timed out
    • has failed
  • Click Done.

So now the Create file action will be executed even if the Logging sample action fails, give a timeout, or is executed with success as we expected. The important is that will not impact the critical logic of your business workflow.

And you can apply this strategy to all shapes. Use it carefully and according to your business logic.

This can be perfect for a simple business process, but in more complex or real enterprise scenarios, there will be situations where we want to handle errors from multiple actions in a single place and implement specific tasks if a failure occurs.

Implementing advanced Error handling

As I mentioned in #5 Using Scopes, most users tend to think that Scopes is a strange action that is not there to do anything other than to help you organize the business logic a little better inside your Power Automate Flow, but that is not true. The reality is that scopes have many functionalities:

  • Region statement: the capability to organize your business logic and have specific areas that you can collapse and expand whenever you need it.
  • Try-Catch-Finally statement: advance error handling capabilities

And it is this second capability that allows us to implement advanced error handling capabilities by:

  • Creating a try-catch statement consisting of a try block followed by one catch clause to handlers different exceptions that can occur on the try block.
  • Or creating a try-catch-finally statement.

Once again, this is quite normal in traditional programming languages like C#, where we use a try-catch or try-catch-finally statements:

The try-catch-finally statement handles some or all of the errors that may occur in a block of code. Errors can be coding errors made by the programmer, errors due to wrong input, and other unforeseeable things.

  • The try statement allows you to define a block of code to be tested for errors while it is being executed –> this will be your Actions inside Power Automate that describe the logic of your business process.
  • The catch statement allows you to define a block of code to be executed if an error occurs in the try block –> this will be your Actions inside Power Automate that your want to run if some failure occurs in the standard actions of your business process.
  • The finally statement lets you execute code after try and catch statements, regardless of the result (if there was a fail inside the try statement or if everything was completed successfully).

Note: The catch and finally statements are optional, but you need to use one of them (if not both) while using the try statement.

To implement a try-catch or try-catch-finally statements we need to:

  • Add a Scope, we can call it Try-Scope, and add all the actions that you want to control errors inside this scope.
  • Just immediately after the Try-Scope action, add a new Scope, we can call it Catch-Scope and add all the actions necessary to perform in case of errors, like rollback actions or logging actions.
  • Now on the Catch-Scope action, click on the … (3 dots) and select Configure run after option
  • Click on the Try-Scope to present the run after options and select:
    • has failed
    • has timed out
    • note: unselect the is successful option
  • and click Done.

With this, we have implemented a try-catch statement. Now if we want to implement a try-catch-finally statement we just need to:

  • Immediately after the Catch-Scope action, add a new Scope, we can call it Finally-Scope and add all the actions that will be executed no matter the Try-Scope is executed successfully or if the Catch-Scope is executed.
  • Now on the Finally-Scope action, click on the … (3 dots) and select Configure run after option
  • Click on the Catch-Scope to present the run after options and select all options:
    • is successful
    • has timed out
    • is skipped
    • has failed
  • and click Done.

And there you go we have a try-catch-finally statement implemented.

Important note: Even inside a Scope we can implement kind of, a try-catch per action level that we explain at the beginning of this post.

Stay tuned for the following Power Automate Best practices, Tips, and Tricks.

Author: Sandro Pereira

Sandro Pereira lives in Portugal and works as a consultant at DevScope. In the past years, he has been working on implementing Integration scenarios both on-premises and cloud for various clients, each with different scenarios from a technical point of view, size, and criticality, using Microsoft Azure, Microsoft BizTalk Server and different technologies like AS2, EDI, RosettaNet, SAP, TIBCO etc. He is a regular blogger, international speaker, and technical reviewer of several BizTalk books all focused on Integration. He is also the author of the book “BizTalk Mapping Patterns & Best Practices”. He has been awarded MVP since 2011 for his contributions to the integration community.

1 thought on “Power Automate Best practices, Tips and Tricks: #6 Error handling… configure run after settings”

  1. Thanks for this. I was wondering how to do simple error handling in Power Automate and you have explained this nicely. It is not obvious on first glance and I sort of thought Power Automate was meant to be low code (intuitive) but in reality we are forced to to recreate code like structures without typing.
    It will take me longer to do all the drag and drops than to write in code 😉
    Thanks again.

Leave a Reply

Your email address will not be published. Required fields are marked *

turbo360

Back to Top