#dynamicscrm

Posts tagged with this topic.

General Tips on Dynamics CRM Plugin Development

Apr 2, 2021

On my blog, one of the most viewed posts is Dynamics CRM Plugin Development: Pre-Operation vs Post-Operation. This makes me realize that I need to create another blog post about plugin development, in general, to let you know the dos and don'ts in plugin development (in a general...

Dynamics CRM: Setup PowerApps.UIAutomation.Api for The UI Testing

Mar 26, 2021

Do you know that we can do UI Testing easily in Dynamics CRM? In this blog post, we will learn about how to set up a solution project for doing UI testing using the PowerApps.UIAutomation.Api nuget package. Like the naming, UI testing means that testing that being done...

Exploration: Dynamics CRM Client Scripting - Xrm.Utility.lookupObjects

Mar 19, 2021

Do you know that in Xrm.Utility object now has a nice function called lookupObjects? When we call this function, it will help us open a nice dialog that lets us choose (single or multiple) records and return to us an array of the selected data. We can pass lots of combinations of...

Dynamics CRM: Integrate to Other Source System Easier using Power Automate

Feb 20, 2021

I have a lot of experience integrating Dynamics CRM with the other source systems that required a lot of code to be built in the plugin. We need to connect to Web API > parse the response > mapping the response > then verify the result. If you ask me to do it in the code, sure it...

Dynamics CRM 365 Tips: Easy Way to Get AliasedValue

Jan 29, 2021

Have you ever joined multiple tables when retrieving your data in the plugin? If so, most likely you already know what AliasedValue is all about. This post will describe when and how you can use AliasedValue. But the objective of this post is to make a simple extension to consume...

Creating Better PCF Component - Part 3

Nov 30, 2020

With all the things settled, now we can continue our journey to make our PCF-Component better. The last commit that we submitted, there are few things that we can enhance: When you choose an image file, then click the Submit button. We can reset the input file. Hide the...