sese.004.001.05
Scope An executing party, for example, a transfer agent, sends the ReversalOfTransferOutConfirmation message to the instructing party, for example, an investment manager or its authorised representative, to cancel a previously sent TransferOutConfirmation message. Usage The ReversalOfTransferOutConfirmation message is used to reverse a previously sent TransferOutConfirmation. There are two ways to specify the reversal of the transfer out confirmation. Either:
- the business references, for example, TransferReference, TransferConfirmationIdentification, of the transfer confirmation are quoted, or,
- all the details of the transfer confirmation (this includes TransferReference and TransferConfirmationIdentification) are quoted but this is not recommended. The message identification of the TransferOutConfirmation message in which the transfer out confirmation was conveyed may also be quoted in PreviousReference. The message identification of the TransferOutInstruction message in which the transfer out instruction was conveyed may also be quoted in RelatedReference.
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 %% ReversalOfTransferOutConfirmationV05 recursion level 0 with max 0 ReversalOfTransferOutConfirmationV05 *-- "1..1" MessageIdentification1 : MessageIdentification ReversalOfTransferOutConfirmationV05 *-- "0..1" References15 : References ReversalOfTransferOutConfirmationV05 *-- "1..1" IReversal3Choice : Reversal ReversalOfTransferOutConfirmationV05 *-- "0..1" MarketPracticeVersion1 : MarketPracticeVersion ReversalOfTransferOutConfirmationV05 *-- "0..1" CopyInformation2 : CopyDetails
Now, we will zero-in one-by-one on each of these building blocks.
MessageIdentification building block
Reference that uniquely identifies a message from a business application standpoint. Identifies a message by a unique identifier and the date and time when the message was created by the sender. For comparison, see the ISO20022 official specification
classDiagram direction tb %% MessageIdentification1 recursion level 0 with max 1 class MessageIdentification1{ Identification IsoMax35Text CreationDateTime IsoISODateTime }
MessageIdentification1 members
Member name | Description | Data Type / Multiplicity |
---|---|---|
Identification | Identification of the message. | IsoMax35Text - Required 1..1 |
CreationDateTime | Date of creation of the message. | IsoISODateTime - Required 1..1 |
References building block
Reference to the transaction identifier issued by the counterparty. Building block may also be used to reference a previous transaction, or tie a set of messages together. Reference to the transaction identifier issued by the counterparty. Building block may also be used to reference a previous transaction, or tie a set of messages together. For comparison, see the ISO20022 official specification
classDiagram direction tb %% References15 recursion level 0 with max 1 References15 *-- "0..1" AdditionalReference2 : PoolReference References15 *-- "0..1" AdditionalReference2 : PreviousReference References15 *-- "0..1" AdditionalReference2 : RelatedReference %% AdditionalReference2 recursion level 1 with max 1 class AdditionalReference2{ Reference IsoMax35Text MessageName IsoMax35Text } AdditionalReference2 *-- "0..1" IPartyIdentification1Choice : ReferenceIssuer %% AdditionalReference2 recursion level 1 with max 1 class AdditionalReference2{ Reference IsoMax35Text MessageName IsoMax35Text } AdditionalReference2 *-- "0..1" IPartyIdentification1Choice : ReferenceIssuer %% AdditionalReference2 recursion level 1 with max 1 class AdditionalReference2{ Reference IsoMax35Text MessageName IsoMax35Text } AdditionalReference2 *-- "0..1" IPartyIdentification1Choice : ReferenceIssuer
References15 members
Member name | Description | Data Type / Multiplicity |
---|---|---|
PoolReference | Collective reference identifying a set of messages. | AdditionalReference2 - Optional 0..1 |
PreviousReference | Reference of the linked message that was previously sent. | AdditionalReference2 - Optional 0..1 |
RelatedReference | Reference to a linked message that was previously received. | AdditionalReference2 - Optional 0..1 |
Reversal building block
Choice between reversal by reference or by reversal details. Choice between reversal by reference or by reversal details. For comparison, see the ISO20022 official specification
classDiagram direction tb %% IReversal3Choice recursion level 0 with max 1
Reversal3Choice members
Member name | Description | Data Type / Multiplicity |
---|
MarketPracticeVersion building block
Identifies the market practice to which the message conforms. Identifies the implementation and version. For comparison, see the ISO20022 official specification
classDiagram direction tb %% MarketPracticeVersion1 recursion level 0 with max 1 class MarketPracticeVersion1{ Name IsoMax35Text Date IsoISOYearMonth Number IsoMax35Text }
MarketPracticeVersion1 members
Member name | Description | Data Type / Multiplicity |
---|---|---|
Name | Market practice, for example, “UKTRANSFERS”, “FINDELSLT”. | IsoMax35Text - Required 1..1 |
Date | Year and month, for example, 2013-06. | IsoISOYearMonth - Optional 0..1 |
Number | Version of the market practice. | IsoMax35Text - Optional 0..1 |
CopyDetails building block
Information provided when the message is a copy of a previous message. Information provided when the message is a copy of a previous message. For comparison, see the ISO20022 official specification
classDiagram direction tb %% CopyInformation2 recursion level 0 with max 1 class CopyInformation2{ CopyIndicator IsoYesNoIndicator } CopyInformation2 *-- "0..1" BICIdentification1 : OriginalReceiver %% BICIdentification1 recursion level 1 with max 1 class BICIdentification1{ BIC IsoBICIdentifier }
CopyInformation2 members
Member name | Description | Data Type / Multiplicity |
---|---|---|
CopyIndicator | Indicates whether the message is a copy. | IsoYesNoIndicator - Required 1..1 |
OriginalReceiver | Original receiver of the message, if this message is a copy. | BICIdentification1 - Optional 0..1 |
Extensibility and generalization considerations
To facilitate generalized design patterns in the system, the ReversalOfTransferOutConfirmationV05 implementation follows a specific implementaiton pattern. First of all, ReversalOfTransferOutConfirmationV05 impleemnts IOuterRecord indicating it is the outermost logical part of the message definition. Like all message wrappers, ReversalOfTransferOutConfirmationV05Document implements IOuterDocument. Because ReversalOfTransferOutConfirmationV05 implements IOuterDocument, it is a suitable template parameter for IOuterDocument, and causes the internal ‘Message’ to be of type ReversalOfTransferOutConfirmationV05.
classDiagram class IOuterRecord ReversalOfTransferOutConfirmationV05 --|> IOuterRecord : Implements ReversalOfTransferOutConfirmationV05Document --|> IOuterDocument~ReversalOfTransferOutConfirmationV05~ : Implements class IOuterDocument~ReversalOfTransferOutConfirmationV05~ { ReversalOfTransferOutConfirmationV05 Message }
Document wrapper for serialization
The only real purpose ReversalOfTransferOutConfirmationV05Document serves is to cause the document to be serialized into the ‘urn:iso:std:iso:20022:tech:xsd:sese.004.001.05’ namespace. Therefore, it will probably be the usual practice to build the message and construct this wrapper at the last minute using ReversalOfTransferOutConfirmationV05.ToDocument() method. The returned ReversalOfTransferOutConfirmationV05Document value will serialize correctly according to ISO 20022 standards.
classDiagram ReversalOfTransferOutConfirmationV05Document *-- ReversalOfTransferOutConfirmationV05 : 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:sese.004.001.05">
<RvslOfTrfOutConf>
<MsgId>
<!-- MessageIdentification inner content -->
</MsgId>
<Refs>
<!-- References inner content -->
</Refs>
<Rvsl>
<!-- Reversal inner content -->
</Rvsl>
<MktPrctcVrsn>
<!-- MarketPracticeVersion inner content -->
</MktPrctcVrsn>
<CpyDtls>
<!-- CopyDetails inner content -->
</CpyDtls>
</RvslOfTrfOutConf>
</Document>
Data from ISO specification
This is the technical data from the specification document.
<messageDefinition
xmi:id="_30-1ARXfEeOocOqSQt5Jbw"
nextVersions="_1PNtIT57EeSIqOPJHpnleA"
previousVersion="_kT5aIRgCEeKqWJINzXcn5g"
name="ReversalOfTransferOutConfirmationV05"
definition="Scope
An executing party, for example, a transfer agent, sends the ReversalOfTransferOutConfirmation message to the instructing party, for example, an investment manager or its authorised representative, to cancel a previously sent TransferOutConfirmation message.
Usage
The ReversalOfTransferOutConfirmation message is used to reverse a previously sent TransferOutConfirmation.
There are two ways to specify the reversal of the transfer out confirmation. Either:
- the business references, for example, TransferReference, TransferConfirmationIdentification, of the transfer confirmation are quoted, or,
- all the details of the transfer confirmation (this includes TransferReference and TransferConfirmationIdentification) are quoted but this is not recommended.
The message identification of the TransferOutConfirmation message in which the transfer out confirmation was conveyed may also be quoted in PreviousReference. The message identification of the TransferOutInstruction message in which the transfer out instruction was conveyed may also be quoted in RelatedReference."
registrationStatus="Registered"
messageSet="_urpIICeJEeOCeO5e7islRQ"
xmlTag="RvslOfTrfOutConf"
rootElement="Document"
xmlns:xmi="http://www.omg.org/XMI">
<messageBuildingBlock
xmi:id="_30-1AxXfEeOocOqSQt5Jbw"
nextVersions="_1PNtIz57EeSIqOPJHpnleA"
previousVersion="_kT5aKxgCEeKqWJINzXcn5g"
name="MessageIdentification"
definition="Reference that uniquely identifies a message from a business application standpoint."
registrationStatus="Provisionally Registered"
maxOccurs="1"
minOccurs="1"
xmlTag="MsgId"
complexType="_Q7pG5Np-Ed-ak6NoX_4Aeg_-967008570" />
<messageBuildingBlock
xmi:id="_30-1BRXfEeOocOqSQt5Jbw"
nextVersions="_1PNtJT57EeSIqOPJHpnleA"
previousVersion="_kT5aLxgCEeKqWJINzXcn5g"
name="References"
definition="Reference to the transaction identifier issued by the counterparty. Building block may also be used to reference a previous transaction, or tie a set of messages together."
registrationStatus="Provisionally Registered"
minOccurs="0"
xmlTag="Refs"
complexType="_LJFy4RX0EeOBE-jZfcm4KQ" />
<messageBuildingBlock
xmi:id="_30-1BxXfEeOocOqSQt5Jbw"
nextVersions="_1PNtJz57EeSIqOPJHpnleA"
previousVersion="_LkixQBg3EeK-_89we2b-bA"
name="Reversal"
definition="Choice between reversal by reference or by reversal details."
registrationStatus="Provisionally Registered"
maxOccurs="1"
minOccurs="1"
xmlTag="Rvsl"
complexType="_QDN4oRX2EeOBE-jZfcm4KQ" />
<messageBuildingBlock
xmi:id="_CoOdYRw8EeOIveEnnb_1-A"
nextVersions="_1PNtKT57EeSIqOPJHpnleA"
name="MarketPracticeVersion"
definition="Identifies the market practice to which the message conforms."
registrationStatus="Provisionally Registered"
maxOccurs="1"
minOccurs="0"
xmlTag="MktPrctcVrsn"
complexType="_FaNY0RUVEeOIaq8KyCdIDQ" />
<messageBuildingBlock
xmi:id="_30-1CRXfEeOocOqSQt5Jbw"
nextVersions="_1PNtKz57EeSIqOPJHpnleA"
previousVersion="_kT5aOxgCEeKqWJINzXcn5g"
name="CopyDetails"
definition="Information provided when the message is a copy of a previous message."
registrationStatus="Provisionally Registered"
maxOccurs="1"
minOccurs="0"
xmlTag="CpyDtls"
complexType="_Q7Vk4tp-Ed-ak6NoX_4Aeg_-1918092012" />
<messageDefinitionIdentifier
businessArea="sese"
messageFunctionality="004"
flavour="001"
version="05" />
</messageDefinition>
ISO Building Blocks
The following items are used as building blocks to construct this message.