VRBL: Payees
Payees are the parties who receive payments.
Note
You only use this when the party who receives payment is not the Supplier that is specified in the AccountingSupplierParty element.
You can model Payees and Payee information in a number of ways using the following elements:
Element | Description |
---|---|
PayeeParty | You can use this element to specify details like the Payee's name. |
PaymentMeans | You can use the PayeeFinancialAccount element to specify the Payee's bank account. |
PersonConfirmingPayment (Italy only) | In Italy, there is an Extension that you can use to specify the person who confirms the payment. See Italy: Payee Data. |
Factoring
When you do need to model a Payee, this usually indicates that factoring is involved. A Factoring Agent can purchase an invoice from a Supplier for a fraction of the total. When the invoice is due, payment is sent to the Factoring agent. You may want to model this in your Documents.
To model the assignment of a Document to a factor, you must fulfil the following requirements:
- A disclaimer should be added. You can use the Note element to do so. More information about notes is also provided in the Invoice Note topic.
- The Factoring Agent must be identified as the Payee.
Elements
PayeeParty
Use the PayeeParty information to model the Payee information:
Element | Cardinality | Description |
---|---|---|
Payment Receiver (Invoice/PayeeParty ) | 0..1 | A group of information about the Payee. |
Payee Identifier | ||
Payee Identification Group (Invoice/PayeeParty/PartyIdentification ) | 0..1 | Groups identifying information about the Payee. |
Payee Name (Invoice/PayeeParty/PartyIdentification/ID ) | 1..1 | The identifier of the party. |
Payee Name - Scheme Identifier (Invoice/PayeeParty/PartyIdentification/ID @schemeID ) | 1..0 | The attribute that identifies the scheme to which the ID belongs. Use one of the values form the ISO 6523 ICD list here. |
Payee Trading Name | ||
Party Identification (Invoice/PayeeParty/PartyName ) | 1..1 | Groups information about the Payee's trading name. |
Payee Trading Name (Invoice/PayeeParty/PartyName/Name ) | 1..1 | The payee's trading name. |
Payee Legal Registration | ||
Payee's Legal Entity (Invoice/PayeeParty/PartyName/PartyLegalEntity ) | 0..1 | Groups information about the Payee's legal registration. |
Payee's Legal Registration Identifier(Invoice/PayeeParty/PartyName/PartyLegalEntity/CompanyID ) | 1..1 | The payee's company ID. |
PaymentMeans
Use the PaymentMeans element to model the following information about the Payee's financial account:
Element | Cardinality | Description |
---|---|---|
Payment Instructions Group (Invoice/PaymentMeans ) | 0..n | Group of elements that models information about how the payment was made. |
Payment Means Type Code (Invoice/PaymentMeans/PaymentMeansCode ) | 1..1 | The code that represents the payment method. See UNCL4461 . This can be named in an attribute, for example: <cbc:PaymentMeansCode name="Credit transfer">30</cbc:PaymentMeansCode> |
Payment Means Type Code (Invoice/PaymentMeans/PaymentMeansCode @name ) | 0..1 | The means, expressed as name. |
Payment Instruction ID (Invoice/PaymentMeans/PaymentID ) | 0..1 | The identifier of the payment. |
Credit Transfer | ||
Credit Transfer Group (Invoice/PaymentMeans/PayeeFinancialAccount ) | 0..1 | A group of elements to specify credit transfer payments. |
Payment Account Identifier (Invoice/PaymentMeans/PayeeFinancialAccount/ID ) | 1..1 | The identifier of the Payee's bank account. |
Payment Account Name (Invoice/PaymentMeans/PayeeFinancialAccount/Name ) | 0..1 | The name of the Payee's bank account. |
Financial Institution Branch (Invoice/PaymentMeans/PayeeFinancialAccount/Name/ FinancialInstitutionBranch/ ) | 0..1 | |
Financial Institution Branch (Invoice/PaymentMeans/PayeeFinancialAccount/Name/ FinancialInstitutionBranch/ID ) | 1..1 | The identifier for the Payee's bank or other financial institution. |
Card Payment | ||
Payment Card Information Group (Invoice/PaymentMeans/CardAccount ) | 0..1 | Groups information about a card payment. |
Payment Card Primary Account Number (Invoice/PaymentMeans/CardAccount/PrimaryAccountNumberID ) | 0..1 | The Primary Account Number (PAN) of the card used for payment. |
Network ID (Invoice/PaymentMeans/CardAccount/NetworkID ) | 0..1 | Used to identify the financial service network provider of the card. |
Payment Card Holder Name (Invoice/PaymentMeans/CardAccount/HolderName ) | 0..1 | The name of the payment card holder. |
Direct Debit | ||
Direct Debit Group (Invoice/PaymentMeans/PaymentMandate/ ) | 0..1 | Groups information about a direct debit. |
Mandate Reference Identifier (Invoice/PaymentMeans/PaymentMandate/ID ) | 0..1 | Unique identifier assigned by the Payee for referencing the direct debit mandate. |
Payer Financial Account Group (Invoice/PaymentMeans/PaymentMandate/PayerFinancialAccount ) | 0..1 | Groups information about the Payer's financial account. |
Debited account identifier (Invoice/PaymentMeans/PaymentMandate/PayerFinancialAccount/ID ) | 1..1 | The account to be debited by the direct debit. |
Examples
PayeeParty
<ubl:Invoice>
<cac:PayeeParty>
<!-- Code omitted for clarity -->
<cac:PartyName>
<cbc:Name>Payee SRL</cbc:Name>
</cac:PartyName>
</cac:PayeeParty>
</ubl:Invoice>
PaymentMeans
The following example uses the PaymentMeans element to specify the Payee's bank account:
<ubl:Invoice>
<!-- Code omitted for clarity -->
<cac:PaymentMeans>
<cbc:PaymentMeansCode>58</cbc:PaymentMeansCode>
<cac:PayeeFinancialAccount>
<cbc:ID>DE091111222233334444</cbc:ID>
</cac:PayeeFinancialAccount>
</cac:PaymentMeans>
<!-- Code omitted for clarity -->
</ubl:Invoice>
Italian Extension
The following example uses the PersonConfirmingPayment Extension to allow for modeling of Payee data in Italy. This is from the Italy: Payee Data topic:
<ubl:Invoice>
<cec:UBLExtensions>
<cec:UBLExtension>
<cec:ExtensionContent>
<vrbl:PayeePartyExtension>
<vrbl:PersonConfirmingPayment>
<cbc:FamilyName>Rossi</cbc:FamilyName>
<cbc:FirstName>Mario</cbc:FirstName>
<cbc:Title>Dott.</cbc:Title>
<vrbl:FiscalCode>5566778899</vrbl:FiscalCode>
</vrbl:PersonConfirmingPayment>
</vrbl:PayeePartyExtension>
</cec:ExtensionContent>
</cec:UBLExtension>
</cec:UBLExtensions>
</ubl:Invoice>
Updated 14 days ago