Found an interested article having in depth analysis of enabling EffinityCooking in Data Verse Requests: Credit : Mark Carrington https://markcarrington.dev/2021/05/26/improving-bulk-dataverse-performance-with-enableaffinitycookie/
How to disassociate N:N (Many to Many) records using rest api in Dataverse
In continuation of my older post where we discussed how to associate/assign role with a user or a team https://vishalgrade.com/2020/09/10/assign-security-role-to-team-and-user-through-rest-api-in-ms-crm/ Let's see how we can remove N to N (Many to Many) tables association using rest api: For example, let's say i want to remove a role from a user which is N to N... Continue Reading →
How to Authenticate Azure APIM API using azure managed identity
If you are exposing azure APIM api then it must be secure. If the api is meant to be used by another azure service, then securing/authorization it using managed identity is the easiest solution to comply with security standards. In the below example, I have some API operations in an APIM api and want to... Continue Reading →
How to capture CRM client side telemetry and send to Application Insights
To log ms crm client side telemetry to Application insights use below code: https://github.com/vgrade/MSCRM/blob/main/Scripts/ClientSideAppInsightsLog.js var thisEntity = window.NameSpace || {}; if (ApplicationInsights === "undefined") { var ApplicationInsights = {}; } ApplicationInsights = { trackApplicationInsight: function (entityName, properties) { var appInsights = window.appInsights || function (config) { function i(config) { t[config] = function () { var... Continue Reading →
Signup for Power Apps Developer plan and never run out of CE trial instances
Signup for Power Apps Developer plan and never run out of CE trial instance as you gets your personal development environment for infinite time : Check out: https://powerapps.microsoft.com/en-us/developerplan/ Direct Link for signing up using your work email: https://signup.microsoft.com/signup?sku=flow_free&origin=powerappscommunity&ru=https%3A%2F%2Fweb.powerapps.com%2Fcommunity%2Fsignup&ispolaris=0
How to download all attachments in MS CRM/Data Verse – MS CRM Attachment downloader XrmToolBox Plugin
Recently I developed my first XrmToolBox Plugin : Attachment downloader for MS CRM ( https://www.xrmtoolbox.com/plugins/AttachmentDownloader/ )which can be used by business users to download attachments from any table in CE. Long ago I developed a windows application to download attachments ( https://vishalgrade.com/2018/01/22/ms-crm-attachment-downloader/ ) which was for on-premise CRM. I was getting many requests to add... Continue Reading →
How to use action as an integration tool in Dynamics 365 CE (CDS/Data Verse)
Action are powerful feature of dynamics 365 which help us to do many things including exposing a wrapper endpoint which can be used for performing any operation in dynamics 365 CE. The exposed endpoint can be called by any system who is authorized to do so. Although we have got a new feature (in preview... Continue Reading →
Join us on telegram
Hi There, hope you are doing great and keeping yourself safe. If you want to connect with the growing community of dynamics enthusiasts, join us on this telegram group: https://t.me/joinchat/F8-w7VrMW7O_1JmK See you there. Stay safe.
How to merge multiple assemblies into one using ILMerge in dynamics CE (CDS/Data Verse) plugin
We often need to use external dll's in CRM plugins which need to be merged into main plugin assembly dll to make it work. Quoting what ms docs says about using any other dll in your plugin apart from dlls which are part of Microsoft.crmsdk.CoreAssemblies: Newtonsoft.Json is primary example of such dll's which is widely... Continue Reading →
How to work with Change tracking in Dynamics CE (Data Verse/CDS)
How to work with Change tracking in Dynamics CE (Data Verse/CDS) Many time you want to retrieved changed records only for integration scenarios from ce. Change tracking feature comes handy in such cases. Let's check how does it works: Step1: Enable change tracking on table from power apps portal: (It's enabled already for account table... Continue Reading →