Browsed by
Tag: Business Central

Report Overview – How To Run All Your Reports

Report Overview – How To Run All Your Reports

Are you also getting tired of navigating through Business Central to run your reports?Do you want to know which custom reports you created in your extensions and run them easily? Then the Report Overview I created is the cure for your problem. What Is The Report Overview? I created the Report Overview for two reasons: Firstly, I wanted an easy way to run and test reports. Secondly, I wanted to open the pages related to my reports so I can…

Read More Read More

AL Navigator – Visual Studio Code Extension

AL Navigator – Visual Studio Code Extension

Features My AL Navigator extension for Visual Studio Code enables you to automatically create variables in AL and navigate through .al files with awesome shortcuts. AL Navigator – Create Variables AL Navigator provides a CodeAction for the AL compiler error 118 “The name does not exist in the current context“. This CodeAction enables you to automatically create a local or global variable by using the names of standard objects as well as names of your local workspace files. The extension…

Read More Read More

How To Add Long Text On Last Page Of Custom Word Report in Business Central

How To Add Long Text On Last Page Of Custom Word Report in Business Central

Today we look at how to print a long text on the last page of a custom Word Report. Some customers have the requirement to print terms and conditions on the last page of their sales quotes. This is exactly what we will do in this tutorial. Prerequisites I assume that you have a working environment for Business Central in a Visual Studio Code Project. My examples are done using a Docker Container with Business Central 16. Have a look…

Read More Read More

Record Deletion Tool

Record Deletion Tool

Recently I was faced with the challenge of deleting a lot of data from different tables in NAV. I thought I was not the only person who had faced such a challenge and so I went searching. On Olof Simren’s blog I quickly found what I was looking for. His Record Deletion Tool allows to delete transactional data from tables. Unfortunately he programmed this functionality for NAV 2015 and I needed it for Business Central as an extension. For this…

Read More Read More

Zero Values in Word Reports

Zero Values in Word Reports

Today we look at how to hide zero values in Word Reports. Sometimes it makes sense not to print the value 0 in reports to protect the user from a flood of information. With the help of two small procedures we can achieve this behavior in Word Reports. If you are familiar with RDLC reports, you will know the function BlankZero. In this post, we are going to implement something similiar. BlankZero in RDLC Reports With RDLC Reports, we have…

Read More Read More