# BR-G-02 Export line requires a seller VAT identifier

If an invoice line (BG-25) has the invoiced item VAT category code (BT-151) "Export outside the EU" (G), the invoice shall contain the Seller VAT identifier (BT-31) or the Seller tax representative VAT identifier (BT-63).

## Problem Description

If an invoice line (BG-25) has the invoiced item VAT category code (BT-151) "Export outside the EU" (G), the invoice shall contain the Seller VAT identifier (BT-31) or the Seller tax representative VAT identifier (BT-63).

> **ERROR**: XRechnung 3.0

## Context and Significance

For exports outside the EU (category G) the tax authority must be able to identify the exporting seller, so a seller or tax-representative VAT identifier is mandatory.

## Solution

Add the seller VAT identifier under cac:PartyTaxScheme/cbc:CompanyID (BT-31), e.g. DE123456789, or provide the tax representative VAT identifier (BT-63).

- validate
- convert

## Valid Examples

- G line to the USA with seller VAT identifier BT-31 = DE123456789

## Invalid Examples

- G line to the USA but neither BT-31 nor BT-63 is present on the invoice

## Code Examples

### Valid XML
```
<cac:PartyTaxScheme>
  <cbc:CompanyID>DE123456789</cbc:CompanyID>
  <cac:TaxScheme><cbc:ID>VAT</cbc:ID></cac:TaxScheme>
</cac:PartyTaxScheme>
<cac:InvoiceLine>
  <cac:Item><cac:ClassifiedTaxCategory>
    <cbc:ID>G</cbc:ID><cbc:Percent>0</cbc:Percent>
  </cac:ClassifiedTaxCategory></cac:Item>
</cac:InvoiceLine>
```

### Invalid XML
```
<cac:InvoiceLine>
  <cac:Item><cac:ClassifiedTaxCategory>
    <cbc:ID>G</cbc:ID><cbc:Percent>0</cbc:Percent>
  </cac:ClassifiedTaxCategory></cac:Item>
</cac:InvoiceLine>
```

## Affected Fields

- [BT-31 Seller VAT identifier](/resources/xrechnung/bt-31-seller-vat-identifier)
- [BT-63 Seller tax representative VAT identifier](/resources/xrechnung/bt-63-seller-tax-representative-vat-identifier)
- [BT-151 Invoiced item VAT category code](/resources/xrechnung/bt-151-invoice-line-vat-category-code)

## Related Rules

- [BR-G-01](/resources/kosit-validator-errors/br-g-01-export-vat-breakdown-required)
- [BR-G-03](/resources/kosit-validator-errors/br-g-03-export-allowance-seller-vat-id-required)
- [BR-G-05](/resources/kosit-validator-errors/br-g-05-export-line-vat-rate-zero)

## Validation Tools

- [Official KoSIT Validator](https://erechnungsvalidator.service-bw.de/): Validate your XRechnung files against all BR-DE rules.
- [Convert PDF to XRechnung](/pdf-to-xrechnung): Automatic validation error fixes when converting.

## Related Resources

- [Official Specification](https://xeinkauf.de/xrechnung/)
- [Test Suite](https://github.com/itplr-kosit/xrechnung-testsuite)
- [Complete Error List](/resources/kosit-validator-errors): Overview of all German XRechnung validation rules.
