JBJonathan Bourgoininjobourgoin.hashnode.dev·Feb 5, 2025 · 2 min readHow to Override Lookup on a Form in X++When working with Dynamics 365 for Finance and Operations (D365FO), you may need to customize the lookup behavior on a form. This can be done by overriding the default lookup method using X++ extensions. In this article, we'll walk through the proces...00
JBJonathan Bourgoininjobourgoin.hashnode.dev·Sep 5, 2024 · 1 min readGet Tax Amount per Line in X++Getting the tax amount for each line in a report requires a bit of X++ coding. Here’s how to do it! 🖥️💡 📝 Example: Sales Invoice Report In this example, we’re adding the tax amount to the Sales Invoice report. 📌 Step 1: Modify the Data Provider C...00
JBJonathan Bourgoininjobourgoin.hashnode.dev·Mar 4, 2024 · 1 min readIncrease row height dynamically in ExcelThis is the procedure to solve Excel row height not adjusting when larger chunks of text needs to be printed. The first step is to make sure your print area is set up. Select the print area using the columns. Next step is to get the exact width of...00
JBJonathan Bourgoininjobourgoin.hashnode.dev·Feb 16, 2024 · 1 min readHow to add line numbersThe goal here is to have the first line number be 1 and increase by 1 per record. This is done from the format First, add a root Data Collection Enter the following configuration: On the cell where you want the line number, paste this: LineNum.Co...00
JBJonathan Bourgoininjobourgoin.hashnode.dev·Jan 29, 2024 · 1 min readHow to manage currency formatsIn my case, on the sales order confirmation, all of the numbers had to be formatted based on the country of the customer. The customers came from 3 different places. en-US, fr-CA, en-CA. All three have different number formats. In the case of currenc...00