What does BR-45 mean?
Every VAT breakdown (BG-23) must contain a VAT category taxable amount (BT-116). This is the sum of all net amounts that fall under the same combination of VAT category and rate, on which the tax is then calculated. In the CII structure this value sits as ram:BasisAmount in each ram:ApplicableTradeTax at document level. Without it the breakdown is incomplete.
Common causes of BR-45
- ram:BasisAmount in the ram:ApplicableTradeTax block was left out entirely.
- The amount sits only at line level, not in the VAT breakdown.
- Empty element with no numeric value.
- Only CalculatedAmount and rate were set, the base amount was forgotten.
How to fix BR-45
- Find the faulty spot in the XML. Open the XML of the invoice and go to field BT-116 along this XPath:
//rsm:SupplyChainTradeTransaction/ram:ApplicableHeaderTradeSettlement/ram:ApplicableTradeTax/ram:BasisAmount - Apply the fix. Add the element ram:BasisAmount with the net total of the tax group to every ram:ApplicableTradeTax at document level, e.g. 100.00 (dot as decimal separator, no currency symbol).
- Validate again. Save the file and validate it again to check that BR-45 is no longer reported.
Add the element ram:BasisAmount with the net total of the tax group to every ram:ApplicableTradeTax at document level, e.g. 100.00 (dot as decimal separator, no currency symbol).
//rsm:SupplyChainTradeTransaction/ram:ApplicableHeaderTradeSettlement/ram:ApplicableTradeTax/ram:BasisAmountBefore / after: the XML example
This is the spot in question before and after the fix (Cross Industry Invoice, ZUGFeRD/Factur-X).
<ram:ApplicableTradeTax>
<ram:CalculatedAmount>19.00</ram:CalculatedAmount>
<ram:TypeCode>VAT</ram:TypeCode>
<ram:CategoryCode>S</ram:CategoryCode>
<ram:RateApplicablePercent>19.00</ram:RateApplicablePercent>
</ram:ApplicableTradeTax>
<ram:ApplicableTradeTax>
<ram:CalculatedAmount>19.00</ram:CalculatedAmount>
<ram:TypeCode>VAT</ram:TypeCode>
<ram:BasisAmount>100.00</ram:BasisAmount>
<ram:CategoryCode>S</ram:CategoryCode>
<ram:RateApplicablePercent>19.00</ram:RateApplicablePercent>
</ram:ApplicableTradeTax>
Frequent questions about BR-45
What belongs in BT-116?
Where does the amount sit in the XML?
Does every tax group need its own base amount?
Related error codes
Check BR-45 automatically
Instead of digging through the XML by hand you can validate your ZUGFeRD or XRechnung file online – upload the PDF or the XML and you get every error with rule ID, affected field, fix and XPath, as a readable report or as JSON through the API.