PortfolioTransferCancellationRequestV05

sese.014.001.05

Scope An instructing party, for example, a (new) plan manager (Transferee), sends the PortfolioTransferCancellationRequest message to the executing party, for example, a (old) plan manager (Transferor), to request the cancellation of a previously sent PortfolioTransferInstruction. Usage The PortfolioTransferCancellationRequest message is used to request the cancellation of an entire PortfolioTransferInstruction message, ie, all the product transfers that it contained. The cancellation request can be specified either by:

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
%% PortfolioTransferCancellationRequestV05 recursion level 0 with max 0
PortfolioTransferCancellationRequestV05 *-- "1..1" MessageIdentification1 : MessageReference
PortfolioTransferCancellationRequestV05 *-- "0..1" AdditionalReference3 : PoolReference
PortfolioTransferCancellationRequestV05 *-- "0..1" AdditionalReference3 : PreviousReference
PortfolioTransferCancellationRequestV05 *-- "0..1" AdditionalReference3 : RelatedReference
PortfolioTransferCancellationRequestV05 *-- "1..1" ICancellation6Choice : Cancellation
PortfolioTransferCancellationRequestV05 *-- "0..1" MarketPracticeVersion1 : MarketPracticeVersion
  

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

MessageReference building block

Identifies the message. 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

PoolReference building block

Collective reference identifying a set of messages. References a related message or provides another reference, such as a pool reference, linking a set of messages. The party which issued the related reference may be the Sender of the referenced message or a party other than the Sender. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% AdditionalReference3 recursion level 0 with max 1
class AdditionalReference3{
    Reference IsoMax35Text
    MessageName IsoMax35Text
}
AdditionalReference3 *-- "0..1" IPartyIdentification2Choice : ReferenceIssuer
%% IPartyIdentification2Choice recursion level 1 with max 1
  

AdditionalReference3 members

Member name Description Data Type / Multiplicity
Reference Business reference of a message assigned by the party issuing the message. This reference must be unique amongst all messages of the same name sent by the same party. IsoMax35Text - Required 1..1
ReferenceIssuer Issuer of the reference. IPartyIdentification2Choice - Optional 0..1
MessageName Name of a message. IsoMax35Text - Optional 0..1

PreviousReference building block

Reference to a linked message that was previously sent. References a related message or provides another reference, such as a pool reference, linking a set of messages. The party which issued the related reference may be the Sender of the referenced message or a party other than the Sender. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% AdditionalReference3 recursion level 0 with max 1
class AdditionalReference3{
    Reference IsoMax35Text
    MessageName IsoMax35Text
}
AdditionalReference3 *-- "0..1" IPartyIdentification2Choice : ReferenceIssuer
%% IPartyIdentification2Choice recursion level 1 with max 1
  

AdditionalReference3 members

Member name Description Data Type / Multiplicity
Reference Business reference of a message assigned by the party issuing the message. This reference must be unique amongst all messages of the same name sent by the same party. IsoMax35Text - Required 1..1
ReferenceIssuer Issuer of the reference. IPartyIdentification2Choice - Optional 0..1
MessageName Name of a message. IsoMax35Text - Optional 0..1

RelatedReference building block

Reference to a linked message that was previously received. References a related message or provides another reference, such as a pool reference, linking a set of messages. The party which issued the related reference may be the Sender of the referenced message or a party other than the Sender. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% AdditionalReference3 recursion level 0 with max 1
class AdditionalReference3{
    Reference IsoMax35Text
    MessageName IsoMax35Text
}
AdditionalReference3 *-- "0..1" IPartyIdentification2Choice : ReferenceIssuer
%% IPartyIdentification2Choice recursion level 1 with max 1
  

AdditionalReference3 members

Member name Description Data Type / Multiplicity
Reference Business reference of a message assigned by the party issuing the message. This reference must be unique amongst all messages of the same name sent by the same party. IsoMax35Text - Required 1..1
ReferenceIssuer Issuer of the reference. IPartyIdentification2Choice - Optional 0..1
MessageName Name of a message. IsoMax35Text - Optional 0..1

Cancellation building block

Choice between cancellation by transfer details or reference. Choice between cancellation by transfer details or reference. For comparison, see the ISO20022 official specification

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

Cancellation6Choice 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

Extensibility and generalization considerations

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

classDiagram
    class IOuterRecord
    PortfolioTransferCancellationRequestV05 --|> IOuterRecord : Implements
    PortfolioTransferCancellationRequestV05Document --|> IOuterDocument~PortfolioTransferCancellationRequestV05~ : Implements
    class IOuterDocument~PortfolioTransferCancellationRequestV05~ {
        PortfolioTransferCancellationRequestV05 Message
     }
  

Document wrapper for serialization

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

