web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :

Community blogs

Featured

Latest blog posts

View all
Like (0)
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 state...

Peter Ramer 65
Like (0)
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...

Peter Ramer 65
Like (0)
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....

Peter Ramer 65
Like (0)
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 ...

Peter Ramer 65
Like (0)
D365 List

As an X++ developer, I am very used to using ‘while select’ statements to loop through records stored in a database. However, as a C# developer, I often loop through lists of class objects. In this article, learn how to add values to a D365 list a...

Peter Ramer 65
Like (0)
D365 Collection Classes

In Microsoft Dynamics 365 for Finance and Operations, there are several ways to store a collection of values, known as D365 collection classes. Quite often, developers will insert values into tables that have different field names and can each hav...

Peter Ramer 65
Like (0)
Save Error Messages In D365

When something goes wrong while running a complex process, it can be challenging to understand how to correct it. Understanding how to save error messages in D365 will help give you the information needed to take further action. Example Scenario O...

Peter Ramer 65
Like (0)
D365 Performance Logs

In the last article, I explained how to create custom logs in Microsoft Dynamics 365 for Finance and Operations. In this lesson, learn how to expand custom logs to create D365 performance logs to help understand where performance may be improved. ...

Peter Ramer 65