RejectInvestigationV05

camt.031.001.05

Scope The Reject Investigation message is sent by a case assignee to a case creator or case assigner to reject a case given to him. Usage The Reject Investigation message is used to notify the case creator or case assigner the rejection of an assignment by the case assignee in a:

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
%% RejectInvestigationV05 recursion level 0 with max 0
RejectInvestigationV05 *-- "1..1" CaseAssignment4 : Assignment
RejectInvestigationV05 *-- "0..1" Case4 : Case
RejectInvestigationV05 *-- "1..1" InvestigationRejectionJustification1 : Justification
RejectInvestigationV05 *-- "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
%% CaseAssignment4 recursion level 0 with max 1
class CaseAssignment4{
    Identification IsoMax35Text
    CreationDateTime IsoISODateTime
}
CaseAssignment4 *-- "1..1" IParty35Choice : Assigner
CaseAssignment4 *-- "1..1" IParty35Choice : Assignee
%% IParty35Choice recursion level 1 with max 1
%% IParty35Choice recursion level 1 with max 1
  

CaseAssignment4 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
%% Case4 recursion level 0 with max 1
class Case4{
    Identification IsoMax35Text
    ReopenCaseIndication IsoYesNoIndicator
}
Case4 *-- "1..1" IParty35Choice : Creator
%% IParty35Choice recursion level 1 with max 1
  

Case4 members

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

Justification building block

Specifies the reason for the rejection of an investigation. Provides the reason for rejecting the case assignment. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% InvestigationRejectionJustification1 recursion level 0 with max 1
class InvestigationRejectionJustification1{
    RejectionReason InvestigationRejection1Code
}
  

InvestigationRejectionJustification1 members

Member name Description Data Type / Multiplicity
RejectionReason Reason for the rejection of a case assignment, in a coded form. InvestigationRejection1Code - Required 1..1

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 RejectInvestigationV05 implementation follows a specific implementaiton pattern. First of all, RejectInvestigationV05 impleemnts IOuterRecord indicating it is the outermost logical part of the message definition. Like all message wrappers, RejectInvestigationV05Document implements IOuterDocument. Because RejectInvestigationV05 implements IOuterDocument, it is a suitable template parameter for IOuterDocument, and causes the internal ‘Message’ to be of type RejectInvestigationV05.

classDiagram
    class IOuterRecord
    RejectInvestigationV05 --|> IOuterRecord : Implements
    RejectInvestigationV05Document --|> IOuterDocument~RejectInvestigationV05~ : Implements
    class IOuterDocument~RejectInvestigationV05~ {
        RejectInvestigationV05 Message
     }
  

Document wrapper for serialization

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

classDiagram
    RejectInvestigationV05Document *-- RejectInvestigationV05 : 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.031.001.05">
    <RjctInvstgtn>
        <Assgnmt>
            <!-- Assignment inner content -->
        </Assgnmt>
        <Case>
            <!-- Case inner content -->
        </Case>
        <Justfn>
            <!-- Justification inner content -->
        </Justfn>
        <SplmtryData>
            <!-- SupplementaryData inner content -->
        </SplmtryData>
    </RjctInvstgtn>
</Document>

Data from ISO specification

This is the technical data from the specification document.

<messageDefinition
  xmi:id="_nNMjZ6qDEeeMmtkfa8-zPg"
  nextVersions="_eX_Ok22PEei3KuUgpx7Xcw"
  previousVersion="_sReoIlkyEeGeoaLUQk__nA_152798940"
  name="RejectInvestigationV05"
  definition="Scope&#xD;&#xA;The Reject Investigation message is sent by a case assignee to a case creator or case assigner to reject a case given to him.&#xD;&#xA;Usage&#xD;&#xA;The Reject Investigation message is used to notify the case creator or case assigner the rejection of an assignment by the case assignee in a:&#xD;&#xA;- request to cancel payment case&#xD;&#xA;- request to modify payment case&#xD;&#xA;- unable to apply case&#xD;&#xA;- claim non receipt case&#xD;&#xA;Rejecting a case assignment occurs when:&#xD;&#xA;- the case assignee is unable to trace the original payment instruction&#xD;&#xA;- the case assignee is unable, or does not have authority, to process the assigned case (indicate &quot;You have by-passed a party&quot;,&#xD;&#xA;- the case assignee has received a non expected message, and rejects the message with a wrong message indicator&#xD;&#xA;- the case assignee has not yet received the Resolution Of Investigation message and the case has already been reopened&#xD;&#xA;- the case assignee has rejects an non-cash related query&#xD;&#xA;The Reject Investigation message covers one and only one case at a time. If the case assignee needs to reject several case assignments, then multiple Reject Investigation messages must be sent.&#xD;&#xA;The Reject Investigation message must be forwarded by all subsequent case assignee(s) until it reaches the case assigner and must not be used in place of a Resolution Of Investigation or Case Status Report message."
  registrationStatus="Registered"
  messageSet="_wRx2xk2rEeG_I4xRYCA_7g"
  xmlTag="RjctInvstgtn"
  rootElement="Document"
  xmlns:xmi="http://www.omg.org/XMI">
  <messageBuildingBlock
    xmi:id="_nNMjaaqDEeeMmtkfa8-zPg"
    nextVersions="_eX_OlW2PEei3KuUgpx7Xcw"
    previousVersion="_sReoI1kyEeGeoaLUQk__nA_186122745"
    name="Assignment"
    definition="Identifies the assignment of an investigation case from an assigner to an assignee.&#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="_HIRcwbTgEeef0oKPLRNatg" />
  <messageBuildingBlock
    xmi:id="_nNMja6qDEeeMmtkfa8-zPg"
    nextVersions="_eX_Ol22PEei3KuUgpx7Xcw"
    previousVersion="_sReoJFkyEeGeoaLUQk__nA_-697110542"
    name="Case"
    definition="Identifies the investigation case."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="Case"
    complexType="_mm8A4bTREeeyuKckOGlwuA" />
  <messageBuildingBlock
    xmi:id="_nNMjbaqDEeeMmtkfa8-zPg"
    nextVersions="_eX_OmW2PEei3KuUgpx7Xcw"
    previousVersion="_sReoJVkyEeGeoaLUQk__nA_-810949608"
    name="Justification"
    definition="Specifies the reason for the rejection of an investigation."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="Justfn"
    complexType="_T-ZtQNp-Ed-ak6NoX_4Aeg_947706668" />
  <messageBuildingBlock
    xmi:id="_nNMjb6qDEeeMmtkfa8-zPg"
    nextVersions="_eX_Om22PEei3KuUgpx7Xcw"
    previousVersion="_sRoZIFkyEeGeoaLUQk__nA_-295840138"
    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="031"
    flavour="001"
    version="05" />
</messageDefinition>

ISO Building Blocks

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