EN-16931: Free Export Item, Tax not Charged (G)
This code specifies that the item is free export and taxes are not charged.
Party IDs
If a Document contains a line where the invoiced item's Tax Category Code is Export outside the EU, or an allowance or charge with the same Tax Category Code, then you must include the Supplier's Tax Registration ID and/or the their Tax Representative's ID.
If one of the following elements exists:
Invoice/InvoiceLine/Item/ClassifiedTaxCategory/ID = G
or
/Invoice/AllowanceCharge[ChargeIndicator='false']/TaxCategory/ID = G
or
/Invoice/AllowanceCharge[ChargeIndicator='true']/TaxCategory/ID = G
Then the following elements are required:
/Invoice/AccountingSupplierParty/Party/PartyTaxScheme/CompanyID
/Invoice/TaxRepresentativeParty/Party/PartyTaxScheme/CompanyID
The Buyer's Tax Registration ID and the Buyer's legal entity are not required. However, we do recommend that you include the following elements:
/Invoice/AccountingCustomerParty/Party/PartyTaxScheme/CompanyID
/Invoice/AccountingCustomerParty/Party/PartyLegalEntity/CompanyID
Tax Rate
If an invoiced item's Tax Category is Exempt from VAT, the tax rate for the item must be zero.
If Invoice/InvoiceLine/Item/ClassifiedTaxCategory/ID = G
, then Invoice/InvoiceLine/Item/ClassifiedTaxCategory/Percent
must be zero.
If a Document-level Allowance's Tax Category is Exempt from VAT, the Document-level allowance's tax rate must be zero.
If Invoice/AllowanceCharge[ChargeIndicator='false']/TaxCategory/ID = G
, then Invoice/AllowanceCharge[ChargeIndicator='false']/TaxCategory/Percent
must be zero.
If a Document-level Charge's Tax Category is Exempt from VAT, the Document-level charge's tax rate must be zero.
If Invoice/AllowanceCharge[ChargeIndicator='true']/TaxCategory/ID = G
, then Invoice/AllowanceCharge[ChargeIndicator='true']/TaxCategory/Percent
must be zero.
Tax Amount
If a Tax Total includes a Tax Category Code that is Exempt from VAT, the Tax Amount must be zero.
If Invoice/TaxTotal/TaxSubtotal/TaxCategory/ID = G
, then Invoice/TaxTotal/TaxSubtotal/TaxAmount
must be zero.
Tax Exemption
If a Tax Total uses the Exempt from VAT Tax Category, then you must specify a reason for the exemption.
For example, if Invoice/cac:TaxTotal/cac:TaxSubtotal/cac:TaxCategory/cbc:ID = G
, then one of the the following elements must be provided:
/Invoice/TaxTotal/TaxSubtotal/TaxCategory/TaxExemptionReasonCode = VATEX-EU-G
or
Invoice/TaxTotal/TaxSubtotal/TaxCategory/TaxExemptionReason = Educational Book Exempt from VAT
Example
<Invoice>
<!-- code omitted for clarity -->
<cac:AccountingSupplierParty>
<cac:Party>
<cac:PartyTaxScheme>
<!-- Seller Tax Registration Identifier -->
<cbc:CompanyID>EE76576657</cbc:CompanyID>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:PartyTaxScheme>
<!-- code omitted for clarity -->
</cac:Party>
</cac:AccountingSupplierParty>
<cac:AccountingCustomerParty>
<cac:Party>
<cac:PartyTaxScheme>
<!-- Buyer Tax Registration Identifier -->
<cbc:CompanyID>EE22334455</cbc:CompanyID>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:PartyTaxScheme>
<cac:PartyLegalEntity>
<cbc:RegistrationName>Buyer Official Name Ltd.</cbc:RegistrationName>
<!-- Buyer Legal Registration Identifier -->
<cbc:CompanyID>EE12345600</cbc:CompanyID>
</cac:PartyLegalEntity>
<!-- code omitted for clarity -->
</cac:Party>
</cac:AccountingCustomerParty>
<!-- code omitted for clarity -->
<cac:TaxTotal>
<cbc:TaxAmount currencyID="EUR">0.00</cbc:TaxAmount>
<cac:TaxSubtotal>
<cbc:TaxableAmount currencyID="EUR">1325</cbc:TaxableAmount>
<cbc:TaxAmount currencyID="EUR">0.00</cbc:TaxAmount>
<cac:TaxCategory>
<!-- Tax Category Code -->
<cbc:ID>G</cbc:ID>
<cbc:Percent>0.00</cbc:Percent>
<cbc:TaxExemptionReasonCode>VATEX-EU-G</cbc:TaxExemptionReasonCode>
<cbc:TaxExemptionReason>Export outside the EU</cbc:TaxExemptionReason>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:TaxCategory>
</cac:TaxSubtotal>
</cac:TaxTotal>
<!-- code omitted for clarity -->
<cac:InvoiceLine>
<!-- code omitted for clarity -->
<cac:Item>
<cac:ClassifiedTaxCategory>
<!-- Tax Category Code -->
<cbc:ID>G</cbc:ID>
<cbc:Percent>0.00</cbc:Percent>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:ClassifiedTaxCategory>
</cac:Item>
<!-- code omitted for clarity -->
</cac:InvoiceLine>
<!-- code omitted for clarity -->
</Invoice>
Updated 7 days ago