Setting Custom Security Resolution Options

Config Security Resolution Options (Global Settings for Entire Box)

To specify security resolution options that are different from default for an entire box (meaning, for all workflows, stream and other processes), use the Config Security Resolution Options.

Edit custom configuration file eagle_ml-2-0_custom_cm/w_config_custom.inc in Message Center Editor and set your custom value for CONFIG_SEC_RES_OPTION variable.

Specific Security Resolution Options (One Workflow)

Use the Specific Security Resolution Options to specify options which are different  from the default security resolution options for one workflow. 

It can be set within a transform solution in IWS.

The specific security resolution options will have the higher priority relative to default and config options for the security resolution logic, but only for the workflow where specific security resolution options are set.

To set a specific security resolution, update the assetResolutionOption field in Destination Grid.

Click the  button in the function text box to apply changes. Save and Export solution.

Specific Security Resolution on Message Node (Single Message) 

The specific security resolution is used to define transformations that should occur for one record in the xml  in the source file.

It will have the higher priority relative to default and security resolution for the security transformation, but only for the current record where specific security resolution is set.

To use it, you should fill the security resolution node of your message (refer to the data map table of the object and make sure the node is placed in agreement with the XSDs).

<assetResolutionOption>sicovmId,valorenId,cedel</assetResolutionOption>
For example: 
<EagleML>
    <header>
    ...
    </header> 
    <referenceTransaction><!—this record will use the security resolution specified below> 
        <header>
        ...
        </header>
        <genericIssueAnalytic> 
            ...
            <assetResolutionOption>sicovmId,valorenId,cedel</assetResolutionOption>
            ...
        </genericIssueAnalytic>
    </referenceTransaction>
    <referenceTransaction><!—this record will use default security resolution>
        <header>
        ...
        </header>
        <genericIssueAnalytic> 
        ...
        </genericIssueAnalytic>
    <referenceTransaction>
</EagleML>Â