classDiagram
    PortfolioTransferCancellationRequestV05Document *-- PortfolioTransferCancellationRequestV05 : 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.014.001.05">
    <PrtflTrfCxlReq>
        <MsgRef>
            <!-- MessageReference inner content -->
        </MsgRef>
        <PoolRef>
            <!-- PoolReference inner content -->
        </PoolRef>
        <PrvsRef>
            <!-- PreviousReference inner content -->
        </PrvsRef>
        <RltdRef>
            <!-- RelatedReference inner content -->
        </RltdRef>
        <Cxl>
            <!-- Cancellation inner content -->
        </Cxl>
        <MktPrctcVrsn>
            <!-- MarketPracticeVersion inner content -->
        </MktPrctcVrsn>
    </PrtflTrfCxlReq>
</Document>

Data from ISO specification

This is the technical data from the specification document.

<messageDefinition
  xmi:id="_SElK4RXfEeOocOqSQt5Jbw"
  nextVersions="_-zqTYQgLEeSFYfyUKDXKaw"
  previousVersion="_gvWxsRgBEeKqWJINzXcn5g"
  name="PortfolioTransferCancellationRequestV05"
  definition="Scope&#xD;&#xA;An instructing party, for example, a (new) plan manager (Transferee), sends the PortfolioTransferCancellationRequest message to the executing party, for example, a (old) plan manager (Transferor), to request the cancellation of a previously sent PortfolioTransferInstruction.&#xD;&#xA;Usage&#xD;&#xA;The PortfolioTransferCancellationRequest message is used to request the cancellation of an entire PortfolioTransferInstruction message, ie, all the product transfers that it contained. The cancellation request can be specified either by:&#xD;&#xA;- quoting the transfer references of all the product transfers listed in the PortfolioTransferInstruction message, or,&#xD;&#xA;- quoting the details of all the product transfers (this includes TransferReference) listed in PortfolioTransferInstruction message.&#xD;&#xA;The message identification of the PortfolioTransferInstruction may also be quoted in PreviousReference. It is also possible to request the cancellation of PortfolioTransferInstruction by just quoting its message identification in PreviousReference."
  registrationStatus="Registered"
  messageSet="_urpIICeJEeOCeO5e7islRQ"
  xmlTag="PrtflTrfCxlReq"
  rootElement="Document"
  xmlns:xmi="http://www.omg.org/XMI">
  <messageBuildingBlock
    xmi:id="_SElK4xXfEeOocOqSQt5Jbw"
    nextVersions="_-zqTYwgLEeSFYfyUKDXKaw"
    previousVersion="_gvWxuxgBEeKqWJINzXcn5g"
    name="MessageReference"
    definition="Identifies the message."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="MsgRef"
    complexType="_Q7pG5Np-Ed-ak6NoX_4Aeg_-967008570" />
  <messageBuildingBlock
    xmi:id="_SElK5RXfEeOocOqSQt5Jbw"
    nextVersions="_-zqTZQgLEeSFYfyUKDXKaw"
    previousVersion="_gvWxvxgBEeKqWJINzXcn5g"
    name="PoolReference"
    definition="Collective reference identifying a set of messages."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="PoolRef"
    complexType="_Q6vvAdp-Ed-ak6NoX_4Aeg_2101402955" />
  <messageBuildingBlock
    xmi:id="_SElK5xXfEeOocOqSQt5Jbw"
    nextVersions="_-zqTZwgLEeSFYfyUKDXKaw"
    previousVersion="_gvWxwxgBEeKqWJINzXcn5g"
    name="PreviousReference"
    definition="Reference to a linked message that was previously sent."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="PrvsRef"
    complexType="_Q6vvAdp-Ed-ak6NoX_4Aeg_2101402955" />
  <messageBuildingBlock
    xmi:id="_SElK6RXfEeOocOqSQt5Jbw"
    nextVersions="_-zqTaQgLEeSFYfyUKDXKaw"
    previousVersion="_gvWxxxgBEeKqWJINzXcn5g"
    name="RelatedReference"
    definition="Reference to a linked message that was previously received."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="RltdRef"
    complexType="_Q6vvAdp-Ed-ak6NoX_4Aeg_2101402955" />
  <messageBuildingBlock
    xmi:id="_SElK6xXfEeOocOqSQt5Jbw"
    nextVersions="_-zqTawgLEeSFYfyUKDXKaw"
    previousVersion="_nfmISyccEeK33eWt3gq4Fg"
    name="Cancellation"
    definition="Choice between cancellation by transfer details or reference."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="Cxl"
    complexType="_rcvlURwnEeOIveEnnb_1-A" />
  <messageBuildingBlock
    xmi:id="_6y1ZARw8EeOIveEnnb_1-A"
    nextVersions="_-zqTbQgLEeSFYfyUKDXKaw"
    name="MarketPracticeVersion"
    definition="Identifies the market practice to which the message conforms."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="MktPrctcVrsn"
    complexType="_FaNY0RUVEeOIaq8KyCdIDQ" />
  <messageDefinitionIdentifier
    businessArea="sese"
    messageFunctionality="014"
    flavour="001"
    version="05" />
</messageDefinition>

ISO Building Blocks

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