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

Notifications

Announcements

Community site session details

Community site session details

Session Id :

Community blogs

Featured

Latest blog posts

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

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

Peter Ramer 65
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