UnableToApplyV09

camt.026.001.09

Scope The UnableToApply message is sent by a case creator or a case assigner to a case assignee. This message is used to initiate an investigation of a payment instruction that cannot be executed or reconciled. Usage The Unable To Apply case occurs in two situations:

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
%% UnableToApplyV09 recursion level 0 with max 0
UnableToApplyV09 *-- "1..1" CaseAssignment5 : Assignment
UnableToApplyV09 *-- "0..1" Case5 : Case
UnableToApplyV09 *-- "1..1" IUnderlyingTransaction7Choice : Underlying
UnableToApplyV09 *-- "1..1" IUnableToApplyJustification4Choice : Justification
UnableToApplyV09 *-- "0..1" SupplementaryData1 : SupplementaryData
  

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

Assignment building block

Identifies the assignment of an investigation case from an assigner to an assignee. Usage: The assigner must be the sender of this confirmation and the assignee must be the receiver. Represents the assignment of a case to a party. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% CaseAssignment5 recursion level 0 with max 1
class CaseAssignment5{
    Identification IsoMax35Text
    CreationDateTime IsoISODateTime
}
CaseAssignment5 *-- "1..1" IParty40Choice : Assigner
CaseAssignment5 *-- "1..1" IParty40Choice : Assignee
%% IParty40Choice recursion level 1 with max 1
%% IParty40Choice recursion level 1 with max 1
  

CaseAssignment5 members

Member name Description Data Type / Multiplicity
Identification Uniquely identifies the case assignment. IsoMax35Text - Required 1..1
Assigner Party who assigns the case. Usage: This is also the sender of the message.
Assignee Party to which the case is assigned. Usage: This is also the receiver of the message.
CreationDateTime Date and time at which the assignment was created. IsoISODateTime - Required 1..1

Case building block

Identifies the investigation case. Provides further details to identify an investigation case. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% Case5 recursion level 0 with max 1
class Case5{
    Identification IsoMax35Text
    ReopenCaseIndication IsoYesNoIndicator
}
Case5 *-- "1..1" IParty40Choice : Creator
%% IParty40Choice recursion level 1 with max 1
  

Case5 members

Member name Description Data Type / Multiplicity
Identification Uniquely identifies the case. IsoMax35Text - Required 1..1
Creator Party that created the investigation case. IParty40Choice - Required 1..1
ReopenCaseIndication Indicates whether or not the case was previously closed and is now re-opened. IsoYesNoIndicator - Optional 0..1

Underlying building block

References the payment instruction or statement entry that a party is unable to execute or unable to reconcile. Provides details of the underlying transaction, on which the investigation is processed. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% IUnderlyingTransaction7Choice recursion level 0 with max 1
  

UnderlyingTransaction7Choice members

Member name Description Data Type / Multiplicity

Justification building block

Explains the reason why the case creator is unable to apply the instruction. Specifies the details of missing or incorrect information or the complete set of available information. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% IUnableToApplyJustification4Choice recursion level 0 with max 1
  

UnableToApplyJustification4Choice members

Member name Description Data Type / Multiplicity

SupplementaryData building block

Additional information that cannot be captured in the structured elements and/or any other specific block. Additional information that can not be captured in the structured fields and/or any other specific block. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% SupplementaryData1 recursion level 0 with max 1
class SupplementaryData1{
    PlaceAndName IsoMax350Text
}
SupplementaryData1 *-- "1..1" IsoSupplementaryDataEnvelope1 : Envelope
%% IsoSupplementaryDataEnvelope1 recursion level 1 with max 1
  

SupplementaryData1 members

Member name Description Data Type / Multiplicity
PlaceAndName Unambiguous reference to the location where the supplementary data must be inserted in the message instance. In the case of XML, this is expressed by a valid XPath. IsoMax350Text - Optional 0..1
Envelope Technical element wrapping the supplementary data. IsoSupplementaryDataEnvelope1 - Required 1..1

Extensibility and generalization considerations

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

classDiagram
    class IOuterRecord
    UnableToApplyV09 --|> IOuterRecord : Implements
    UnableToApplyV09Document --|> IOuterDocument~UnableToApplyV09~ : Implements
    class IOuterDocument~UnableToApplyV09~ {
        UnableToApplyV09 Message
     }
  

Document wrapper for serialization

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

classDiagram
    UnableToApplyV09Document *-- UnableToApplyV09 : 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.026.001.09">
    <UblToApply>
        <Assgnmt>
            <!-- Assignment inner content -->
        </Assgnmt>
        <Case>
            <!-- Case inner content -->
        </Case>
        <Undrlyg>
            <!-- Underlying inner content -->
        </Undrlyg>
        <Justfn>
            <!-- Justification inner content -->
        </Justfn>
        <SplmtryData>
            <!-- SupplementaryData inner content -->
        </SplmtryData>
    </UblToApply>
</Document>

Data from ISO specification

This is the technical data from the specification document.

