Poland KSF: Carrier Party (FA(3))
You can specify information about the carrier party.
We recommend that you use the following elements for outbound Accounts Receivable (AR) invoices:
- Carrier Street Name (
//PostalAddress/StreetName) - Carrier City Name (
//PostalAddress/CityName)(Invoice/Delivery/DeliveryLocation/Address/CityName) - Carrier Postal Zone (
//PostalAddress/PostalZone)
If you cannot use these, you can use up to 2 Carrier Address Line (PostalAddress/AddressLine) elements.
Elements
Use the CarrierParty element to model this information:
| Name (Path) | Cardinality | Description |
|---|---|---|
Carrier Party (Invoice/Delivery/CarrierParty) | 0..1 | A group to inform about the carrier party. |
Carrier Name (//PartyName/Name) | 1..1 | Name of the carrier. |
Carrier Street Name (//PostalAddress/StreetName) | 0..1 | Street name of the carrier. |
Carrier City Name (//PostalAddress/CityName) | 0..1 | Place (City, Town, Village) of the carrier. |
Carrier Postal Zone (//PostalAddress/PostalZone) | 0..1 | Postal code of the carrier. |
Carrier Address Line (PostalAddress/AddressLine) | 0..2 | Address Lines of the carrier. |
Carrier Country Code (PostalAddress/Country/IdentificationCode ) | 1..1 | Country Code of the carrier. |
Examples
Outbound AR invoice
<ubl:Invoice>
<!-- code omitted for clarity -->
<cac:Delivery>
<!-- code omitted for clarity -->
<cac:CarrierParty>
<cac:PartyName>
<cbc:Name>Jan Nowak Transport</cbc:Name>
</cac:PartyName>
<cac:PostalAddress>
<cbc:StreetName>ul. Bukowa 5</cbc:StreetName>
<cbc:CityName>Poznań</cbc:CityName>
<cbc:PostalZone>00-004 </cbc:PostalZone>
<cac:Country>
<cbc:IdentificationCode>PL</cbc:IdentificationCode>
</cac:Country>
</cac:PostalAddress>
</cac:CarrierParty>
<!-- code omitted for clarity -->
</cac:Delivery>
</ubl:Invoice>
Inbound AP invoice
<ubl:Invoice>
<!-- code omitted for clarity -->
<cac:Delivery>
<!-- code omitted for clarity -->
<cac:CarrierParty>
<cac:PartyName>
<cbc:Name>Jan Nowak Transport</cbc:Name>
</cac:PartyName>
<cac:PostalAddress>
<cac:AddressLine>
<cbc:Line>ul. Bukowa 5</cbc:Line>
</cac:AddressLine>
<cac:AddressLine>
<cbc:Line>00-004 Poznań</cbc:Line>
</cac:AddressLine>
<cac:Country>
<cbc:IdentificationCode>PL</cbc:IdentificationCode>
</cac:Country>
</cac:PostalAddress>
</cac:CarrierParty>
<!-- code omitted for clarity -->
</cac:Delivery>
</ubl:Invoice>
Updated about 10 hours ago
