reda.059.001.01
Scope An instructing party sends the StandingSettlementInstructionCancellation message to the receiver to cancel a previously sent StandingSettlementInstruction message. The message can also be used to notify a counterparty of the deletion of a standing settlement information.
Usage The instructing party (initiator) is: • An account servicer, for example, a global custodian or prime broker • A counterparty in a transaction, for example: - an investment manager (executing broker), - a global custodian (executing broker, prime broker) • A vendor’s application communicating on behalf of an account servicer or counterparty The receiver is: • An account owner, for example, an investment manager, hedge fund administrator or a party to which SSI operations have been outsourced • A counterparty, for example: - an investment manager (executing broker) - a global custodian (executing broker, prime broker) • A vendor’s application communicating on behalf of the account owner or counterparty.
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 %% StandingSettlementInstructionCancellationV01 recursion level 0 with max 0 class StandingSettlementInstructionCancellationV01{ MessageReferenceIdentification IsoMax35Text PreviousMessageReference IsoMax35Text } StandingSettlementInstructionCancellationV01 *-- "0..1" EffectiveDate1 : EffectiveDateDetails StandingSettlementInstructionCancellationV01 *-- "1..1" AccountIdentification26 : AccountIdentification StandingSettlementInstructionCancellationV01 *-- "1..1" IMarketIdentificationOrCashPurpose1Choice : MarketIdentification StandingSettlementInstructionCancellationV01 *-- "1..1" IPartyOrCurrency1Choice : SettlementDetails StandingSettlementInstructionCancellationV01 *-- "0..1" SupplementaryData1 : SupplementaryData
Now, we will zero-in one-by-one on each of these building blocks.
MessageReferenceIdentification building block
Reference of this message. Specifies a character string with a maximum length of 35 characters. For comparison, see the ISO20022 official specification This message is declared as Max35Text in the ISO specification. In our implementation, it is represented in source code as IsoMax35Text. Due to global using directives, it is treated as a System.String by the compiler and runtime.
EffectiveDateDetails building block
Date on which the SSI is effective. Date and date parameters. For comparison, see the ISO20022 official specification
classDiagram direction tb %% EffectiveDate1 recursion level 0 with max 1 class EffectiveDate1{ EffectiveDate IsoISODate EffectiveDateParameter ExternalEffectiveDateParameter1Code }
EffectiveDate1 members
Member name | Description | Data Type / Multiplicity |
---|---|---|
EffectiveDate | Date on which the SSI is effective. If the SSI is effective on a future date, then the date must be provided. | IsoISODate - Required 1..1 |
EffectiveDateParameter | Specifies how the SSI update effective date is to be applied. | ExternalEffectiveDateParameter1Code - Optional 0..1 |
AccountIdentification building block
Unique and unambiguous master identification known to the sender (or its authorised agent) and receiver (or its authorised agent), below which the SSI will be lodged. This may be an account number or reference to a fund. If no account or reference is available then “NONREF” must be specified. Unique identifier of an account, as assigned by the account servicer. For comparison, see the ISO20022 official specification
classDiagram direction tb %% AccountIdentification26 recursion level 0 with max 1 AccountIdentification26 *-- "1..1" SimpleIdentificationInformation4 : Proprietary %% SimpleIdentificationInformation4 recursion level 1 with max 1 class SimpleIdentificationInformation4{ Identification IsoMax35Text }
AccountIdentification26 members
Member name | Description | Data Type / Multiplicity |
---|---|---|
Proprietary | Unique identifier for an account. It is assigned by the account servicer using a proprietary identification scheme. | SimpleIdentificationInformation4 - Required 1..1 |
MarketIdentification building block
Identifies the market for the standing settlement instruction. Choice of cash purpose or a securities market identifier. For comparison, see the ISO20022 official specification
classDiagram direction tb %% IMarketIdentificationOrCashPurpose1Choice recursion level 0 with max 1
MarketIdentificationOrCashPurpose1Choice members
Member name | Description | Data Type / Multiplicity |
---|
SettlementDetails building block
Settlement information that helps to identify the standing settlement instruction for which the cancellation is sent. Choice of a depostory or settlement currency. For comparison, see the ISO20022 official specification
classDiagram direction tb %% IPartyOrCurrency1Choice recursion level 0 with max 1
PartyOrCurrency1Choice members
Member name | Description | Data Type / Multiplicity |
---|
PreviousMessageReference building block
Reference to a linked message that was previously sent. Specifies a character string with a maximum length of 35 characters. For comparison, see the ISO20022 official specification This message is declared as Max35Text in the ISO specification. In our implementation, it is represented in source code as IsoMax35Text. Due to global using directives, it is treated as a System.String by the compiler and runtime.
SupplementaryData building block
Additional information that can not be captured in the structured fields 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 StandingSettlementInstructionCancellationV01 implementation follows a specific implementaiton pattern. First of all, StandingSettlementInstructionCancellationV01 impleemnts IOuterRecord indicating it is the outermost logical part of the message definition. Like all message wrappers, StandingSettlementInstructionCancellationV01Document implements IOuterDocument. Because StandingSettlementInstructionCancellationV01 implements IOuterDocument, it is a suitable template parameter for IOuterDocument, and causes the internal ‘Message’ to be of type StandingSettlementInstructionCancellationV01.
classDiagram class IOuterRecord StandingSettlementInstructionCancellationV01 --|> IOuterRecord : Implements StandingSettlementInstructionCancellationV01Document --|> IOuterDocument~StandingSettlementInstructionCancellationV01~ : Implements class IOuterDocument~StandingSettlementInstructionCancellationV01~ { StandingSettlementInstructionCancellationV01 Message }
Document wrapper for serialization
The only real purpose StandingSettlementInstructionCancellationV01Document serves is to cause the document to be serialized into the ‘urn:iso:std:iso:20022:tech:xsd:reda.059.001.01’ namespace. Therefore, it will probably be the usual practice to build the message and construct this wrapper at the last minute using StandingSettlementInstructionCancellationV01.ToDocument() method. The returned StandingSettlementInstructionCancellationV01Document value will serialize correctly according to ISO 20022 standards.
classDiagram StandingSettlementInstructionCancellationV01Document *-- StandingSettlementInstructionCancellationV01 : 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:reda.059.001.01">
<StgSttlmInstrCxl>
<MsgRefId>
<!-- MessageReferenceIdentification inner content -->
</MsgRefId>
<FctvDtDtls>
<!-- EffectiveDateDetails inner content -->
</FctvDtDtls>
<AcctId>
<!-- AccountIdentification inner content -->
</AcctId>
<MktId>
<!-- MarketIdentification inner content -->
</MktId>
<SttlmDtls>
<!-- SettlementDetails inner content -->
</SttlmDtls>
<PrvsMsgRef>
<!-- PreviousMessageReference inner content -->
</PrvsMsgRef>
<SplmtryData>
<!-- SupplementaryData inner content -->
</SplmtryData>
</StgSttlmInstrCxl>
</Document>
Data from ISO specification
This is the technical data from the specification document.
<messageDefinition
xmi:id="_92E9EvRnEeK8G5J12Bcx2g"
name="StandingSettlementInstructionCancellationV01"
definition="Scope
An instructing party sends the StandingSettlementInstructionCancellation message to the receiver to cancel a previously sent StandingSettlementInstruction message. The message can also be used to notify a counterparty of the deletion of a standing settlement information.

