tips

Posts in this category.

MDA: Open Lookup in Side Pane

Aug 24, 2024

On the default mechanism of Lookup control on Model Driven Apps, once the user clicks the value, it will navigate to the record form. And since we already had Xrm.App.sidePanes, it will look interesting to change the default behavior and open the record in the side pane. So,...

Dataverse: Get All Error Rows from Imported CSV

Jul 27, 2024

Quick tips for today if you ever import CSV with huge records to Dataverse. By default, once the System processes the CSV and there are failed records, you can only download 5000 records as the system limits the total exported rows. Failures of more than 5000 If you go to the tab...

(Dataverse) .NET API Implement Multiplexing Strategy

Jul 5, 2024

In some scenarios, we sometimes need to add a middleware (in this case .NET WebAPI) that connects Dataverse to other applications for integration. The reason can vary such as making the connection, request, and response to Dataverse simpler. If the integration loads are high and...

Dataverse: AIReply in action

Jun 16, 2024

Today, we will learn how to use AIReply in action. For those who don't know AIReply is one of Dataverse AI functions that focus on replying to user answers similar to what GPT has. With this uniqueness, we can ask AI to cut steps in feedback creation. In this demonstration, the...

Dataverse Filtering Attributes benchmark

Jun 1, 2024

I heard lots of dos and don'ts about performance enhancement specifically when creating plugins in Dataverse. One of the pieces of advice is about setting the "Filtering attributes" when registering the plugin step so the system will not run unnecessarily process. So, today we...

Dataverse: Query data using Fiscal Period and Year

May 25, 2024

Do you need to query data with the filter based on the Month/Year based on the specified date in your records? Today, we will learn how to query it and hopefully, you can implement it in your future project! For example, we have several records of Sales Order with the below...

Dataverse - Convert UTC Time to User Timezone in Plugin

May 4, 2024

Today, I'll share a quick tip on converting the UTC date to the User's Timezone settings in the Plugin (once you read the logic, you can also implement this logic into Power Automate/Custom API). In Dataverse, we can set our timezone in the below UI (go to Settings > Personalized...