How To Send D365 Event Emails

Timely confirmations and details are essential for building customer trust. In this article, learn how to send D365 event emails. After a customer or business takes an action, an email confirmation of that action is often expected. Learn how to associate an email template with a predefined event, such as an order being placed, shipped,... Continue Reading →

Create A Call Center Order In D365

Sales orders in D365 can follow several different flows. In this article, learn how to create a call center order in D365. Unlike business-to-business scenarios, call center orders are ideal for orders with retail customers. These orders include default logic from channel setup, a specific step for completing an order, and advanced pricing and payment... Continue Reading →

How To Configure Email In D365

There are several different ways to configure email in D365. Microsoft Graph is now the recommended email provider, replacing the deprecated Exchange email provider. Additionally, you can set up a connection to an SMTP email server. Lastly, the system can generate an .eml file that the user can download. Then the user can use an... Continue Reading →

How To Use D365 SkipDataMethods

Developers in Microsoft Dynamics 365 for Finance and Operations can use the D365 skipDataMethods method to skip the record-specific code and allow the system to perform database operations in bulk. To execute database operations as quickly as possible, developers often use x++ SQL recordset operations such as insert_recordset, update_recordset, and delete_from. However, the system may... Continue Reading →

How To Use Delete_From In D365

In this article, learn how to use delete_from in D365. The delete_from keyword in x++ is used to delete specified records from a table as efficiently as possible. This command is extremely fast because it generates a single SQL statement that is sent to the server once. In contrast, other times developers will write a... Continue Reading →

How To Use Update_RecordSet In D365

In this article, learn how to use update_recordset in D365. The update_recordset keyword in x++ is used when you need to update many records in a table quickly with the best performance. It is extremely fast because it generates a single SQL statement that is sent to the server once. Alternatively, developers sometimes write a... Continue Reading →

Fix D365 Invalid Certificate Error

When using a Microsoft Dynamics 365 Azure cloud-hosted environment, you may receive an error message relating to a D365 invalid certificate. In this article, I will describe the steps required to resolve this error. Certificates are used to secure communications over the Internet. They expire after a specific period and need to be renewed. Therefore,... Continue Reading →

D365 Map

Each item in a D365 map stores a key and a corresponding value, making a pair. Each key in a map collection is unique, but the associated value does not need to be. Additionally, the data type of the key and the value does not need to be the same. For example, a developer can... Continue Reading →

D365 Set

A D365 set is a unique, unordered collection that contains elements of all the same data type. This is similar to a mathematical set. The allowed values are all of the possible types of the Types base enum. If you try to add a duplicate value, it will not be added. Sets are very useful... Continue Reading →

Proudly powered by WordPress | Theme: Baskerville 2 by Anders Noren.

Up ↑