dynamics-crm
Posts in this category.
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 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...
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...
Apr 8, 2023
Today we will learn how to use the conditional operator "Or" when applying addPresearch in Javascript (but you also can implement it from the backend too). The scenario that we will apply is, on the Contact table, we have a lookup to Parent Contact/Account. In the below image, we...