Usage
The instructing party (initiator) is:
• An account servicer, for example, a global custodian or prime broker
• A counterparty in a transaction, for example:
	- an investment manager (executing broker),
	- a global custodian (executing broker, prime broker)
• A vendor's application communicating on behalf of an account servicer or counterparty
The receiver is:
• An account owner, for example, an investment manager, hedge fund administrator or a party to which SSI operations have been outsourced
• A counterparty, for example:
	- an investment manager (executing broker)
	- a global custodian (executing broker, prime broker)
• A vendor's application communicating on behalf of the account owner or counterparty."
registrationStatus="Registered"
messageSet="_N7G_0dQPEeKSSosHwGnjNw"
xmlTag="StgSttlmInstrCxl"
rootElement="Document"
xmlns:xmi="http://www.omg.org/XMI">
<doclet
xmi:id="__FEfwPRnEeK8G5J12Bcx2g"
type="purpose" />
<messageBuildingBlock
xmi:id="_aVZkUewmEeWkJ9nstgT-Yw"
name="MessageReferenceIdentification"
definition="Reference of this message."
registrationStatus="Provisionally Registered"
maxOccurs="1"
minOccurs="1"
xmlTag="MsgRefId"
simpleType="_YW1tKdp-Ed-ak6NoX_4Aeg_1913463446" />
<messageBuildingBlock
xmi:id="_RA6MZvXrEeKpFY1yaoww4A"
name="EffectiveDateDetails"
definition="Date on which the SSI is effective."
registrationStatus="Provisionally Registered"
maxOccurs="1"
minOccurs="0"
xmlTag="FctvDtDtls"
complexType="_oxDxcDceEeOA3chqL9a4Rw" />
<messageBuildingBlock
xmi:id="_RA6MZ_XrEeKpFY1yaoww4A"
name="AccountIdentification"
definition="Unique and unambiguous master identification known to the sender (or its authorised agent) and receiver (or its authorised agent), below which the SSI will be lodged. This may be an account number or reference to a fund.
If no account or reference is available then “NONREF” must be specified."
registrationStatus="Provisionally Registered"
minOccurs="1"
xmlTag="AcctId"
complexType="_ku_soSxxEeKgiYs1KJCQUg" />
<messageBuildingBlock
xmi:id="_ai_0YVK2EeOsJr32EK1NAQ"
name="MarketIdentification"
definition="Identifies the market for the standing settlement instruction."
registrationStatus="Provisionally Registered"
maxOccurs="1"
minOccurs="1"
xmlTag="MktId"
complexType="_Lc9dQEiNEeOdL6nMHefDgg" />
<messageBuildingBlock
xmi:id="_kAb0oVK1EeOsJr32EK1NAQ"
name="SettlementDetails"
definition="Settlement information that helps to identify the standing settlement instruction for which the cancellation is sent."
registrationStatus="Provisionally Registered"
maxOccurs="1"
minOccurs="1"
xmlTag="SttlmDtls"
complexType="_eY4Ls1K0EeOsJr32EK1NAQ" />
<messageBuildingBlock
xmi:id="_T4uZISIAEeOTvYhLlRFwVA"
name="PreviousMessageReference"
definition="Reference to a linked message that was previously sent."
registrationStatus="Provisionally Registered"
maxOccurs="1"
minOccurs="1"
xmlTag="PrvsMsgRef"
simpleType="_YW1tKdp-Ed-ak6NoX_4Aeg_1913463446" />
<messageBuildingBlock
xmi:id="_dhGZsfXvEeKpFY1yaoww4A"
name="SupplementaryData"
definition="Additional information that can not be captured in the structured fields and/or any other specific block."
registrationStatus="Provisionally Registered"
minOccurs="0"
xmlTag="SplmtryData"
complexType="_Qn0zC9p-Ed-ak6NoX_4Aeg_468227563" />
<messageDefinitionIdentifier
businessArea="reda"
messageFunctionality="059"
flavour="001"
version="01" />
</messageDefinition>
ISO Building Blocks
The following items are used as building blocks to construct this message.