In Business Central, Install and Upgrade codeunits are important in managing the installation and upgrade processes of extensions. Install codeunits handle installation tasks, while Upgrade codeunits manage upgrades to newer versions.
Tag Archives: Codeunit
Dynamics 365 Business Central: How to easily test your upgrade codeunit (forceUpgrade setting in launch.json)
Today I would like to share another mini tip about Business Central, how to easily test your upgrade codeunit.
How to create a Job Queue Friendly Codeunit
You can use codeunits in the Job Queue, but how do you make the codeunit “Job Queue Friendly”, check out this video:
D365 Business Central : StringConversionManagement Codeunit
There are lots of Management Codeunit in D365 Business Central. Let us talk about one of them which is StringConversionManagement Codeunit. There are currently four procedures in this Codeunit that you can call:
– WindowsToASCII
– GetPaddedString
– RemoveDecimalFromString
– RemoveNonAlphaNumericCharacters
How to get Access Token in Business Central using OAuth2 Codeunit
Hello, in view OAuth2 authentication method is currently popular because as of October 1, 2022, it is mandatory to connect to Business Central web services, I wanted to make a post on how to use this authentication method but through the language AL.
What Is A Single Instance Codeunit In Business Central?
In this post, you will learn what is a single instance codeunit in Microsoft Dynamics 365 Business Central. Where can we apply it, and how you can boost performance in certain situations. Finally, you will find the limitations of this approach.
Working with SOAP API and XML in AL. Generic API codeunit.
The purpose of this post is to learn the basics of working with XML and SOAP in AL. Besides, we’ll look at my suggestion of the generic API method SendRequest(), which fits most APIs without authorization. The authorization itself is not difficult to add to the general logic, but in the post, they are not considered due to their large number and often unique logic