Azure Logic Apps: retrieving the exception details of an action group in a flow
Image Source: Shutterstock.com
Mar 1, 2023 3:03 PM

Azure Logic Apps: retrieving the exception details of an action group in a flow

External Blog Post

In Azure Logic Apps (and in Power Automate too) to execute actions only if another group of actions succeed or fail, you can group those actions inside a scope.

In Azure Logic Apps (and in Power Automate too) to execute actions only if another group of actions succeed or fail, you can group those actions inside a scope. This structure is useful when you want to organize actions as a logical group, evaluate that group’s status and perform actions that are based on the scope’s status. After all the actions in a scope finish running, the scope also gets its own status.

Using the scopeaction is a must when creating complex workflows and scopes permits you to implement error handling in cloud workflows (something like a Try-Catch method in C#). But how can you implement a good error handling with scopes?

When I have a cloud workflow, I love grouping actions together and when an action fails, I often want to retrieve the error detail and log it or send details about the exception to other systems (email message, Teams message, Application Insights logging and more).

Open full article

Azure Logic Apps: retrieving the exception details of an action group in a flow – Stefano Demiliani

Feb 17, 2023 — How to handle errors and exceptions that happen in automated tasks and workflows created by using Azure Logic Apps.

Oct 3, 2022 — Run actions based on group status by using scopes in Azure Logic Apps ... Diagram shows the logic app scope flow with examples of "Scope ...

Sep 28, 2022 — How to troubleshoot and diagnose problems, errors, and failures in your workflows in Azure Logic Apps.

May 5, 2022 — In BizTalk you group the Actions in Scope and add the Exceptions. Similarly, In Logic Apps, we can do the Exception Handling using different ...