Business Central calculates tax from Tax Area Codes and Tax Group Codes mapped across customer, vendor and item combinations. That covers straightforward percentage tax. Tiered excise levies, volume bands and non-deductible VAT need AL extension — built on event subscribers and a rate table, never on a hardcoded percentage.
Where the native matrix stops
Misconfigured tax posting groups are expensive in both directions. Under-collect and the authority assesses the shortfall against you with penalties. Over-collect and you have overcharged customers, which is a commercial problem and often a legal one.
| Requirement | Native Business Central | Needs AL |
|---|---|---|
| Flat percentage by jurisdiction | Yes — Tax Area / Tax Group matrix | No |
| Reverse charge and zero-rated export | Yes — VAT Posting Setup | No |
| Tiered or banded excise (volume, sugar content, weight) | No | Yes — rate table plus calculation subscriber |
| Non-deductible input VAT allocation | Partial | Usually — depends on localisation |
| Line versus header rounding per jurisdiction | Single global setting | Yes, where rules differ by country |
Non-deductible VAT
Some input VAT cannot be reclaimed — entertainment, certain vehicles, particular categories of asset. The error to avoid is treating this as a calculation adjustment. The unclaimable portion is not VAT at all from your books' point of view: it is part of the cost of the thing you bought.
So it has to post to the expense account or capitalise into the asset, with the deductible remainder alone hitting VAT receivable. An implementation that nets it against VAT receivable produces a return that will not agree with the ledger.
Extending without breaking upgrades
The rule that matters more than any other: subscribe to events, do not modify base objects. Business Central updates continuously, and a modified base object turns each update into a merge exercise.
Note what the sample does not contain: a number. Every rate is read from a setup table with an effective date, so a legislative change is a data entry task rather than a deployment.
Rounding, which is not a detail
Business Central defaults to nearest-even rounding. Whether rounding is applied per line or once on the document header changes the total on genuinely ordinary invoices, and jurisdictions differ on which is required.
Rounding rules are the most common source of a tax figure that is off by a few units on thousands of documents. Individually trivial, collectively a reconciliation nobody can close.
Controls that shorten an audit
- Supplementary tax ledger. Store the exact fractional amount alongside the posted rounded one, so any discrepancy can be explained rather than argued about.
- Registration number validation. Verify counterparty tax numbers against the relevant government portal before zero-rating a supply. Zero-rating against an invalid number is your liability, not theirs.
- Effective-dated rates. Every rate carries a from-date, so historical documents recalculate correctly and a rate change never rewrites the past.
- Periodic tie-out. The tax return total agrees to the sum of the VAT entries for the period, run as a scheduled report and not left until filing time.
What the engineering buys
A tax engine built this way turns filing from a reconstruction exercise into a report. The measurable outcome is not a percentage saved; it is that the numbers on the return come from the ledger without manual adjustment, and that an auditor asking how a figure was reached gets an answer from the system, not from a spreadsheet somebody maintains.