In the previous article, I explained what Chain of Command is, and how to use it in Microsoft Dynamics 365. I provided a basic example of Chain of Command, and explained what pieces are required. In this article we will look at an example of how to implement Chain of Command for Form methods. https://youtu.be/U0dG1mg118c... Continue Reading →
Chain Of Command For Class Methods in D365
In the previous article, I explained what Chain of Command is, and how to use it in Microsoft Dynamics 365. I provided a basic example of Chain of Command, and explained what pieces are required. In this article we will look at an example of how to implement Chain of Command for Class methods. https://youtu.be/3LtUdjIhNIY... Continue Reading →
Chain Of Command In D365 Fundamentals
What is Chain of Command in D365? Chain of Command is the term that describes how we customize, or extend, base Microsoft code in Microsoft Dynamics 365. Microsoft's base objects and code cannot be changed directly in D365. However, we are able to make changes to separate objects and classes that are then combined with... Continue Reading →
SysOperation Framework in D365
SysOperation Framework In D365
Create A Complex Service In D365
In a previous article we looked at how to setup Postman to call a existing D365 service. We then reviewed the steps to create a new custom service in Dynamics 365 F&S. However that was a very basic service. Finally in this article we will create a complex service in D365. Do you need to... Continue Reading →
Create a Custom Service in D365
In the last article we looked at how to setup Postman to call D365 services. We called a simple existing service. In this article I will show you how to create a custom service in D365. Unlike calling a Data Entity which can create or retrieve data from tables, services allow us to run code... Continue Reading →
Organize Projects By Element Type in Visual Studio for D365
If you are developing code Visual Studio for Microsoft Dynamics 365, you may end up adding a lot of objects to your project. The list of objects can quickly become cluttered. This can make it hard for you to quickly find the object you are looking for. In this article I will show you how... Continue Reading →
Setup Postman To Call D365 Services
https://www.youtube.com/watch?v=OLCl0zf7Cjc In this article we will look at how to setup Postman to call D365 services. In past articles we looked at how to use Postman to call D365 Data entities, and this is great when you just need to push in data. However, sometimes you need to need to be able to call D365... Continue Reading →
Setup Postman To Call D365 Data Entities
https://www.youtube.com/watch?v=JSI3YEKgiWY https://www.youtube.com/watch?v=IbY3UZQFE4Q If you are writing an integration into D365 you may want to setup Postman to call D365 data entities. This will allow you test the data entities and see what data your receiving application will retrieve without waiting to ask the receiving application to make the call. The last article, we completed the... Continue Reading →
Return JSON From D365 Business Events:
D365 Business Events are intended to return a small amount of data. To return complex data we can return JSON data from the D365 Business Events.