Category Archives: Dynamics 365, Business
How to use Contact email and Sent email functionality on Vendor, Customer, and its Contacts?
Introduction: Contact email functionality is used in order to send emails to customers, vendors, and their contacts. Steps to achieve the goal: Go to Customers / Vendor and its Contact page there is action called as Contact By Email Then click on Contact by Email action. You will be able to get the email based … Continue reading How to use Contact email and Sent email functionality on Vendor, Customer, and its Contacts?
Share Story :
C# Code to retrieve lookup value id from target entity in D365 CE.
Let us consider below example as use case We have Plugin that triggers on Update of Contact Table and wanted to retrieve Customer related to Contacts. Customer is Lookup field on Contact Table. Hence here our target entity is Contact. Code – Entity targetEntity = (Entity)context.InputParameters[“Target”]; Guid ContactId = targetEntity.Id; Using the above code … Continue reading C# Code to retrieve lookup value id from target entity in D365 CE.
Share Story :
Inventory Adjustments in Business central using Inventory Documents
Introduction: To adjust your inventory there is another ability provided by Business central using Inventory Documents. We can do positive and negative adjustments using Inventory Receipts and Inventory shipments respectively. Steps to achieve the goal: First, we need to set up the number series for Inventory Receipts and Inventory Shipments and Posted Inventory Receipts and … Continue reading Inventory Adjustments in Business central using Inventory Documents
Share Story :
Let’s get started with Azure Function for Dynamics 365 CRM: Part 1
In this blog, we will learn how to create an Azure Function App to connect it with Dynamics 365 CRM and perform the CRUD operation in Dynamics 365 CRM. First, we will create an Azure Function project for Dynamics 365 CRM from Visual Studio, and below are the steps for the same. Open Visual Studio … Continue reading Let’s get started with Azure Function for Dynamics 365 CRM: Part 1