Your first AL Project

Get Started Developing for BC: Your first AL Project

So you want to develop custom code for Microsoft Dynamics 365 Business Central? The code for BC is written in AL, which stands for “Application Language”, and is a specific language only used for Business Central. To start writing AL code, you need to make sure you have Visual Studio Code installed, along with the AL Language extension for Microsoft Dynamics 365 Business Central. If you need more information on setting up your development environment, check out this blog post. At this point, we are ready to create our first AL project!

Read More »
Connecting to a Docker Container

Get Started Developing for BC: How to connect to a Docker container

You have an AL project that you want to work on within your new container. How exactly do you connect your code to your container BC instance? It’s pretty easy!


Within your AL Project you should have a .vscode folder, with a file called launch.json This is a configuration file that is used to define settings for launching and debugging applications. The following configurations should be set to work with a Business Central Container:

Read More »
#HumpDayHacks with Tonya Bricco-Meske

#HumpDayHacks – Attach Debugger to this Session

Have you ever been walking through a process in Business Central, and realize you want to debug, but don’t want to wait to publish, and get back to the exact spot where you were testing something? Or for some reason you were debugging something, and the debugger stopped, and you want to jump right back in to the process you were examining. This is where “Attach Debugger to this session” comes in handy,

Read More »