Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Next »

In this page:

Overview

SMF MI is not recommended for new implementations or upgrades. Clients should switch their integration to use GenericSMF and other Reference streams

Smf_mi was designed to load the SMF along with objects related to it. This means that you should use smf_mi when you want to load specific model(s), like Issuer model, Schedule model etc.

Please note, that smf_mi should not be used for volume data load or in processes sensitive to load speed

Issuer Role Load

Batch Mode Specifics

SMF MI supports Issuer Role batch load. In order to turn it on you should have EagleML/referenceTransaction/header/processingOptions/ set to ISSUER_ROLE_GROUPING in the incoming SMF:

<header>
   <objectType>GenericSMF</objectType>
   <processingOptions>ISSUER_ROLE_GROUPING</processingOptions>
</header>

 This can be turned off by adding a counter-flag DIRECT_ISSUER_ROLE_OPTIONS 

<header>
   <objectType>GenericSMF</objectType>
   <processingOptions>ISSUER_ROLE_GROUPING,ISSUER_ROLE_GROUPING</processingOptions>
</header>

which allows to set processing options directly.

Here is the list of available processing options:

  • ISSUER_ROLE_GROUPING - enables batch mode (also enables ISSUE_ROLE_UPSERT_MODE, USE_LATEST_START_DATE by default)
  • ISSUE_ROLE_UPSERT_MODE - prevents the delete step in batch mode
  • USE_LATEST_START_DATE - finds the latest start date in the incoming message and uses it for each incoming record as the start date
  • DIRECT_ISSUER_ROLE_OPTIONS - counter-flag for ISSUER_ROLE_GROUPING, allows to set options directly.
  • ISSUER_ROLE_PROCESSING_TYPE
    set as ISSUER_ROLE_PROCESSING_TYPE_I()__PROCESSING_TYPE
    where in I() you should set Issuer Role types which you want to be loaded in certain mode
    For example, you want to switch off default behavior and load only OWNER roles in UPSERT mode:
     Click here to expand...

    <processingOptions>ISSUER_ROLE_GROUPING,DIRECT_ISSUER_ROLE_OPTIONS,ISSUER_ROLE_PROCESSING_TYPE_I(OWNER)__ISSUE_ROLE_UPSERT_MODE</processingOptions>

Issue Variable Rate Model - Load Details

When you load Issue Variable Rate please note that some important values, such as source, effective date and variable rate, should be specified in the following elements (which do not belong to the Issue Variable Rate model):

EagleML/referenceTransaction/genericSMF/sourceName populates the source name field on the securitydbo.variable_rate table
EagleML/referenceTransaction/genericSMF/FloaterModel/beginDate populates the effective date field on the securitydbo.variable_rate table
EagleML/referenceTransaction/genericSMF/FloaterModel/rate field populates the variable rate field on the securitydbo.variable_rate table



  • No labels