Logic Apps Best practices, Tips and Tricks: #4 Using Scopes

Posted: March 1, 2022  |  Categories: Azure Logic Apps

In my previous blog posts, I talked about some of the most essential best practices you should have while working with the Azure Logic App:

Today I’m going to speak about another Best practice, Tips, and Tricks: using Scopes.

Inside Logic Apps, Scopes have many functionalities, but it is probably best known for its ability to organize your business workflows!

#4 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 LA, 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

Region: Organizing  flows capabilities

Once you start working with Logic Apps, it doesn’t take to long for you to realize that some of these business processes can become very large and complex, and this will cause problems or difficulties for you to read and maintain. Not everyone has big screens with huge resolutions to minimize this problem. Rather than continuously scrolling up and down and side to side to navigate inside the designer, you can use the Scope action to “group” actions together that we can collapse and expand whenever you need by simply clicking on the title of the scope.

This is a pretty familiar task that all developers use inside their code to organize and improve code readability, which will increase efficiency. And someday down the road, when another programmer comes across your source code, they will be very thankful. For example, in C#, we use Regions to accomplish that:

The Scope action can archive the same, and you should use it wisely inside your Logic Apps. This will allow you to:

  • Hide sections of the business process you’re not currently working on.
  • Minimize the size and clean up your working area
  • And let you focus on the actions you’re actively editing.

Of course, do not forget the naming convention best practices. To make your business process easier to follow and read, you should give the scope a name that describes the behavior of the actions inside. In our example, we gave GetToken, but that could be even better, like Get <type> Token from <system>.

Try-Catch-Finally: Advance error handling capabilities

Another major Scope capability is the availability to implement Try-Catch-Finally functionalities.

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, Logic App allows us to handle errors by using the Configure run after settings at a per action level. 

An upcoming action runs if the current one is successfully finished by default, but you can always change this behavior to implement a try-catch per action level.

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. Once again, this is quite normal on 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 Logic App 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 Logic App 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.

These try-catch or try-catch-finally statements can be implemented inside Power Automate flow by using conjugation of:

  • Two Scopes actions for implementing a try-catch statement.
  • Or three Scopes actions for implementing a try-catch-finally statement.

Also, remember to strengthen your Azure Logic App monitoring so you have powerful tools and actionable insights to troubleshoot issues.

Stay tuned for the following Logic App Best practices, Tips, and Tricks. In the next one, we will be explaining step-by-step these try-catch capabilities using Scopes.

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.

2 thoughts on “Logic Apps Best practices, Tips and Tricks: #4 Using Scopes”

  1. Thanks Sandro. Really great insights into using the Scopes in the logic apps.

    I was trying to use ‘Initialize variables’ in the scope but seems its now allowed. If I have 10 variables for example, the logic app looks quite big and I cant minimize these shapes.

    Wondering if you have any suggestion in this context.

    Many Thanks
    Naresh

  2. Hi Naresh, you are correct. Initialize Variables cannot be created inside Scopes. They have to be created in the beginner of the Logic App and yes, if you have many Variables, your logic app will be bigger because you cannot collapse that amount of Initialize variables shapes.

    I may have some strategies to minimize this problem that I’m going to write soon but there isn’t a proper and good solution at the moment.

Leave a Reply

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

turbo360

Back to Top