dynamic-crm

Posts in this category.

Dynamics CRM: Integrate to Other Source System Easier using Power Automate

Feb 20, 2021

I have a lot of experience integrating Dynamics CRM with the other source systems that required a lot of code to be built in the plugin. We need to connect to Web API > parse the response > mapping the response > then verify the result. If you ask me to do it in the code, sure it...

My Attempt to Implement Data Concurrency In Dynamics CRM

Feb 13, 2021

One of the hardest things to implement in Dynamics CRM is data concurrency. When multiple people are updating the same data, by default CRM will still allow it. But there is always a scenario where we want to prevent this thing and there is no simple way to implement it in...

Dynamics CRM: Simplify Development with Custom API for Reusability

Feb 5, 2021

Dynamics CRM introduced a preview feature (Custom API) for developers to make code reusability easier. For instance, the function that I used a lot is to take the current user's Teams. I always have a requirement if the User is under team "A", then some attributes need to be...

Dynamics CRM 365 Tips: Easy Way to Get AliasedValue

Jan 29, 2021

Have you ever joined multiple tables when retrieving your data in the plugin? If so, most likely you already know what AliasedValue is all about. This post will describe when and how you can use AliasedValue. But the objective of this post is to make a simple extension to consume...