Delivery Information
Delivery information about the delivery location and carrier can be modelled.
You use the Delivery element to model delivery information such as:
- The address.
- The ID for the location of the delivery, if any.
- The party who delivered the goods.
Elements
Element | Description |
---|---|
Delivery/ActualDeliveryDate | The date that the delivery was made in the YYYY-MM-DD format. For example, 2018-10-22 . |
Delivery/DeliveryLocation/ID | The delivery location's identifier. |
Delivery/DeliveryLocation/Address/ | The party's address. |
Delivery/DeliveryLocation/Address/StreetName | The name of the street in the party's address. |
Delivery/DeliveryLocation/Address/AdditionalStreetName | Any additional street names in the party's address. |
Delivery/DeliveryLocation/Address/CityName | The name of the city in the party's address. |
Delivery/DeliveryLocation/Address/PostalZone | The postal zone, if any, in the party's address. |
Delivery/DeliveryLocation/Address/CountrySubentity | The country subdivision code, usually representing a State or Province. |
Delivery/DeliveryLocation/Address/Country/IdentificationCode | The ISO code for the country where the party's address is. |
Delivery/DeliveryParty/PartyName/Name | The name of the party who delivered the goods. |
Delivery/DeliveryParty/PartyTaxScheme/CompanyID | The company ID of the party who delivered the goods. |
Delivery/DeliveryParty/PartyTaxScheme/TaxScheme/ID | The Tax Scheme ID of the deliverer. |
Delivery/DeliveryParty/PartyLegalEntity/RegistrationName | The deliverer's registered legal entity name. |
Delivery/DeliveryParty/PartyLegalEntity/CompanyID | The company ID of the registered legal entity name |
Carriers
Carriers are the party who delivers or partially delivers the goods. You can also use the Delivery/DeliveryParty/PartyName
to name the party who delivered the goods.
Delivery Terms
You can use the DeliveryTerms element to model any terms that might be attached to a delivery.
Shipment Information
You can use the Shipment element to specify shipment information.
Country Specific Configurations
- Italy: Delivery and Transport Configurations
- Malaysia: Incoterm
- Malaysia: States
- Germany: Delivery Information
- Romania: States (Provinces)
- Romania: City Sector
- Saudi Arabia: Latest Delivery Date
Example
Delivery Location
<ubl:Invoice>
<!-- Code omitted for clarity -->
<cac:Delivery>
<!-- Code omitted for clarity -->
<cac:DeliveryLocation>
<cbc:ID>68</cbc:ID>
<cac:Address>
<cbc:StreetName>14 Strass</cbc:StreetName>
<cbc:AdditionalStreetName>4. OG</cbc:AdditionalStreetName>
<cbc:CityName>Munchen</cbc:CityName>
<cbc:PostalZone>98765</cbc:PostalZone>
<cbc:CountrySubentity>Bayern</cbc:CountrySubentity>
<cac:AddressLine>
<cbc:Line>No.11</cbc:Line>
</cac:AddressLine>
<cac:Country>
<cbc:IdentificationCode>DE</cbc:IdentificationCode>
</cac:Country>
</cac:Address>
</cac:DeliveryLocation>
<cac:DeliveryParty>
<!-- Code omitted for clarity -->
</ubl:Invoice>
Delivery Terms
<ubl:Invoice>
<!-- Code omitted for clarity -->
<cac:DeliveryTerms>
<cbc:ID>CIF</cbc:ID>
</cac:DeliveryTerms>
<!-- Code omitted for clarity -->
</ubl:Invoice>
Shipment
<ubl:Invoice>
<cac:Delivery>
<!-- Code omitted for clarity -->
<cac:Shipment>
<!-- Code omitted for clarity -->
<cac:GoodsItem>
<cbc:Description>free text</cbc:Description>
</cac:GoodsItem>
<!-- Code omitted for clarity -->
</cac:Shipment>
</cac:Delivery>
</ubl:Invoice>
Updated about 24 hours ago