Posts in this category.
Jul 8, 2021
After I post several posts about Custom Web API (Dynamics CRM: Simplify Development with Custom API for Reusability and Get Environment Variable in a Flow using Custom Web API). You should be more clear about how to create the Custom Web API in your environment. Today, we will...
Jul 1, 2021
What is the way that you used Dynamics CRM to call the javascript method after saving the entity? For example, after the record is saved, you want to re-run the form_onLoad function again so you can see the latest state of your controls (set required/hide). Or probably you want...
Jun 24, 2021
Inspired by a blog post by Natraj about "Using Custom API as a trigger for Flow" that you can find here, I am thinking to create a sample collection of Custom Web API that all people can make use of/learn the code (the code design might not be suitable for you, but I open for...
Jun 17, 2021
From the last post, I got a problem when want to call Power Automate Flow using Dynamics CRM Webhook. The problem that I encounter I believe is because there is a certain HTTP header that CRM WebHook not sending. Hence we can't call it. George Doubinski from crmtipoftheday.com...
Jun 10, 2021
Do you know Dynamics CRM Webhooks? The definition from the official documentation: CRM Webhooks is a feature that enables CRM to call other URLs using HTTP patterns with publish/subscribe patterns. , I do not quite agree with the definition because we still can register the...
Jun 2, 2021
One of the most common questions that we as Developers face is about caching the data. On the previous version (on-premise) of Dynamics, when we get a task to cache some data, we will use MemoryCache class. But in the cloud version, because we can't directly access the Server,...
May 25, 2021
Please Register for this event to learn more! If you are a Dynamics CRM Developer, you will agree with me. When creating Dynamics CRM Plugin, you will be thinking there is so much repetitive code that you need to apply when you want to do customization. Automatically what you do...
May 15, 2021
When I check on the official documentation about Xrm.Navigation.openForm, I am interested in attribute formParameters. Where in the docs, stated that we can pass custom value from caller to the form that we want to open. The scenario of it is let's say we want to open dialog...
May 7, 2021
The rise of JSON (JavaScript Object Notion) is so massive and unstoppable. Just last week, on Twitter, I saw this: https://twitter.com/JamesNK/status/1389331192713945091?s=20 JSON format made it possible to do dynamics coding and hassle-free. On the other hand, how we (in the...
Apr 24, 2021
Creating plugin projects in the past is not a simple task. You need to remember a lot of steps to make it. From what I remember the steps are: Create .csproj, set .NET Framework 4.6.2, and Install Microsoft.CrmSdk.CoreAssemblies, etc. You can follow this link for the detailed...