Tag Archives: PowerApps

You can bypass custom plugin logic, but you need permissions to do so

As you are probably aware, you can bypass custom plugin execution logic in your code by adding this kind of code: request.Parameters.Add(“BypassBusinessLogicExecution”, “CustomSync,CustomAsync”); This is as per the link below: Bypass custom Dataverse logic – Power Apps | Microsoft Learn What I did not realize, though, is that the user account running this code needs… Read More »

Form OnLoad vs OnDataLoad

There are two different onLoad events in the client-side XRM framework, and I did not know that… Well, it’s better to find it out late than never 😊 https://learn.microsoft.com/en-us/power-apps/developer/model-driven-apps/clientapi/reference/executioncontext/geteventsource Here is how it works: Actually, I used to think OnLoad does what OnDataLoad do. Maybe it used to do it? Not sure. Either way, when… Read More »

Here goes an unusual combination of old and new technologies, sprinkled with a bunch of howto-s

We don’t always get to choose the technology we work with in the Power Platform world. Strict security, missing subscriptions, long approvals… if you’ve ever worked on the government projects, you know the drill. However, sometimes, this leads to a very unusual combination of tools and technologies, and, in this series of posts, I’m going… Read More »