ActivityResultsScreen
This Business Rule allows configuration of the ActivityResultsScreen and defines how to display the Activity Results.
Element/Tag | Attribute | Definition | Element/Attribute Value and Description |
---|---|---|---|
<ActivityResultsScreen> |
The opening and closing tag of the ActivityResultsScreen Business Rule. |
||
<Allocations>
|
|
Optional element: The opening and closing tag for this section in the business rule. |
|
SHOWORIGINAL |
Required attribute: This attribute controls the display of the original allocations on the Allocation tab of the Activity Results screen. |
Yes or No No – The original allocations do not display; only the final allocations display. This value represents the default behavior when the rule is not configured. Yes – The original allocations display, in addition to the final allocations. Note: If original allocations are not available, an error message will be displayed to the user. |
|
<FundDisplay> |
|||
<DisplayChildFunds> |
Determines whether or not to display child funds. |
Yes or No |
|
<ActivitySummary> | |||
<MathAndFields> | |||
<Field> | |||
<Name> | |||
<Display> | |||
<DataType> | |||
<Group> | |||
<ActivityResult> | |||
<Result> | |||
<Table> | |||
<Results> | |||
<Column> | |||
<Name> | |||
<Display> | |||
<DataType> |
XML Schema
<ActivityResultsScreen>
<Allocations SHOWORIGINAL=”Yes|No”></Allocations>
<FundDisplay>
<DisplayChildFunds>Yes|No</DisplayChildFunds>
</FundDisplay>
<ActivitySummary>
<MathAndFields>
<Field>
<Name>[Mathvariable name/ Field name]</Name>
<Display>[Display name of the Mathvariable/ Field]</Display>
<DataType>[DataType of the Mathvariable/Field, Line, Title]</DataType>
<Group>[Math, Field]</Group>
</Field>
</MathAndFields>
<ActivityResult>
<Result DISPLAY="String">
<Table>
<Results><Query TYPE="SQL">..</Query><Results>
<Column>
<Name></Name>
<Display></Display>
<DataType></DataType>
</Column>
</Table>
</Result>
</ActivityResult>
</ActivitySummary>
</ActivityResultsScreen>
XML Example
<ActivityResultsScreen>
<Allocations SHOWORIGINAL=”Yes”></Allocations>
<FundDisplay>
<DisplayChildFunds>Yes</DisplayChildFunds>
</FundDisplay>
<ActivitySummary>
<MathAndFields>
<Field>
<DisplayName>Total Cash</DisplayName>
<Name>TotalCash</Name>
<Group>Math</Group>
<DataType>Money</DataType>
</Field>
<Field>
<DisplayName>Deficiency Amount</DisplayName>
<Name>DeficiencyAmount</Name>
<Group>Math</Group>
<DataType>Money</DataType>
</Field>
</MathAndFields>
<ActivityResult>
<Result DISPLAY="PolicyDetails">
<Table>
<Results>
<Query TYPE="SQL">SELECT PolicyNumber, PolicyName FROM AsPolicy WHERE PolicyGUID = '[PolicyGUID]'</Query>
</Results>
<Column>
<Name>PolicyNumber</Name>
<Display>PolicyNumber</Display>
<DataType>Text</DataType>
</Column>
<Column>
<Name>PolicyName</Name>
<Display>PolicyName</Display>
<DataType>Text</DataType>
</Column>
</Table>
</Result>
</ActivityResult>
</ActivitySummary>
</ActivityResultsScreen>