PS> Write-Output "Deep Dive into Business Central Development"
Welcome to BC Nerd, your go-to resource for mastering the technical facets of Microsoft Dynamics 365 Business Central. Our blog offers in-depth explorations into AL development, integration strategies, performance optimization, and the latest industry shifts. Whether you're a seasoned developer or just starting out, you'll find valuable insights and practical solutions to elevate your Business Central projects.
PS C:\ALProjects\BCBlog> Write-Host ("-" * 80) -ForegroundColor DarkGray
PS C:\ALProjects\BCBlog> Get-ChildItem -Path .\posts\ -Filter *.md | Sort-Object LastWriteTime -Descending
“The future belongs not just to the complex systems we build, but to the elegant ways in which AI helps us simplify them.” In the realm of software development, we often chase sophisticated tools and systems to manage our work....
Introduction A notable limitation in Business Central is the monitoring of Job Queue Entries. Although monitoring encompasses a wide range, I will present a method to receive notifications in a Teams Channel when a Job Queue Entry fails. To send...
What is Retention Policy
A Retention Policy enables administrators in Business Central to purge data from tables. The records selected for deletion are determined by their age and a Date Formula established for each table.
Introduction As a Business Central developer, you probably have had the request to add a sales price to a field in a table, and the price should be calculated in the same way as in a sales line. Traditionally, you’ve...
Extending Price Calculation There are 2 ways to extend Price Calculation in Business Central, either by subscribing to events or by implementing an interface. Both are useable in different scenarios. Here I will make a simple example of how to...