Posts

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 in a Canvas app using Power Automate and save it to a SharePoint location.

Image
·     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: AddMediaButton1 .Media,                     name: AddMediaButton1 .FileName                 }             )   Click on 3 dots Select PowerAutomate Create a power Automate flow with CreateDocument...

Receive Incoming Message in Twilio using Power Automate

Image
  In this blog we will learn how to read when an incoming message received in Twilio using Power Automate. ·        Power Automate Flow creation. ·        Configuration power automate flow URL in Twilio.   Power Automate Flow creation. Open https://make.powerapps.com/   and create a new automated flow in Power Automate using the "When an HTTP request is received" trigger. To do this, search for "HTTP" and select the HTTP request trigger, as shown below. Give the required flow name and click on Create. Next add Compose compound and add below formal  to read input from above step. decodeUriComponent(string(triggerBody())) Next to read received message, from number and to number we need each initial variables in flow. From Number add below formal in value:  first(split(split(outputs('Compose'), 'From=')[1], '&')) To Number add below formal in value : first(split(split(o...

Azure Function to Read Incoming Message in Twilio

Image
  Introduction In this tutorial, we will learn how to read incoming message in Twilio and respond to webhooks using Azure Functions. We will learn what is webhooks, how to set up an Azure Function, and then use Azure Function app to respond to a Twilio SMS webhook and create a record in dynamic 365 in case entity when new message received. Prerequisites: A Twilio account.  An Azure account with an active subscription. Dynamic365 subscription. What is webhook? Webhook is an HTTP request triggered by an event in a source system and sent to a destination system. To enable this, you provide the source system with a URL where it can send the HTTP request. A typical webhook setup involves the following: A destination system that needs to be notified about a specific event. A source system that sends a notification to the destination system when the event occurs. This system uses the provided webhook URL to make the HTTP request. In your ...