D365 Business Central : Inlay Hints
If you are a D365 Business Central developer who works with AL language in VS Code, one useful new feature that Microsoft has recently introduced is the support for inlay hints. Inlay hints are...
Anything about Microsoft Dynamics NAV and Microsoft Dynamics 365 Business Central Consultancy
If you are a D365 Business Central developer who works with AL language in VS Code, one useful new feature that Microsoft has recently introduced is the support for inlay hints. Inlay hints are...
If you are a developer, you know how important it is to debug your code to find errors and understand how the code works. Debugging can be a difficult and time-consuming task, especially when...
I recently encountered this issue with NAV2018 OnPrem relating to a DotNet variable that has yet to be instantiated. This error usually happens when you haven’t initialised the constructor. To fix this issue, perform...
When developing the D365 Business Central App Source extension, we are required to comply with AppSource rules. To ensure our extension meets these standards, the AppSourceCop Analyser is a valuable tool. AppSourceCop Analyser is...
Using color or visual indicators is a great way to convey information quickly. They can represent different meanings, conditions, or statuses, making it easier for people to understand and interpret information without needing to...
Dynamics 365 Business Central is a complex software that continuously evolves, making it very challenging to know and understand all its features. Some features often go unnoticed, either due to insufficient documentation, being buried...
One of the recent requirements that I got was to calculate dates based on working days, excluding weekends and holidays. This can be accomplished by leveraging the Base Calendar feature and utilising the CalcDateBOC...
List Data Type is an unbounded, strongly typed list of ordered objects that can be accessed by index. It serves as a replacement for arrays. Unlike traditional arrays, Lists provide dynamic and unlimited capacity,...
Last time we talked about AppVersion and DataVersion, and how we can utilize them in our installation and upgrade procedure. Now, let’s talk about Upgrade Tags. Whenever you install your extension, the install or...
In Microsoft Dynamics 365 Business Central, the ModuleInfo Data Type provides valuable information about the current extension, including the App Id, App Name, App Publisher, AppVersion, and DataVersion. This time we will explore the...