Posts

Best Business Central Warehouse Tutorial

Image
Best Business Central Warehouse Tutorial A curated collection of the best YouTube tutorials & playlists to learn Microsoft Dynamics 365 Business Central — Warehouse & WMS (setup, mobile barcoding, picking, put-away, replenishment, advanced warehouse management). Updated: November 5, 2025 Table of contents Why these tutorials? Official & big playlists Warehouse setup & configuration Basics: picking, shipping, inventory Advanced warehousing (barcoding, mobile) Extra resources & recommended channels Conclusion & next steps Why these tutorials? These videos were selected for clarity, practical demos, and relevance to Business Central warehouse features: location setup, SKU/lot/serial handling, wave/zone picking, mobile barcoding solutions, and third-party WMS integrations. Each item below embeds the video so you can watch direct...

What is Test-Driven Development(TDD)?

Test-Driven Development (TDD) is a software development approach in which developers write automated tests before writing the actual code for a software feature. TDD is often associated with agile methodologies and is a key practice in ensuring the quality, reliability, and maintainability of software. The TDD process typically follows these steps: 1. Write a Test: The TDD process begins by writing a test that defines the expected behavior of a specific feature or component. This test is written in code and is often referred to as a "unit test." The test should fail at this stage because the feature it's testing doesn't exist yet. 2. Run the Test: The next step is to run the test. Since the feature isn't implemented yet, the test will fail, which is the expected outcome. 3. Write Code to Make the Test Pass: With the failing test as a guide, the developer writes the minimal amount of code necessary to make the test pass. This means implementing the feature or fun...