Microsoft Dynamics 365 Business Central
Discover the unique world of Dynamics ERPs
Newest article
7 git commands you should know
For many years, developers in C/AL did not need to know anything about Git or other versioning tools. That has changed with Business Central, or more specifically with AL Language. Today, we will look at the most important (and basic) git commands any developer should know. These commands are usually quicker and more professional than working with the GIT UI in VS Code. I'm not trying to explain how the git works, what can be done or how to master the git. This article is mainly for new developers in AL Language or developers who are experienced in C/AL development but do not know how to work with git commands in AL Language. For this reason, I tried to explain some parts in a straightforward way or even provide not completely accurate information, as these details/knowledge are not...
Meet me on tech conference
Latest Articles
7 git commands you should know
For many years, developers in C/AL did not need to know anything about Git or other versioning tools. That has changed with Business Central, or more specifically with AL Language. Today, we will look at the most important (and basic) git commands any developer should...
Business Central Admin Center, part 3 (Update Settings)
This is the third part of my series about the Business Central Admin Center. Previous parts: Business Central Admin Center, part 1 (Overview, Apps, Sessions) | MSDyn365 Business Central - Tomas Kapitan (kepty.cz) Business Central Admin Center, part 2 (Database,...
How to define the source for item reservations?
It's not uncommon to have a customer's request to limit from which source items could be reserved. For example, customers may not want to reserve items from return orders. How can we achieve this goal? It's really simple. All the magic is done in the procedure...
Business Central Admin Center, part 2 (Database, Support)
This is the second part of my series about the Business Central Admin Center. Previous parts: Business Central Admin Center, part 1 (Overview, Apps, Sessions) | MSDyn365 Business Central - Tomas Kapitan (kepty.cz) Next parts: Business Central Admin Center, part 3...
CU 2023/05 for Microsoft Dynamics 365 Business Central on-premises has been released
The cumulative update 2023/05 for Microsoft Dynamics 365 Business Central (Spring 2019, 2022 wave 1, 2022 wave 2, and 2023 wave 1) on-premises has just been released.
Business Central Admin Center, part 1 (Overview, Apps, Sessions)
Business Central admin center is a useful tool that allows admin to manage Business Central environments. In this article (and probably in a few more articles in the upcoming weeks), I will show all pages and actions that are available to admin. Next parts: Business...
Directions ASIA 2023
Just a few days ago, I returned back home to Brisbane from another great conference - Directions4Partners ASIA in Bangkok. And it was again a TOP event with an amazing organization team and also the best community. First of all, I would like to thank all organizers...
Analysis mode in Business Central 2023 wave 1
Analysis mode is a new type of view for any list page, available from Business Central 2023 wave 1. This mode on list pages enables users to analyze and pivot data directly in the client. Let's explore what is available and how it can be used. The feature is disabled...
NavigationAction for ErrorInfo data type
One more article about ErrorInfo data type. Have you already read my previous posts about ErrorInfo and Collectible Errors? ErrorInfo data type & Collectible Errors | MSDyn365 Business Central - Ing. Tomáš Kapitán (kepty.cz) Collectible Errors?! | MSDyn365...
See you in Bangkok!
I have never been to Thailand, but it's going to change! See you in Bangkok at Directions4Partners ASIA 2023! Directions ASIA 2023 | Directions 4 Partners And what will my session be about? Do you know the Business Central base application contribution pilot? I really...
Error actions for ErrorInfo data type
It is already almost one and a half years since the ErrorInfo data type was introduced (we saw this data type for the first time in BC2021w2). If you do not know what it is and how to use this data type, check my previous posts: ErrorInfo data type & Collectible...
DynamicsCon VIRTUAL March 2023
DynamicsCon VIRTUAL is an annual conference that brings together the Dynamics 365 community to share knowledge and best practices. The conference is set to take place 15th of March and is a must-attend event for anyone who wants to stay up-to-date with the latest...
Happy New Year 2023!
Happy New Year to all of you! I hope that 2023 will be a fantastic year filled with joy, prosperity, and meaningful experiences. Thank you for being a part of our small Business Central community, and I look forward to continuing to share and connect with you in the...
Data types under the microscope: List
The List data type in AL language represents an ordered collection of objects that can be accessed by their index. Unlike an Array data type, a List does not have a fixed size and does not need to have its dimension specified when it is declared. The List data type...
131005 “Library – Dialog Handler” – build test handlers differently
Test UI Handlers are necessary in many cases if you want to test any logic that shows confirm, message, or different page... The most common are ConfirmHandler (to handle Confirm()) and MessageHandler (to handle Message()). To find out more about Handlers, check...