Microsoft Azure Fundamentals #5: Complex Error Handling Patterns for High-Volume Microsoft Dataverse Integrations in Azure

๐Ÿš€ 1. Problem Context When integrating Microsoft Dataverse with Azure services (e.g., Azure Service Bus, Azure Functions, Logic Apps, Azure SQL, or Data Lake) under high transaction volumes, transient errors, throttling, and message delivery failures are inevitable. Without a well-designed error handling strategy, you risk: Lost or duplicated data Stuck integration queues Orphaned records Non-deterministic …

Continue reading Microsoft Azure Fundamentals #5: Complex Error Handling Patterns for High-Volume Microsoft Dataverse Integrations in Azure

Microsoft Azure Fundamentals #3: Maximizing Event-Driven Architecture in Microsoft Power Platform

๐Ÿงฉ 1. Overview Event-driven architecture (EDA) transforms how systems communicate.Instead of traditional requestโ€“response or batch integrations, it enables real-time reactions to business changes โ€” making systems more scalable, decoupled, and reactive. In the Microsoft Power Platform ecosystem, this is best achieved by integrating: Dataverse Change Tracking (source of truth for data changes) Azure Event Grid …

Continue reading Microsoft Azure Fundamentals #3: Maximizing Event-Driven Architecture in Microsoft Power Platform

Power Pages Fundamentals #24: Boosting Portal Security with Azure Single Sign-On: Quick Read Series

Contoso Motors is a large automotive service company.They have built a Power Pages customer portal for their external partners and customers to: Book service appointments View vehicle status Access invoices and history Currently, Contosoโ€™s portal uses basic authentication. Customers have to create separate portal credentials โ€” leading to confusion, forgotten passwords, and high support requests. …

Continue reading Power Pages Fundamentals #24: Boosting Portal Security with Azure Single Sign-On: Quick Read Series

Microsoft Azure Fundamentals #1: Creating External Tenants in Entra ID: A Step-by-Step Guide

It is important to configure external tenants for different scenarios. In this post we can see how to create a tenant step by step so that it can be used as an example creation of external Entra ID in Power Pages integration instead of Azure B2C for external users. Step 1 : Login to https://entra.microsoft.com/

Continue reading Microsoft Azure Fundamentals #1: Creating External Tenants in Entra ID: A Step-by-Step Guide

Power Pages Fundamentals #21: Power Pages CRUD Operations Guide with WebAPI: Quick Read Series

In Power Pages CRUD operations is a common scenario for any implementation with WebAPI. I will explain this step by step process with the example of creation and updating and deletion of dataverse records. Step 1 : Go to Power Pages studio and add a new page and then provide the name as CRUD operations …

Continue reading Power Pages Fundamentals #21: Power Pages CRUD Operations Guide with WebAPI: Quick Read Series

Power Pages Fundamentals #19: How to Use Liquid and FetchXML in Power Pages: Quick Read Series

In Power Pages one common scenario was to query dataverse and get details of a record based on some filter condition. This can be achieved in power pages with the combination of liquid and fetchxml .I will explain this by taking a small scenario to display account records which has name as test. Step 1 …

Continue reading Power Pages Fundamentals #19: How to Use Liquid and FetchXML in Power Pages: Quick Read Series

Power Pages Fundamentals #18: Display Dataverse Records in Power Pages with Liquid Template: Quick Read Series

In many Power Pages requirement a common requirement is to show list of records related to a table that is present in dataverse. To achieve this functionality in power pages we have predefined object called entityview . With the help of this object list of records for a given dataverse table can be shown. As …

Continue reading Power Pages Fundamentals #18: Display Dataverse Records in Power Pages with Liquid Template: Quick Read Series

Power Pages Fundamentals #17: Dynamic User Greeting in Power Pages with Liquid Template: Quick Read Series

In most of the applications it is a common thing to show logged in user name on the top of the page somewhere at corner right . In Traditional Microsoft's ASP.NET we use GetUserId() method present under Identity libraries present in Microsoft . Then how can we achieve similar functionality where we can write some …

Continue reading Power Pages Fundamentals #17: Dynamic User Greeting in Power Pages with Liquid Template: Quick Read Series