ClaimNonReceipt

camt.027.001.01

Scope The Claim Non Receipt message is sent by a case creator/case assigner to a case assignee. This message allows to initiate an investigation in case the beneficiary of a payment has not received an expected payment. Usage Note 1: Although there are cases where a creditor would contact the creditor’s bank when claiming non-receipt, the activity only retained the scenario where the beneficiary claims non-receipt with its debtor, the debtor in its turn contacting the first agent. Therefore the investigation follows the same route as the original instruction. Note 2: This message is also used to report a missing cover. The rationale behind this is that the beneficiary of the cover (receiver of the payment instruction) missing the cover would be in the very same position as a beneficiary expecting a credit to its account and would therefore trigger the same processes. In case of a Missing cover, the case will be assigned to the sender of the payment instruction, before following the route of the payment instruction.

Message Construction

Every ISO20022 message has at the highest level what we call ‘building blocks’. Because the message is constructed as immutable records, the association is by composition. Below you can see the relationship between the message and its constituent building blocks: For comparison, see the ISO20022 official specification

classDiagram
     direction LR
%% ClaimNonReceipt recursion level 0 with max 0
ClaimNonReceipt *-- "1..1" CaseAssignment : Assignment
ClaimNonReceipt *-- "1..1" Case : Case
ClaimNonReceipt *-- "1..1" PaymentInstructionExtract : Underlying
ClaimNonReceipt *-- "0..1" MissingCover : MissingCover
  

Now, we will zero-in one-by-one on each of these building blocks.

Assignment building block

Identifies an assignment. Represents the assignment of a case to a party. Assignment is a step in the overall process of managing a case. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% CaseAssignment recursion level 0 with max 1
class CaseAssignment{
    Identification IsoMax35Text
    Assigner IsoAnyBICIdentifier
    Assignee IsoAnyBICIdentifier
    CreationDateTime IsoISODateTime
}
  

CaseAssignment members

Member name Description Data Type / Multiplicity
Identification Identification of an assignment within a case. IsoMax35Text - Required 1..1
Assigner Party that assigns the case to another party. This is also the sender of the message. IsoAnyBICIdentifier - Required 1..1
Assignee Party that the case is assigned to. This is also the receiver of the message. IsoAnyBICIdentifier - Required 1..1
CreationDateTime Date and time at which the assignment was created. IsoISODateTime - Required 1..1

Case building block

Identifies a case. Information identifying a case. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% Case recursion level 0 with max 1
class Case{
    Identification IsoMax35Text
    Creator IsoAnyBICIdentifier
    ReopenCaseIndication IsoYesNoIndicator
}
  

Case members

Member name Description Data Type / Multiplicity
Identification Unique id assigned by the case creator. IsoMax35Text - Required 1..1
Creator Party that created the case. IsoAnyBICIdentifier - Required 1..1
ReopenCaseIndication Set to yes if the case was closed and needs to be re-opened. IsoYesNoIndicator - Optional 0..1

Underlying building block

Identifies the payment instruction for which the Creditor has not received the funds. Note: In case of a missing cover, it must be the Field 20 of the received MT103. In case of a claim non receipt initiated by the Debtor, it must be the identification of the instruction (Field 20 of MT103, Instruction Identification of the Payment Initiation or the Bulk Credit Transfer). Details of a payment instruction. The information contained in this component is sufficient to retrieve a payment instruction. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% PaymentInstructionExtract recursion level 0 with max 1
class PaymentInstructionExtract{
    AssignerInstructionIdentification IsoMax35Text
    AssigneeInstructionIdentification IsoMax35Text
    CurrencyAmount IsoCurrencyAndAmount
    ValueDate IsoISODateTime
}
  

PaymentInstructionExtract members

Member name Description Data Type / Multiplicity
AssignerInstructionIdentification Identification of the payment instruction (eg, field 20 of an MT 103) when meaningful to the case assigner. IsoMax35Text - Optional 0..1
AssigneeInstructionIdentification Identification of the payment instruction (eg, field 20 of an MT 103) when meaningful to the case assignee. IsoMax35Text - Optional 0..1
CurrencyAmount Amount of the payment. Depending on the context it can be either the amount settled (UnableToApply) or the instructed amount (RequestToCancel, RequestToModify, ClaimNonReceipt). IsoCurrencyAndAmount - Optional 0..1
ValueDate Value date of the payment. IsoISODateTime - Optional 0..1

MissingCover building block

Indicates if the claim non receipt is a missing cover. The absence of the component means that the message is not for a missing cover. Indicates that the claim for non receipt is effectively a missing cover. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% MissingCover recursion level 0 with max 1
class MissingCover{
    MissingCoverIndication IsoYesNoIndicator
}
  

MissingCover members

Member name Description Data Type / Multiplicity
MissingCoverIndication Indicates whether or not the claim is related to a missing cover. IsoYesNoIndicator - Required 1..1

Extensibility and generalization considerations

