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

Announcements

No record found.

News and Announcements icon
Community site session details

Community site session details

Session Id :

Community blogs

Featured

Latest blog posts

View all
Like (0)
Base64 encoding and decoding

What is Base64 encoding and decoding? On a very high level: it is a method of converting binary data to ASCII text and the ASCII text back again to binary. There are many articles online on how this works technically but this article will explain ...

Anton Venter 20,629 Super User 2026 Season 1
Like (0)
Using Boolean OR to make where clause fields optional

Sometimes you have a custom "while select" statement and you need to have one or more of the where clause fields in the statement to be optional. In this example, I will use a simple method to display the customer account and group for customers. ...

Anton Venter 20,629 Super User 2026 Season 1
Like (0)
Custom service using set based operations

Sometimes you just need a fast way to get specific data from Dynamics 365 Finance (F&O) for real time processing of F&O data in another application. The data analyst and I were debating the architecture and exporting the F&O data to a data warehou...

Anton Venter 20,629 Super User 2026 Season 1
Like (0)
How to encrypt parameter data with Global::editEncryptedField()

Sometimes there is a requirement to encrypt parameter data like passwords, API tokens or other types of secrets. The question is, how is that done in Dynamics 365 Finance and Operations (F&O) without using third party tools? Well, it's actually s...

Anton Venter 20,629 Super User 2026 Season 1
Like (0)
X++ native types vs objects - the fundamental difference you need to understand

In X++ programming, there are simple variables types or more complex types. Native types are built-in variable types like int, str, real etc. The simple types and can be used to store specific variable values of type string, number, integer and so...

Anton Venter 20,629 Super User 2026 Season 1
Like (0)
Auto submit to workflow using X++

Workflows in Dynamics 365 Finance and Operations (F&O) are used to add approval steps to a business process flow. For example, in the purchase-to-pay flow, if approval is enabled and the workflow is configured, assigning a new or different bank ac...

Anton Venter 20,629 Super User 2026 Season 1
Like (0)
Custom menu items licensing caveat

In Dynamics 365 Finance and Operations (F&O) menu items are used to launch forms, operations or processes, reports and more. When a developer creates new form, runnable class or report, a custom menu item is also created to launch that particular ...

Anton Venter 20,629 Super User 2026 Season 1
Like (0)
How to view data in a temporary table using SQL Server Management Studio

Temporary tables are used quite often in Dynamics 365 Finance and Operations (F&O) and you can find them everywhere in the standard code and forms. There are different types of temporary tables but in this article we are using the TempDB type. The...

Anton Venter 20,629 Super User 2026 Season 1