Latest posts
Notes on code and the things I build.
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...
Jul 8, 2023
For those who don't know, we already have UpsertRequest for so long (I learned how to use it correctly in this blog post that you can read here). UpsertRequest is a feature where we can request Dataverse to create or update the data based on columns that we are defined. In...
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...
Jun 11, 2023
Today, we will try the experience of creating Automated plug-ins using the latest Low Code Plugin from this documentation. For today's demonstration, I made the below tables (Header and Details) to do simple calculations (maybe). Prepare the Environment Before we start making the...
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...
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...
May 14, 2023
I got a request to basically create PCF for Two OptionSet (boolean) with the main purpose is to keep Yes, No, and Null/Empty values. If you get the requirement, making it is not hard. But, usually in the project, we also need to support multi-languages. There's an article from...
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...
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...
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...