Tag: Dynamics 365
-
Dynamics 365 – Retrieve More than 5000 records with FetchXML
When you’re working with Dynamics 365, you may have encountered a limitation when it comes to retrieving records. The maximum number of records that can be retrieved in a single query is 5.000. This can be a problem if you need to retrieve a large number of records, such as…
-
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…
-
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…
-
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…
-
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…
-
Dynamics 365 – Switch Forms Dynamically by Using JavaScript | formselector
In CRM it is common that showing different forms to different user gropus. There might be some conditions that you check to switch and show different forms to users. For cases like these, formSelector() and navigate() functions save the day. formselector.items collection: A list of all the forms accessible to the…