Posts in this category.
Feb 11, 2022
Do you ever wonder when using CrmServiceClient, why there is a setting for extending the MaxConnectionTimeOut? In my current company, I have faced a timeout issue when CRM process ExecuteMultipleRequest that contains 1000 of data. One thing that I know based on the return error,...
Feb 5, 2022
Today we will learn simple methods that are related to the datatype lookup on CRM: addOnLookupTagClick and removeOnLookupTagClick. Basically, addOnLookupTagClick is a function to register an event when the user is clicking the lookup tag value. Click the Lookup Tag value From the...
Jan 29, 2022
Today, we will learn how to utilize Azure Cognitive Service to help us translate the message to English, create a PowerAutomate Cloud Flow as an API, and push it to Model-Driven-Apps Apps Notification (Preview). System Design One of the scenarios that I can think of is we can...
Jan 22, 2022
The first time I saw this documentation (about sending Log to Azure Application Insight), I wanted to implement it in my environment. But when I tried to set it from the Data Export (Preview) blade, we must have a subscription in the same environment (if you subscribe to Dynamics...
Jan 14, 2022
When we think about integrating Dynamics CRM with other source systems, we can discover there are lots of ways to do it. Today, we will cover one architecture design that we can implement if we want to push the changes from CRM to other source systems. Design Architecture From...
Jan 7, 2022
Just browsing the Microsoft Documentation and am interested to know more about this post. Usually, as a Developer, I always have a requirement to take related data (parent-child) and then do something with it. To fulfill that requirement, I create a method that receives the...
Dec 31, 2021
In this blog post, we learn how to display CRM data in SPA (Vue.js). For that purpose, we are using @azure/msal-browser and calling the loginPopup method whereby as you can see in the demonstration section, it will pop up a form to do the login process. Today, we will learn how...
Dec 24, 2021
"Feature flags" is a mechanism to set the on/off for a feature without changing the code. You can learn more about this from a blog post here. With the Environment variable in place (previously many organizations created their own Config Table), we can implement Feature flags in...
Dec 17, 2021
When working with CrmServiceClient (creating integration custom app to CRM), I always pass this object as IOrganizationService. But when I try to inspect the difference between interface IOrganizationService vs CrmServiceClient class (indeed CrmServiceClient is inherited from...
Dec 11, 2021
First, before we go to the main idea, do you know about Dynamics CRM Plugin Secure/Unsecure Configuration? We can put a string value on our plugin step, and then we can consume those values in our plugin code to do some logic. There are two types of configuration: Secure and...