Posts

Showing posts from February, 2025

How to Export and Import Dynamics 365 Dataverse Records Using Configuration Migration Tool

Image
 In this blog, we will learn how to export and import selected Microsoft Dynamics 365 / Dataverse records using the Configuration Migration Tool . The Configuration Migration Tool is useful when you need to move configuration or test data between Dataverse environments, such as Development, Test, UAT, and Production . It also allows you to create a schema that defines which tables, columns, relationships, and records should be included in the migration. One useful feature is the ability to use FetchXML filters so that you can export only the required records instead of exporting all records from a table. For example, if you have thousands of Account records but want to migrate only accounts where the name is Test , you can use a FetchXML filter during schema creation. What is the Configuration Migration Tool? The Configuration Migration Tool is a Microsoft tool that helps administrators and developers move configuration and test data between Dataverse environments. It can be use...

Upload a Word Document from a Power Apps Canvas App to SharePoint Using Power Automate

Image
In this tutorial, we will learn how to upload a Word document from a Power Apps Canvas App and save it to a SharePoint document library using Power Automate. The solution uses a Power Apps (V2) trigger with a file input. The Canvas App passes the selected file to Power Automate, and the flow uses the SharePoint Create file action to save the document. Navigate to : https://make.powerapps.com/ ·     Create a Canvas app ·     Open the created app ·     Click -->Insert -->Select Media->Add picture. ·     Add below formula OnSelect property. Set(fileType, Lower(Last(Split( AddMediaButton1 .FileName, ".")).Value)); Set(FileName, AddMediaButton1 .FileName);     Button Event OnSelect : CreateDocumentInSharepoint.Run( FileName, fileType,                 {                     contentBytes...