๐งฉ 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 …
Microsoft Azure Fundamentals #2: Designing Real-Time Bi-Directional Sync Between Dataverse and Azure SQL for Multi-Region Deployments
Detailed technical breakdown of designing a real-time bi-directional sync between Dataverse and Azure SQL for multi-region deployments: 1. Overview Real-time bi-directional sync ensures that changes in Dataverse (Dynamics 365) reflect in Azure SQL and vice versa without delays, while supporting multiple regions (geo-distributed environments). This is critical for large enterprises with regional operations or multi-cloud …
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. …
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/ …
Power Pages Fundamentals #23: Prepopulate Case Form with Contact Info via JavaScript and Web API: Quick Read Series
Another common scenario is to work on multiple tables using web api . In this post , we will see how to work with contact and incident(case) table to create a case Step 1 : Create a webpage from power pages studio Step 2: For the 2 tables contact and incident (case) create respective table …
Power Pages Fundamentals #22: Enhance Webpage Efficiency with Content Snippets: Quick Read Series
One common requirement in any website was to show some message like greeting or welcome one particular logged in user with his name and email id. It is not a good idea to always write code in every page which will be redundant while development of all web pages. So, it is always advisable to …
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 …
Power Pages Fundamentals #20: Step-by-Step Guide to Create Dataverse Records in Power Pages: Quick Read Series
In Power Pages to create records and store them in dataverse , we can use power of WebAPI and use it inside liquid in web template. I will explain this step by step process with the example of creation of a contact record from a web page. Step 1 : Go to Power Pages Design …
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 …
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 …
