IdentificationModificationAdviceV02

acmt.022.001.02

Scope The IdentificationModificationAdvice message is sent by an assigner to an assignee. The message is used to advice on the correct party and/or account identification information. Usage The IdentificationModificationAdvice message is sent after the receipt of one or several transaction messages that included no longer valid party and/or account identification information. The IdentificationModificationAdvice message is exchanged between financial institutions and between financial institutions and non financial institutions and can contain one or more modification advises. There is no time limit on the time between the sending of an IdentificationModificationAdvice message and the receipt of the transaction messages that the IdentificationModificationAdvice refers to. The IdentificationModificationAdvice includes the correct party and/or account identification information, the IdentificationModificationAdvice or the included information may be forwarded to the initiating party of the transaction messages.

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
%% IdentificationModificationAdviceV02 recursion level 0 with max 0
IdentificationModificationAdviceV02 *-- "1..1" IdentificationAssignment2 : Assignment
IdentificationModificationAdviceV02 *-- "0..1" OriginalTransactionReference18 : OriginalTransactionReference
IdentificationModificationAdviceV02 *-- "1..1" IdentificationModification2 : Modification
IdentificationModificationAdviceV02 *-- "0..1" SupplementaryData1 : SupplementaryData
  

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

Assignment building block

Identifies the identification assignment. Provides the details of the identification assignment. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% IdentificationAssignment2 recursion level 0 with max 1
class IdentificationAssignment2{
    MessageIdentification IsoMax35Text
    CreationDateTime IsoISODateTime
}
IdentificationAssignment2 *-- "0..1" IParty12Choice : Creator
IdentificationAssignment2 *-- "0..1" BranchAndFinancialInstitutionIdentification5 : FirstAgent
IdentificationAssignment2 *-- "1..1" IParty12Choice : Assigner
IdentificationAssignment2 *-- "1..1" IParty12Choice : Assignee
%% IParty12Choice recursion level 1 with max 1
%% BranchAndFinancialInstitutionIdentification5 recursion level 1 with max 1
BranchAndFinancialInstitutionIdentification5 *-- "1..1" FinancialInstitutionIdentification8 : FinancialInstitutionIdentification
BranchAndFinancialInstitutionIdentification5 *-- "0..1" BranchData2 : BranchIdentification
%% IParty12Choice recursion level 1 with max 1
%% IParty12Choice recursion level 1 with max 1
  

IdentificationAssignment2 members

Member name Description Data Type / Multiplicity
MessageIdentification Point to point reference, as assigned by the assigner, and sent to the next party in the chain to unambiguously identify the message. Usage: The assigner has to make sure that MessageIdentification is unique per assignee for a pre-agreed period. IsoMax35Text - Required 1..1
CreationDateTime Date and time at which the identification assignment was created. IsoISODateTime - Required 1..1
Creator Party that created the identification assignment. IParty12Choice - Optional 0..1
FirstAgent Identifies the first agent in the identification chain, following the payment initiating party. BranchAndFinancialInstitutionIdentification5 - Optional 0..1
Assigner Party that assigns the identification assignment to another party. This is also the sender of the message. IParty12Choice - Required 1..1
Assignee Party that the identification assignment is assigned to. This is also the receiver of the message. IParty12Choice - Required 1..1

OriginalTransactionReference building block

Provides reference information on the original message. Provides reference information to the original message. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% OriginalTransactionReference18 recursion level 0 with max 1
class OriginalTransactionReference18{
    MessageIdentification IsoMax35Text
    MessageNameIdentification IsoMax35Text
    CreationDateTime IsoISODateTime
}
OriginalTransactionReference18 *-- "0..0" PaymentIdentification4 : OriginalTransaction
%% PaymentIdentification4 recursion level 1 with max 1
class PaymentIdentification4{
    InstructionIdentification IsoMax35Text
    EndToEndIdentification IsoMax35Text
    TransactionIdentification IsoMax35Text
    ClearingSystemReference IsoMax35Text
}
PaymentIdentification4 *-- "0..1" BranchAndFinancialInstitutionIdentification5 : FirstAgent
  

OriginalTransactionReference18 members

Member name Description Data Type / Multiplicity
MessageIdentification Point to point reference, as assigned by the original instructing party, to unambiguously identify the original message. IsoMax35Text - Optional 0..1
MessageNameIdentification Specifies the original message name identifier to which the message refers. IsoMax35Text - Optional 0..1
CreationDateTime Date and time at which the original message was created. IsoISODateTime - Optional 0..1
OriginalTransaction Provides reference information to the original transaction. PaymentIdentification4 - Unknown 0..0

Modification building block

Information concerning the identification data that is advised to be modified. Provides the details of the identification data that is advised to be modified. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% IdentificationModification2 recursion level 0 with max 1
class IdentificationModification2{
    Identification IsoMax35Text
    AdditionalInformation IsoMax140Text
}
IdentificationModification2 *-- "0..1" IdentificationInformation2 : OriginalPartyAndAccountIdentification
IdentificationModification2 *-- "1..1" IdentificationInformation2 : UpdatedPartyAndAccountIdentification
%% IdentificationInformation2 recursion level 1 with max 1
IdentificationInformation2 *-- "0..1" PartyIdentification43 : Party
IdentificationInformation2 *-- "0..1" IAccountIdentification4Choice : Account
IdentificationInformation2 *-- "0..1" BranchAndFinancialInstitutionIdentification5 : Agent
%% IdentificationInformation2 recursion level 1 with max 1
IdentificationInformation2 *-- "0..1" PartyIdentification43 : Party
IdentificationInformation2 *-- "0..1" IAccountIdentification4Choice : Account
IdentificationInformation2 *-- "0..1" BranchAndFinancialInstitutionIdentification5 : Agent
  

