VRBL: Payment Receivers (Payees)

You may want to model a Payee when this party is different to the Supplier.

🚧

Caution

You only use this when the party who receives payment is not the Supplier that is specified in the AccountingSupplierParty element.

Use the PayeeParty element to model this information.

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

Payee Identifier

Use the following elements to model the Payee's ID:

ElementDescription
Invoice/PayeeParty/PartyIdentification/IDThe identifier of the party.
Invoice/PayeeParty/PartyIdentification/ID @schemeIDThe attribute that identifies the scheme. Use one of the values form the ISO 6523 ICD list here .

Payee Trading Name

ElementDescription
Invoice/PayeeParty/PartyName/NameThe payee's name.
Invoice/PayeeParty/PartyName/PartyLegalEntity/CompanyIDThe payee's company ID.

Payee Legal Registration

The legal registration number is an identifier issued by an official registrar that identifies the Buyer as a legal entity or person. It is also known as the business registration number (BRN).

ElementDescription
Invoice/PayeeParty/PartyLegalEntity/CompanyIDThe payee's company ID.
Invoice/PayeeParty/PartyLegalEntity/CompanyID @schemeID

Example

<Invoice>
    <!-- code omitted for clarity -->
    <cac:PayeeParty>
        <cac:PartyIdentification>
            <cbc:ID schemeID="0192">987654325</cbc:ID> â’¶
        </cac:PartyIdentification>
        <cac:PartyName>
            <cbc:Name>Payee party</cbc:Name> â’·
        </cac:PartyName>
        <cac:PartyLegalEntity>
            <cbc:CompanyID schemeID="0192">987654325</cbc:CompanyID> â’¸
        </cac:PartyLegalEntity>
    </cac:PayeeParty>
    <!-- code omitted for clarity -->
</Invoice>