dynamics-crm

Posts in this category.

Dynamics CRM: To Set or Not To Set MaxConnectionTimeOut CrmServiceClient?

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,...

Dynamics CRM: addOnLookupTagClick and removeOnLookupTagClick

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...

Dynamics CRM: Query Hierarchical Data

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...

Azure-MSAL: Implement loginRedirect In Angular+Call CRM Action

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...

Dynamics CRM: Implement Feature Flags in Plugin

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...

Dynamics CRM: ExecuteBatch vs ExecuteMultipleRequest

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...

Dynamics CRM: How To Get The Secure and Unsecure Configurations List

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...