Posts in this category.
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...
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 23, 2021
The most common requirement that usually we need to apply is filtering the lookup dynamically based on the state of the current attribute. For example, you have a Custom Approval entity (table) that got a lookup to Customer and Custom Document. Then when the user on the Custom...
Apr 16, 2021
How many of you already know about PCF (PowerApps Component Framework) control? A framework that lets us (developers) create customized UI to be used in PowerApps. Because we are talking about customized UI and I'm a pure programmer, making use of Bootstrap is always a way to go...
Apr 9, 2021
If you ever make a product based on Dynamics CRM and needs to use multiple environments + solutions for multiple projects. But still willing to achieve tidy + clean solutions when registering events. Here is my recommendation on how to do it without needing to heavily rely on...
Apr 2, 2021
On my blog, one of the most viewed posts is Dynamics CRM Plugin Development: Pre-Operation vs Post-Operation. This makes me realize that I need to create another blog post about plugin development, in general, to let you know the dos and don'ts in plugin development (in a general...
Mar 26, 2021
Do you know that we can do UI Testing easily in Dynamics CRM? In this blog post, we will learn about how to set up a solution project for doing UI testing using the PowerApps.UIAutomation.Api nuget package. Like the naming, UI testing means that testing that being done...
Mar 19, 2021
Do you know that in Xrm.Utility object now has a nice function called lookupObjects? When we call this function, it will help us open a nice dialog that lets us choose (single or multiple) records and return to us an array of the selected data. We can pass lots of combinations of...
Mar 12, 2021
Last week, we already learned how to build a simple code to get data from Web-API to project the result in RetriveMultiple message that you can access here. Now we will continue to implement advanced scenarios for filtering, sorting, and paginating the data. Filtering + Sorting...