Latest posts
-
Dynamics 365 – Import Bulk Data using Excel Template
Excel templates are pre-formatted spreadsheets that contain data fields and formulas that match the structure and logic of Dynamics 365 entities and attributes. By using Excel templates, you can easily import bulk data into Dynamics 365 without having to manually map each column or field. You can also use Excel templates to analyze and share Read more
-
Power Automate – Linked Entity Attributes
Linked entities in FetchXML are entities that are related to the primary entity specified in the FetchXML query. Linked entities allow you to retrieve data from multiple related entities in a single query, and to traverse the relationships between entities to retrieve related data. When you are filtering records in Power Automate with FetchXML you Read more
-
Dynamics 365 | Plugin vs Workflow Execution Order – Which runs first?
When extending the backend of Dynamics 365, it is important to understand the execution order of Plugins and Workflows, especially when you have specific backend steps that need to run in a specific order. Once you understand the concept of stages and ranks of plugins and workflows, it becomes easy to understand which one runs Read more
-
Azure Cache for Redis Toolkit
I created a collection of Azure Functions for managing the Azure Cache for Redis service, including functions to delete, add, get and flush cache entries. It’s simple to implement and use. Check it out 😉 https://github.com/adessoTurkey-dotNET/azure-cache-service-toolkit This repository contains a collection of HTTP triggered Azure Functions for managing the Azure Cache service. The following functions Read more
-
Dynamics 365 – Retrieve Multiple Records with WebApi and JavaScript | xrm.webapi.retrieverecord
The Xrm.WebApi in Dynamics 365 facilitates interaction with the platform through web services. Its retrieveMultipleRecords function retrieves a collection of records in a single API call, enhancing efficiency. This method requires the entity logical name and an OData query as parameters, allowing for filtered data retrieval. Upon execution, it returns a promise that resolves to… Read more
-
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 for a data migration or Read more