Latest posts

  • Dataflows – Import Bulk Data or Copy Data Between Environments for Dynamics 365 and Dataverse

    What is dataflow? Dataflows are a feature of the Power Platform that allows users to extract, transform, and load data from a variety of sources. They provide a simple and efficient way to bring data into the Dataverse. One of the key benefits of dataflows is that they allow users to perform complex data transformations Read more

  • Parsing JSON in Power Automate Cloud Flows

    JSON, or JavaScript Object Notation, is a widely-used data interchange format that allows for the exchange of structured data between applications. It is easy to read, easy to understand, and can be parsed and accessed quickly and efficiently. In Power Automate flows, JSON can be used to pass data between different stages of a flow Read more

  • Power Automate Flows vs Azure Logic Apps. Which one should we use?

    When it comes to creating modern automated workflows for Dynamics 365 or other dataverse applications, the first option that comes into the mind is surely Power Automate flows. Since its replaced old legacy workflows for Dynamics 365, we started building more complex workflows easier and quickier. But Power Automate flows may not be always the Read more

  • Dynamics 365 – Hide/Disable/Edit Business Process Flow Fields using JavaScript

    In Dynamics 365, Business Process Flow attributes are just like Form attributes. You can use most of the controls in the same way as you normally do for Form attributes. Let’s look at the most common ones together. Get Business Process Flow attribute control using Javascript To get attributes Add “header_process” before schema name of Read more

  • Dynamics 365 – Call Power Automate Flow from JavaScript

    In this post I will show the steps to call Cloud(Power Automate) flow from Javascript. I will send a JSON request body to my flow and get a JSON response body back. We will do that in 3 simple steps. Let’s start. Step 1 – Create a Power Automate Flow Go to https://make.powerautomate.com/ and choose Read more

  • SharePoint Online API – Get Access Token with Client ID and Secret – Part 2

    In Part 1 of this post we created our SharePoint add-in and added permissions to it. We now can start using the SharePoint Online API. With using PnP Framework library Add the PnP Framework library nuget package to use the below code: https://www.nuget.org/packages/PnP.Framework With using Postman appReg_clientId Your SharePoint add-in Client ID realm Your SharePoint Tenant Read more