#dataverse

Posts tagged with this topic.

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

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

About Power Platform CLI Solution Command

Jun 2, 2023

We can use tons of remarkable commands in Power Platform CLI that can be very useful. For example, when changing Localization. Instead of doing it in the usual way which needs to change the Personalization Settings > Languages > Base Language: Then we need to go to the component...

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: Testing JS changes without deploying

Apr 29, 2023

Our routine as Developers, if we get a new task/bug, is "change the code", "deploy", and "validate". For the front scripting, if we don't have the tool to help us update the necessary file easily, we need to open the JS component > update > deploy and publish > then go to the...

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

How to install Dynamics 365 Report Authoring Extension from Scratch

Apr 15, 2023

I rarely create/update reports. And to be honest, my knowledge actually stuck on creating reports using "Report Builder" which at that time we still used the On-Premise version to query the things we needed to make the report. While the latest version uses Fetch XML and forces us...