#dynamicscrm365

Posts tagged with this topic.

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

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

(Preview) Let's try Dataverse Formula Column

Jun 24, 2023

Today, we will learn how to use Dataverse Formula Column where I think we can implement engaging scenarios. The scenarios are: Searching Related Table (Entity) Filtering lookup based on Selected Table Attribute When I search this one, I found an interesting part in Joe Gill's...

Share File into Power Virtual Agents from Dataverse File data type

May 20, 2023

For example, you have a table in Dataverse and let the user upload a File into it. Then, when other users interact with PVA (Power Virtual Agent/Chat Bot), we will allow the user to see/download the file. The flow of the scenario will be like the below image: As you can see, we...

Power Automate: Working with DateTime to Dataverse

May 6, 2023

As you know, working with DateTime is never an easy task. Especially if you also combine your Power Automate flow with Dataverse (which by default support showing DateTime based on the System User > Time Zone setting). So, today I will show a little bit of knowledge that I got...

MDA: How to invoke the formOnLoad event after saved

Apr 21, 2023

On form on load event, it is very common to set how the UI looks based on certain conditions. For instance, when the status of the entity/table is Inactive, we need to lock all the controls. So, today we will learn how to do it via JavaScript (client scripting). Without further...

Model-Driven-Apps: Implement Editable Grid and learn how to customize it

Dec 24, 2022

Let's learn how to implement Editable Grid and apply simple customization. As the name, the Editable Grid is a grid where we can do inline editing. In this blog, I create a custom table where we will implement the below scenario: - On Qty or Unit Price changed, set Total with...