Category Archives: D365 Customer Engagement (CRM)

How to identify if a row was created or modified in power automate flow and “Switch” accordingly?

Suppose we’re working with the Accounts table in Power Automate, and we want to handle two different scenarios within a single flow: one when an account record is created, and another when it’s modified. Instead of creating two separate flows, … Continue reading

Posted in D365 Customer Engagement (CRM), D365 Tips & Tricks, Power Automate | Leave a comment

How to work around Business Closure time zone discrepancy?

Issue Description The following issue has been observed at the time this article is written and depending on when you are reading it, the issue may have been resolved by Microsoft! The article outlines a time zone-related issue when setting up business … Continue reading

Posted in D365 Customer Engagement (CRM), D365 Project Operations, D365 Tips & Tricks | Leave a comment

How to hide +New option from lookup fields in D365?

In a Model-Driven App, a lookup field is a special type of field that allows you to reference records from another entity or table. Essentially, it enables linking data across different entities or tables. Typically, lookup fields include a “+ New” option, which lets … Continue reading

Posted in D365 Customer Engagement (CRM), D365 Customer Service, D365 Project Operations, Power Platform | Tagged , , , | Leave a comment

How to work with custom help panes and guided tasks?

You can configure a custom in-product help experience in Dynamics 365 that is tailored to your organization. Use custom help panes to provide table, form, and language-specific help and guidance that includes rich text, content links, images, and video links. … Continue reading

Posted in D365 Customer Engagement (CRM), D365 Tips & Tricks, Microsoft Dynamics 365 | Tagged , , , , | Comments Off on How to work with custom help panes and guided tasks?

How to work with Global Custom Help URL & Table Help URL?

Microsoft Dynamics 365 for Customer Engagement provides you with two options when it comes to help features. However you can enable and use one of the feature at a time. These features are: Custom help for customizable entities Custom help … Continue reading

Posted in D365 Customer Engagement (CRM), Microsoft Dynamics 365 | Tagged , , , , , , | Comments Off on How to work with Global Custom Help URL & Table Help URL?

How to add sample data in Dynamics 365 Customer Engagement?

To install sample data in Dynamics 365, perform the following steps: Classic Environment If you are using classic environment: Go to Advanced Settings Click Data Management Click Sample Data In the pop up window, click Install Sample Data Note: To … Continue reading

Posted in D365 Customer Engagement (CRM), D365 Tips & Tricks, Microsoft Dynamics 365 | Tagged , , , , , | Comments Off on How to add sample data in Dynamics 365 Customer Engagement?

D365 – Plug-in Deploying and Testing

In the previous blog “D365 – Pug-in Writing Code” we saw how we can write the Plug-in code. Now let us see how we can deploy and test the Plug-in. Note: The .NET Framework used in this case was 4.7.1. … Continue reading

Posted in D365 Customer Engagement (CRM), D365 Development, Microsoft Dynamics 365 | Tagged , , , , , , , , , , | Comments Off on D365 – Plug-in Deploying and Testing

D365 – Pug-in Writing Code

So in our last blog “D365 – Create Plugin Template” we saw, how we can create a plug-in template in visual studio. Now let us see how we can move forward and write plug-in code. So, the idea is that … Continue reading

Posted in D365 Customer Engagement (CRM), D365 Development, Microsoft Dynamics 365 | Tagged , , , , , , , , , , , | 1 Comment

D365 – Create Plugin Template

How to develop a Plugin? You need to have Visual Studio Community Edition: https://visualstudio.microsoft.com/free-developer-offers/ Create a Class Library project for C#. Download required assemblies using NuGet Package Manager. Add a reference to Microsoft.Xrm.SDK.dll. This assembly is available in SDK. You … Continue reading

Posted in D365 Customer Engagement (CRM), D365 Development, Microsoft Dynamics 365 | Tagged , , , , , , , , , , | Comments Off on D365 – Create Plugin Template

D365 – Understanding Plug-in Pipeline

What is a Plugin? Plug-in is a class library or set of classes. And when you compile a set of classes you get something called DLL file or Assembly file. This assembly file has some custom code and we register … Continue reading

Posted in Business Central, D365 Customer Engagement (CRM), D365 Development, Microsoft Dynamics 365 | Tagged , , , , , , , , , , | Comments Off on D365 – Understanding Plug-in Pipeline