dynamic-crm

Posts in this category.

MDA: Enable SLA for Custom Entity and learn how to use SLA

Oct 7, 2023

SLA (Service Level Agreement) is a feature where you can define the satisfaction level of your service or support based on certain measurable metrics. For example, if someone sends a complaint to you, you need to respond to the complaint in 2 hours. We can apply this logic using...

Learn how to use Dataverse Background operations (preview)

Sep 23, 2023

Let's learn how to use Dataverse Background operations (preview). For those who don't know, this is a way to call our custom API via background task (system job). Unfortunately, this method is not a way to bypass a two-minute execution time-out. For me, this feature is more of a...

MDA: Add confirmation and validation async onSave

Sep 15, 2023

I just learned that in Model Driven Apps (MDA), we can enable async OnSave handlers. Why does it matter? The simple answer is the majority of the API(s) around it also changes to become async as well. For example, in certain conditions of the record, we want to show confirmation...

Using PowerFX with commands for cloning records with N to N relationship

Sep 2, 2023

Today we will learn how to create a command bar to clone a record with many-to-many relationships. For those who don't know, in Model-Driven-Apps, we can create a command bar (previously known as "ribbon button") that uses PowerFX (low code) query. First, I created 2 tables for...

Dataverse: SSIS vs. ExecuteMultipleRequest

Aug 26, 2023

I am always curious to try SSIS (as mostly my experience is on customizing CRM CE/Dataverse side) as people are always telling me how fast it is to process large data. So today, we will learn and compare ExecuteMultipleRequest vs. SSIS. In the SSIS part, we will be using...

How to call OnPremise WebAPI from Canvas App

Aug 13, 2023

In a time where technology is very fast changing, I see some of the Organizations that still rely on so-called legacy systems or probably still depend on systems that just run on their network (on-premise). So, today, we will learn how to call on-premise WebAPI from Canvas Apps....

MDA: Open Lookup Record In SidePane

Jul 22, 2023

I've got a request from my friend about how to implement opening a lookup in the side pane. For this requirement, we must implement the addOnLookupTagClick, the createPane, and the navigate functions. Without further ado, let's see how to do it! First, we will use the Task table...

Dataverse: The Importance of OrderBy When Retrieve more than 5k records

Jul 15, 2023

Lately, I've been playing with retrieving large sets of data from Dataverse. The total records that I need are more than 50k records (if you are using FetchXML, you can get the method here). But somehow seems like Dataverse limits my total records and here is how we fixed it. As...