MT101

Struct MT101 

Source
pub struct MT101 {
    pub field_20: Field20,
    pub field_21r: Option<Field21R>,
    pub field_28d: Field28D,
    pub field_50_instructing_party: Option<Field50InstructingParty>,
    pub field_50_ordering_customer: Option<Field50OrderingCustomerFGH>,
    pub field_52a: Option<Field52AccountServicingInstitution>,
    pub field_51a: Option<Field51A>,
    pub field_30: Field30,
    pub field_25: Option<Field25NoOption>,
    pub transactions: Vec<MT101Transaction>,
}
Expand description

MT101: Request for Transfer

§Purpose

Used to request the movement of funds from the ordering customer’s account(s) serviced at the receiving financial institution. This message enables institutions and authorized parties to initiate multiple transactions in a single message with comprehensive transfer details.

§Scope

This message is:

  • Sent by financial institutions on behalf of non-financial account owners
  • Sent by non-financial institution account owners or authorized parties
  • Used for moving funds between ordering customer accounts or to third parties
  • Applicable for both domestic and cross-border payment requests
  • Compatible with bulk payment processing and corporate treasury operations
  • Subject to comprehensive network validation rules for transaction integrity

§Key Features

  • Multi-Transaction Support: Single message can contain multiple transaction requests
  • Dual Sequence Architecture: Sequence A (general info) and Sequence B (transaction details)
  • Flexible Party Specification: Ordering customer can be specified in either sequence
  • Foreign Exchange Support: Built-in support for currency conversion instructions
  • Chained Message Capability: Support for large transaction sets across multiple messages
  • Regulatory Compliance: Includes regulatory reporting fields for compliance requirements

§Common Use Cases

  • Corporate bulk payment processing for payroll and supplier payments
  • Treasury operations requiring multiple fund transfers
  • Cross-border payment requests with currency conversion
  • Inter-company fund transfers within corporate groups
  • Standing instruction execution for recurring payments
  • Cash management and liquidity optimization transfers
  • Trade finance settlement instructions

§Message Structure

§Sequence A (General Information - Mandatory, Single)

  • Field 20: Sender’s Reference (mandatory) - Unique message identifier
  • Field 21R: Customer Specified Reference (optional) - Customer reference for all transactions
  • Field 28D: Message Index/Total (mandatory) - For chained messages
  • Field 50: Instructing Party/Ordering Customer (optional) - Party initiating request
  • Field 52A: Account Servicing Institution (optional) - Institution holding accounts
  • Field 51A: Sending Institution (optional) - Institution sending the message
  • Field 30: Requested Execution Date (mandatory) - When transfers should be executed
  • Field 25: Account Identification (optional) - Account to be debited

§Sequence B (Transaction Details - Mandatory, Repetitive)

  • Field 21: Transaction Reference (mandatory) - Unique transaction identifier
  • Field 21F: F/X Deal Reference (optional) - Foreign exchange deal reference
  • Field 23E: Instruction Code (optional) - Special processing instructions
  • Field 32B: Currency/Transaction Amount (mandatory) - Transfer amount and currency
  • Field 50: Ordering Customer (optional) - Customer specific to this transaction
  • Field 52: Account Servicing Institution (optional) - Institution for this transaction
  • Field 56: Intermediary Institution (optional) - Intermediary in payment chain
  • Field 57: Account With Institution (optional) - Crediting institution
  • Field 59: Beneficiary Customer (mandatory) - Final beneficiary of funds
  • Field 70: Remittance Information (optional) - Payment purpose and details
  • Field 77B: Regulatory Reporting (optional) - Compliance reporting information
  • Field 33B: Currency/Original Amount (optional) - For currency conversion
  • Field 71A: Details of Charges (mandatory) - Charge allocation instructions
  • Field 25A: Charges Account (optional) - Account for charge debiting
  • Field 36: Exchange Rate (optional) - Rate for currency conversion

§Network Validation Rules

  • Foreign Exchange Logic: If field 36 present, field 21F mandatory (C1)
  • Currency Conversion: If field 33B present and amount ≠ 0, field 36 mandatory (C2)
  • Party Specification: Field 50a placement rules between sequences (C3, C4)
  • Currency Consistency: Currency in field 33B must differ from field 32B (C5)
  • Institution Chain: If field 56a present, field 57a mandatory (C7)
  • Cross-Transaction: If field 21R present, all 32B currencies must match (C8)
  • Chained Messages: All must have same sender’s reference (field 20)

§SRG2025 Status

  • Structural Changes: None - MT101 format remains stable
  • Enhanced Validation: Strengthened rules for cross-border transfers
  • Regulatory Reporting: Enhanced field 77B validation for compliance
  • API Integration: Improved support for modern banking APIs

§Integration Considerations

  • Banking Systems: Compatible with core banking and payment processing systems
  • API Integration: RESTful API support for modern corporate banking platforms
  • Processing Requirements: Supports both real-time and batch processing modes
  • Compliance Integration: Built-in regulatory reporting and sanctions screening hooks

§Relationship to Other Messages

  • Triggers: Often triggered by corporate ERP systems or treasury management platforms
  • Responses: Generates MT103 (customer credit transfer) for each transaction
  • Related: Works with MT202 for institutional settlement and MT940/MT950 for reporting
  • Alternatives: MT100 for single transfers, MT204 for direct debit instructions
  • Status Updates: May receive MT192/MT196/MT199 for status notifications

Fields§

§field_20: Field20§field_21r: Option<Field21R>§field_28d: Field28D§field_50_instructing_party: Option<Field50InstructingParty>§field_50_ordering_customer: Option<Field50OrderingCustomerFGH>§field_52a: Option<Field52AccountServicingInstitution>§field_51a: Option<Field51A>§field_30: Field30§field_25: Option<Field25NoOption>§transactions: Vec<MT101Transaction>

Implementations§

Source§

impl MT101

Source

pub fn validate() -> &'static str

Get validation rules for this message type

Trait Implementations§

Source§

impl Clone for MT101

Source§

fn clone(&self) -> MT101

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for MT101

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for MT101

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for MT101

Source§

fn eq(&self, other: &MT101) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for MT101

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl SwiftMessageBody for MT101

Source§

fn message_type() -> &'static str

Get the message type identifier (e.g., “103”, “202”)
Source§

fn from_fields( fields: HashMap<String, Vec<(String, usize)>>, ) -> SwiftResult<Self>

Create from field map with sequential consumption tracking
Source§

fn from_fields_with_config( fields: HashMap<String, Vec<(String, usize)>>, config: &ParserConfig, ) -> Result<ParseResult<Self>, ParseError>

Create from field map with configuration for error collection
Source§

fn to_fields(&self) -> HashMap<String, Vec<String>>

Convert to field map
Source§

fn to_ordered_fields(&self) -> Vec<(String, String)>

Convert to ordered field list for MT serialization Returns fields in the correct sequence order for multi-sequence messages
Source§

fn required_fields() -> Vec<&'static str>

Get required field tags for this message type
Source§

fn optional_fields() -> Vec<&'static str>

Get optional field tags for this message type
Source§

impl StructuralPartialEq for MT101

Auto Trait Implementations§

§

impl Freeze for MT101

§

impl RefUnwindSafe for MT101

§

impl Send for MT101

§

impl Sync for MT101

§

impl Unpin for MT101

§

impl UnwindSafe for MT101

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> Fake for T

Source§

fn fake<U>(&self) -> U
where Self: FakeBase<U>,

Source§

fn fake_with_rng<U, R>(&self, rng: &mut R) -> U
where R: Rng + ?Sized, Self: FakeBase<U>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,