ValuesBlock Element
When used in transaction configuration, the ValuesBlock element creates a Values section either on the Allocations tab of the Activity Detail or on a separate Values tab on the same screen. This Values section/tab displays the current policy fund values, and is display only.
If the TransactionAllocationScreen business rule is attached to the transaction, the presence of the <ValuesBlock> element will cause a Values section to display on the Allocations tab of the Activity Detail screen. If the TransactionAllocationScreen business rule is not attached to the transaction, the presence of the <ValuesBlock> element will cause a standalone Values tab to display on the Activity Detail screen.
Element/Tag | Definition | Attribute | Element/Attribute Value and Description |
---|---|---|---|
<ValuesBlock>
|
This is the start and end element for the transaction. |
|
This tag will cause the Values Block section to display on the Activity Detail screen. |
<FundDetails>
|
This node can have multiple occurrences. The first node to which the Expression results in true or the Expression attribute does not exist will be used to render the values block. |
|
|
|
EXPRESSION |
Text. If the Expression results in true then use this fund's details. This expression has access to the policy fields/columns. Any valid math expression. |
|
|
TYPE |
Text. Defines the type of values shown in the values block. Accumulation Payout. |
XML Example
<ValuesBlock>
<FundDetails TYPE="Accumulation" EXPRESSION=""Policy:StatusCode" != "39"">
</FundDetails><FundDetails TYPE="Payout" EXPRESSION=""Policy:StatusCode" = "39""></FundDetails>
</ValuesBlock>