IdentificationModification2 members

Member name Description Data Type / Multiplicity
Identification Unique identification, as assigned by a sending party, to unambiguously identify the party and account identification information group within the message. IsoMax35Text - Required 1..1
OriginalPartyAndAccountIdentification Provides party and/or account identification information as given in the original message. IdentificationInformation2 - Optional 0..1
UpdatedPartyAndAccountIdentification Provides updated party and/or account identification information. IdentificationInformation2 - Required 1..1
AdditionalInformation Additional information, in free text form, to complement the modification information. IsoMax140Text - Optional 0..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 IdentificationModificationAdviceV02 implementation follows a specific implementaiton pattern. First of all, IdentificationModificationAdviceV02 impleemnts IOuterRecord indicating it is the outermost logical part of the message definition. Like all message wrappers, IdentificationModificationAdviceV02Document implements IOuterDocument. Because IdentificationModificationAdviceV02 implements IOuterDocument, it is a suitable template parameter for IOuterDocument, and causes the internal ‘Message’ to be of type IdentificationModificationAdviceV02.

classDiagram
    class IOuterRecord
    IdentificationModificationAdviceV02 --|> IOuterRecord : Implements
    IdentificationModificationAdviceV02Document --|> IOuterDocument~IdentificationModificationAdviceV02~ : Implements
    class IOuterDocument~IdentificationModificationAdviceV02~ {
        IdentificationModificationAdviceV02 Message
     }
  

Document wrapper for serialization

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

classDiagram
    IdentificationModificationAdviceV02Document *-- IdentificationModificationAdviceV02 : 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:acmt.022.001.02">
    <IdModAdvc>
        <Assgnmt>
            <!-- Assignment inner content -->
        </Assgnmt>
        <OrgnlTxRef>
            <!-- OriginalTransactionReference inner content -->
        </OrgnlTxRef>
        <Mod>
            <!-- Modification inner content -->
        </Mod>
        <SplmtryData>
            <!-- SupplementaryData inner content -->
        </SplmtryData>
    </IdModAdvc>
</Document>

Data from ISO specification

This is the technical data from the specification document.

<messageDefinition
  xmi:id="_sY77A1kyEeGeoaLUQk__nA_-164460400"
  nextVersions="_dgmtDgyYEeukGOovyT2RcQ"
  previousVersion="_sSPRRWtdEeCY4-KZ9JEyUQ_219398369"
  name="IdentificationModificationAdviceV02"
  definition="Scope&#xD;&#xA;The IdentificationModificationAdvice message is sent by an assigner to an assignee. The message is used to advice on the correct party and/or account identification information.&#xD;&#xA;Usage&#xD;&#xA;The IdentificationModificationAdvice message is sent after the receipt of one or several transaction messages that included no longer valid party and/or account identification information.&#xD;&#xA;The IdentificationModificationAdvice message is exchanged between financial institutions and between financial institutions and non financial institutions and can contain one or more modification advises.&#xD;&#xA;There is no time limit on the time between the sending of an IdentificationModificationAdvice message and the receipt of the transaction messages that the IdentificationModificationAdvice refers to.&#xD;&#xA;The IdentificationModificationAdvice includes the correct party and/or account identification information, the IdentificationModificationAdvice or the included information may be forwarded to the initiating party of the transaction messages."
  registrationStatus="Registered"
  messageSet="_2PrREMH1EeGL1qIYRE_WNw"
  xmlTag="IdModAdvc"
  rootElement="Document"
  xmlns:xmi="http://www.omg.org/XMI">
  <messageBuildingBlock
    xmi:id="_sY77BFkyEeGeoaLUQk__nA_-300669747"
    name="Assignment"
    definition="Identifies the identification assignment."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="Assgnmt"
    complexType="_tpGiYVkyEeGeoaLUQk__nA_757109061" />
  <messageBuildingBlock
    xmi:id="_sZFE8FkyEeGeoaLUQk__nA_-1297742100"
    name="OriginalTransactionReference"
    definition="Provides reference information on the original message."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="OrgnlTxRef"
    complexType="_tqS1MlkyEeGeoaLUQk__nA_-2039309166" />
  <messageBuildingBlock
    xmi:id="_sZFE8VkyEeGeoaLUQk__nA_2000152843"
    name="Modification"
    definition="Information concerning the identification data that is advised to be modified."
    registrationStatus="Provisionally Registered"
    minOccurs="1"
    xmlTag="Mod"
    complexType="_tpZdUlkyEeGeoaLUQk__nA_-1518673695" />
  <messageBuildingBlock
    xmi:id="_sZO18FkyEeGeoaLUQk__nA_606246720"
    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="acmt"
    messageFunctionality="022"
    flavour="001"
    version="02" />
</messageDefinition>

ISO Building Blocks

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