<messageDefinition
  xmi:id="_IBknk9cBEeq_l4BJLVUF2Q"
  previousVersion="_LwBbG8P_Eemsic1bQcEtLA"
  name="UnableToApplyV09"
  definition="Scope&#xD;&#xA;The UnableToApply message is sent by a case creator or a case assigner to a case assignee. This message is used to initiate an investigation of a payment instruction that cannot be executed or reconciled.&#xD;&#xA;Usage&#xD;&#xA;The Unable To Apply case occurs in two situations:&#xD;&#xA;- an agent cannot execute the payment instruction due to missing or incorrect information;&#xD;&#xA;- a creditor cannot reconcile the payment entry as it is received unexpectedly, or missing or incorrect information prevents reconciliation.&#xD;&#xA;The UnableToApply message:&#xD;&#xA;- always follows the reverse route of the original payment instruction;&#xD;&#xA;- must be forwarded to the preceding agents in the payment processing chain, where appropriate;&#xD;&#xA;- covers one and only one payment instruction (or payment entry) at a time; if several payment instructions cannot be executed or several payment entries cannot be reconciled, then multiple UnableToApply messages must be sent.&#xD;&#xA;Depending on what stage the payment is and what has been done to it, for example incorrect routing, errors/omissions when processing the instruction or even the absence of any error, the unable to apply case may lead to a:&#xD;&#xA;- AdditionalPaymentInformation message, sent to the case creator/case assigner, if a truncation or omission in a payment instruction prevented reconciliation;&#xD;&#xA;- CustomerPaymentCancellationRequest or FIToFIPaymentCancellationRequest message, sent to the subsequent agent in the payment processing chain, if the original payment instruction has been incorrectly routed through the chain of agents (this also entails a new corrected payment instruction being issued). Prior to sending the payment cancellation request, the agent should first send a resolution indicating that a cancellation will follow (CWFW);&#xD;&#xA;- RequestToModifyPayment message, sent to the subsequent agent in the payment processing chain, if a truncation or omission has occurred during the processing of the original payment instruction. Prior to sending the modify payment request, the agent should first send a resolution indicating that a modification will follow (MWFW);&#xD;&#xA;- DebitAuthorisationRequest message, sent to the case creator/case assigner, if the payment instruction has reached an incorrect creditor.&#xD;&#xA;The UnableToApply message has the following main characteristics:&#xD;&#xA;The case creator (the instructed party/creditor of a payment instruction) assigns a unique case identification and optionally the reason code for the UnableToApply message. This information will be passed unchanged to all subsequent case assignees.&#xD;&#xA;The case creator specifies the identification of the underlying payment instruction. This identification needs to be updated by the subsequent case assigner(s) in order to match the one used with their case assignee(s).&#xD;&#xA;The UnableToApply Justification element allows the assigner to indicate whether a specific element causes the unable to apply situation (incorrect element and/or mismatched element can be listed) or whether any supplementary information needs to be forwarded."
  registrationStatus="Registered"
  messageSet="_moz48_2VEeGjgKzdN0DbWA"
  xmlTag="UblToApply"
  rootElement="Document"
  xmlns:xmi="http://www.omg.org/XMI">
  <messageBuildingBlock
    xmi:id="_IBknm9cBEeq_l4BJLVUF2Q"
    previousVersion="_LwBbI8P_Eemsic1bQcEtLA"
    name="Assignment"
    definition="Identifies the assignment of an investigation case from an assigner to an assignee.&#xD;&#xA;Usage: The assigner must be the sender of this confirmation and the assignee must be the receiver."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="Assgnmt"
    complexType="_BzPdIW49EeiU9cctagi5ow" />
  <messageBuildingBlock
    xmi:id="_IBknndcBEeq_l4BJLVUF2Q"
    previousVersion="_LwBbJcP_Eemsic1bQcEtLA"
    name="Case"
    definition="Identifies the investigation case."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="Case"
    complexType="_8BF4W248EeiU9cctagi5ow" />
  <messageBuildingBlock
    xmi:id="_IBknn9cBEeq_l4BJLVUF2Q"
    previousVersion="_LwBbJ8P_Eemsic1bQcEtLA"
    name="Underlying"
    definition="References the payment instruction or statement entry that a party is unable to execute or unable to reconcile."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="Undrlyg"
    complexType="_ef6I4dcZEeqRFcf2R4bPBw" />
  <messageBuildingBlock
    xmi:id="_IBknodcBEeq_l4BJLVUF2Q"
    previousVersion="_LwBbKcP_Eemsic1bQcEtLA"
    name="Justification"
    definition="Explains the reason why the case creator is unable to apply the instruction."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="Justfn"
    complexType="_7JifAdjKEeq5MfBBxQig1Q" />
  <messageBuildingBlock
    xmi:id="_IBkno9cBEeq_l4BJLVUF2Q"
    previousVersion="_LwBbK8P_Eemsic1bQcEtLA"
    name="SupplementaryData"
    definition="Additional information that cannot be captured in the structured elements and/or any other specific block."
    registrationStatus="Provisionally Registered"
    minOccurs="0"
    xmlTag="SplmtryData"
    complexType="_Qn0zC9p-Ed-ak6NoX_4Aeg_468227563" />
  <messageDefinitionIdentifier
    businessArea="camt"
    messageFunctionality="026"
    flavour="001"
    version="09" />
</messageDefinition>

ISO Building Blocks

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