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 → The post Create A Complex Service In D365 appeared first on Dynamics 365… 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 → The post Create a Custom Service in D365 appeared first on Dynamics 365 Musings. 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 → The post Organize Projects By Element Type in Visual Studio for D365 appeared first… Continue Reading...
Setup Postman To Call D365 Services
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 code… Continue Reading → The post Setup Postman To Call D365 Services appeared first on Dynamics 365 Musings. Continue Reading peter.ramer’s Article on...
Setup Postman To Call D365 Data Entities
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 setup steps… Continue Reading → The post Setup Postman To Call D365 Data Entities… 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. The post Return JSON From D365 Business Events: appeared first on Dynamics 365 Musings. Continue Reading peter.ramer’s Article on their blog Return JSON From D365 Business Events: – Dynamics 365 Musings D365 Business Events are intended to just return a small amount of data to a...
Use Postman To Call D365 Data Entities
If you are writing an integration into D365 you may want to use 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. Other Resources The steps in this article can… Continue Reading → The post Use Postman To Call D365 Data Entities appeared… Continue Reading...
How To Setup A Custom D365 Business Event
Create a Custom D365 Business Event In the last two posts, we setup a D365 Business Events endpoint, we associated it with the actual event and then we enabled the business events to be processed. But what if you need a custom D365 business event to be triggered during a different process than the predefined… Continue Reading → The post How To Setup A Custom D365 Business Event appeared… Continue Reading...
How To Setup D365 Business Event Part 2
Activate A D365 Business Event In the last post we explained how to setup the endpoint for a D365 Business Event. https://dynamics365musings.com/how-to-setup-d365-business-events-part-1/ Continuing that process, we will activate the D365 business event and connect it to the endpoint that we setup. This will cause the D365 business event message to be sent to the endpoint…. Continue Reading… Continue Reading...
How To Setup D365 Business Events Part 1
Setup D365 Business Events First off: What are D365 business events? D365 Business events allow external systems to receive messages from D365 Finance and Operations when certain operations happen within the system. So for instance, perhaps you need an external system to know when a sales order has been invoiced. Using the built in functionality… Continue Reading → The post How To Setup… Continue Reading...