Reference
Markdown exportBR-DE-10 Deliver-to city must be provided when a delivery address is used
A delivery address must contain the deliver-to city.
Problem Description
A delivery address must contain the deliver-to city.
ERROR
XRechnung 3.0
Context and Significance
This entry follows the XRechnung 3.0.2 Schematron rule semantics used by KoSIT validation.
Solution
Fill BT-77 deliver-to city or omit the delivery address group when it is not needed.
Quick actions
Valid Examples
Use these points as the practical checks for this section.
- BT-77 Deliver to city is present and valid.
Invalid Examples
Use these points as the practical checks for this section.
- BT-77 Deliver to city is missing or invalid.
Code Examples
Valid XML
<cac:Delivery>
<cac:DeliveryLocation>
<cac:Address>
<cbc:CityName>München</cbc:CityName>
<cbc:PostalZone>80331</cbc:PostalZone>
<cac:Country><cbc:IdentificationCode>DE</cbc:IdentificationCode></cac:Country>
</cac:Address>
</cac:DeliveryLocation>
</cac:Delivery>Invalid XML
<cac:Delivery>
<cac:DeliveryLocation>
<cac:Address>
<!-- cbc:CityName (BT-77) missing while DELIVER TO ADDRESS is present -->
<cbc:PostalZone>80331</cbc:PostalZone>
<cac:Country><cbc:IdentificationCode>DE</cbc:IdentificationCode></cac:Country>
</cac:Address>
</cac:DeliveryLocation>
</cac:Delivery>