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
Sometimes you need the URL for opening a specific page in Business Central. This could be in a scenario where you have an API that exposes all your items, and you want to make it possible for the consumer of...
Introduction
Most Business Central developers are familiar with the Page.Run() procedure. By providing zero as the page number and a Record variable, you can run the Lookup Page defined for that record. For example, running the Item Lookup page:
Sometimes you might need a dashboard like page in Business Central. For this purpose you could use Queues on a rolecenter, like the one below. But the issue with this, is that it loads the value when the rolecenter is...
From my experience Reservations and Item Tracking, in Business Central, is quite often a little confusing, especially when it comes to how data is stored, and how a developer creates reservations and item tracking from AL. To give you a...