To facilitate generalized design patterns in the system, the ClaimNonReceipt implementation follows a specific implementaiton pattern. First of all, ClaimNonReceipt impleemnts IOuterRecord indicating it is the outermost logical part of the message definition. Like all message wrappers, ClaimNonReceiptDocument implements IOuterDocument. Because ClaimNonReceipt implements IOuterDocument, it is a suitable template parameter for IOuterDocument, and causes the internal ‘Message’ to be of type ClaimNonReceipt.

classDiagram
    class IOuterRecord
    ClaimNonReceipt --|> IOuterRecord : Implements
    ClaimNonReceiptDocument --|> IOuterDocument~ClaimNonReceipt~ : Implements
    class IOuterDocument~ClaimNonReceipt~ {
        ClaimNonReceipt Message
     }
  

Document wrapper for serialization

The only real purpose ClaimNonReceiptDocument serves is to cause the document to be serialized into the ‘urn:iso:std:iso:20022:tech:xsd:camt.027.001.01’ namespace. Therefore, it will probably be the usual practice to build the message and construct this wrapper at the last minute using ClaimNonReceipt.ToDocument() method. The returned ClaimNonReceiptDocument value will serialize correctly according to ISO 20022 standards.

classDiagram
    ClaimNonReceiptDocument *-- ClaimNonReceipt : Document
  

Sample of message format

This is an abbreviated version of what the message should look like.

<Document xmlns="urn:iso:std:iso:20022:tech:xsd:camt.027.001.01">
    <camt.027.001.01>
        <Assgnmt>
            <!-- Assignment inner content -->
        </Assgnmt>
        <Case>
            <!-- Case inner content -->
        </Case>
        <Undrlyg>
            <!-- Underlying inner content -->
        </Undrlyg>
        <MssngCover>
            <!-- MissingCover inner content -->
        </MssngCover>
    </camt.027.001.01>
</Document>

Data from ISO specification

This is the technical data from the specification document.

<messageDefinition
  xmi:id="_QSbl2NE-Ed-BzquC8wXy7w_1911280425"
  name="ClaimNonReceipt"
  definition="Scope&#xA;The Claim Non Receipt message is sent by a case creator/case assigner to a case assignee.&#xA;This message allows to initiate an investigation in case the beneficiary of a payment has not received an expected payment.&#xA;Usage&#xA;Note 1: Although there are cases where a creditor would contact the creditor's bank when claiming non-receipt, the activity only retained the scenario where the beneficiary claims non-receipt with its debtor, the debtor in its turn contacting the first agent. Therefore the investigation follows the same route as the original instruction.&#xA;Note 2: This message is also used to report a missing cover. The rationale behind this is that the beneficiary of the cover (receiver of the payment instruction) missing the cover would be in the very same position as a beneficiary expecting a credit to its account and would therefore trigger the same processes.&#xA;In case of a Missing cover, the case will be assigned to the sender of the payment instruction, before following the route of the payment instruction."
  registrationStatus="Registered"
  messageSet="_urpIICeJEeOCeO5e7islRQ"
  xmlName="camt.027.001.01"
  xmlTag="camt.027.001.01"
  rootElement="Document"
  xmlns:xmi="http://www.omg.org/XMI">
  <messageBuildingBlock
    xmi:id="_QSlW0NE-Ed-BzquC8wXy7w_830291630"
    name="Assignment"
    definition="Identifies an assignment."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="Assgnmt"
    complexType="_T9Dpetp-Ed-ak6NoX_4Aeg_588710247" />
  <messageBuildingBlock
    xmi:id="_QSlW0dE-Ed-BzquC8wXy7w_843221783"
    name="Case"
    definition="Identifies a case."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="Case"
    complexType="_SpAnotp-Ed-ak6NoX_4Aeg_136183535" />
  <messageBuildingBlock
    xmi:id="_QSlW0tE-Ed-BzquC8wXy7w_857073686"
    name="Underlying"
    definition="Identifies the payment instruction for which the Creditor has not received the funds.&#xA;Note: &#xA;In case of a missing cover, it must be the Field 20 of the received MT103.&#xA;In case of a claim non receipt initiated by the Debtor, it must be the identification of the instruction (Field 20 of MT103, Instruction Identification of the Payment Initiation or the Bulk Credit Transfer)."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="Undrlyg"
    complexType="_VQgOUtp-Ed-ak6NoX_4Aeg_-769020295" />
  <messageBuildingBlock
    xmi:id="_QSlW09E-Ed-BzquC8wXy7w_-476196427"
    name="MissingCover"
    definition="Indicates if the claim non receipt is a missing cover. The absence of the component means that the message is not for a missing cover."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="MssngCover"
    complexType="_T9zQWdp-Ed-ak6NoX_4Aeg_-539916461" />
  <messageDefinitionIdentifier
    businessArea="camt"
    messageFunctionality="027"
    flavour="001"
    version="01" />
</messageDefinition>

ISO Building Blocks

The following items are used as building blocks to construct this message.