dynamics-crm

Posts in this category.

Creating Better PCF Component - Part 3

Nov 30, 2020

With all the things settled, now we can continue our journey to make our PCF-Component better. The last commit that we submitted, there are few things that we can enhance: When you choose an image file, then click the Submit button. We can reset the input file. Hide the...

Creating Better PCF Component – Part 2

Nov 23, 2020

When I was writing this post, I felt the environment that I set up did not enhance my ability to write code. The reason for this is that I use jsdom, which is a mock object for the HTML component. Because it is not a real object of HTML, my focus has been changed to the test code...

Creating Better PCF Component - Part 1

Nov 16, 2020

This article will give you a deep explanation (step by step) to make a better-quality PCF Component. We can make the PCF component better quality because we design the component to be testable as much as we can (It depends on your knowledge. The more knowledge you have, the more...

Dynamics CRM Model Driven Apps: Simple Tips for registering events in Form

Nov 6, 2020

I started using Dynamics CRM in version 2013. Back then, we all know if we need some retrieving function in JavaScript, we needed to create our library (HttpRequest) or use XrmSvcToolkit. Even in XrmSvcToolkit we actually can set async to true, our tendency will straight to use...

Dynamics CRM Model Driven Apps: Make use of addOnLoad and removeOnLoad

Oct 30, 2020

In this post, we will learn about how to use formContext.data.addOnLoad and formContext.data.removeOnLoad. Generally, formContext.data.addOnLoad function is totally the same as below function (register manually from the form): So the basic question that we will ask is why we need...

Dynamics CRM Model Driven Apps: How to use addOnSave

Oct 23, 2020

As a developer, we need to know what tools we can use to achieve our task as efficient as possible. One of the API that now we want to learn is addOnSave. In short, addOnSave is an API that we can call to register an event to save the event to prevent or allow the changes. For...

Dynamics CRM CDS: The Benefit of SharedVariables

Oct 16, 2020

Have you ever heard about SharedVariables? SharedVariables is an object in IPluginExecutionContext that allows us to set Dictionary (Key-Value) data to be used in the next event execution pipeline. Before, this object was very powerful. We can share SharedVariables across...

Dynamics CRM CE: TDD Plugin Development in Action – Part 2

Jul 3, 2020

For the second part of this blog post series, we will create a more advanced scenario operation. We will create business logic for the SalesOrder to calculate total orders (SalesOrder.Amount and Sum of SalesOrderDetail.Quantity) per Customer in 1 month (based on...

Dynamics CRM CE: TDD Plugin Development in Action - Part 1

Apr 25, 2020

This tutorial will show you how to create the Dynamics CRM CE Plugin using the Test-Driven-Development (TDD) process. I try to make this as a series (from Easy, Intermediate, and Advanced). I will not explain about basic of the definition of TDD because there are lots of...