Tag Archives: dynamics

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

D365 – Web Services

Dynamics 365 offers two web services: Discovery Web Service Retrieve List of Instances or Organization for given Credentials Organization Web Service Connect to each Instance or Organization and perform all basic CRUD and advanced message operations Each of this service … Continue reading

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

D365 – Architecture Overview

Following is an overview of D265 CRM architecture. Understanding the architecture is important to understand the entire ecosystem of development tools here. So the first dotted line separates the client side components from the server side components. Wherever you see … Continue reading

Posted in D365 Customer Engagement (CRM), D365 Development, Microsoft Dynamics 365 | Tagged , , , , , , , , , , | Comments Off on D365 – Architecture Overview

D365 – How To Create A Publisher And Solution?

To be able to start customizing the system in Dynamics 365, you must first create a Publisher and then a Solution. Publisher is a Company Profile, whereas Solution is the work area, which you can later package and import in … Continue reading

Posted in D365 Customer Engagement (CRM), D365 Development, Microsoft Dynamics 365 | Tagged , , , , , , , , , , | Comments Off on D365 – How To Create A Publisher And Solution?

How to create records using workflows in Dynamics 365?

Scenario: In a large organization, it’s getting difficult to manage leads follow-ups because of the high volume. The organization is using D365. Most of the salespeople forget to follow-up with leads on time and hence the leads-to-customer conversion is going … Continue reading

Posted in D365 Customer Engagement (CRM), D365 Tips & Tricks, Microsoft Dynamics 365 | Tagged , , , , | Comments Off on How to create records using workflows in Dynamics 365?

What are the types of workflows in Dynamics 365?

Background Workflow (Asynchronous) Note: It is now recommended to use Microsoft Flow instead of background workflow. In the screenshot above you can see the background workflow. Let us discuss each option in detail: Process Name It is the name of … Continue reading

Posted in D365 Customer Engagement (CRM), D365 Tips & Tricks, Microsoft Dynamics 365 | Tagged , , , , , | Comments Off on What are the types of workflows in Dynamics 365?