ActivityResultsScreen
This Business Rule allows configuration of the ActivityResultsScreen and defines how to display the Activity Results.
Element/Tag | ParentTag | Attribute | Definition | Element/Attribute Value and Description |
---|---|---|---|---|
<ActivityResultsScreen> |
<ActivityResultsScreen> |
The opening and closing tag of the ActivityResultsScreen Business Rule. |
||
<Allocations>
|
<ActivityResultsScreen> |
|
Optional element: The opening and closing tag for this section in the business rule. |
|
<Allocations> |
SHOWORIGINAL |
Required attribute: This attribute controls the display of the original allocations on the Allocation tab of the Activity Results screen. |
Values: Yes ,No or Math 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. Math- accepts a math with either Yes or No values Note: If original allocations are not available, an error message will be displayed to the user. |
|
<FundDisplay> |
<ActivityResultsScreen> | |||
<DisplayChildFunds> |
<FundDisplay> |
Determines whether or not to display child funds. |
Yes or No |
|
<Valuation> |
Optional Element: This element provides instructions about the elements that may be displayed on the Valuation tab of the Activity Results screen. |
|||
<NegativeCashValue> | Required Attribute:
This element indicates the screen should display the sub-total NegativeCashValue. This element controls the display of the negative cash value as well as the label name. |
|||
<PositiveCashValue> |
Required Attribute: This element indicates the screen should display the sub-total PositiveCashValue. This element controls the display of the positive cash value as well as the label name. |
|||
<ActivitySummary> | <ActivityResultsScreen> | |||
<MathAndFields> | <ActivitySummary> | |||
<Field> | <MathAndFields> | |||
<Name> | <Field> | |||
<Display> | <Field> | |||
<DataType> | <Field> | |||
<Group> | <Field> | |||
<ActivityResult> | <ActivitySummary> | |||
<Result> | <ActivityResult> | |||
<Table> | <Result> | |||
<Column> | <Table> | |||
<Name> | <Column> | |||
<Display> | <Column> | |||
<DataType> | <Column> |
XML Schema
<ActivityResultsScreen>
<Allocations SHOWORIGINAL=”Yes|No”></Allocations>
<FundDisplay>
<DisplayChildFunds>Yes|No</DisplayChildFunds>
</FundDisplay>
<Valuation>
<NegativeCashValue>Negative Cash Value</NegativeCashValue>
<PositiveCashValue>Positive Cash Value</PositiveCashValue>
</Valuation>
<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 1
<ActivityResultsScreen>
<Allocations SHOWORIGINAL=”Yes”></Allocations>
<FundDisplay>
<DisplayChildFunds>Yes</DisplayChildFunds>
</FundDisplay>
</ActivityResultsScreen>
XML Example 2
<ActivityResultsScreen> <Allocations SHOWORIGINAL= "ActivityAllocation"></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>
Transaction XML Example
When original Allocation deriving value from math variable, when is set to 'Yes'
<MathVariable VARIABLENAME="ActivityAllocation" TYPE="VALUE" DATATYPE="TEXT">Yes</MathVariable>
When original Allocation deriving value from math variable, when is set to 'No'
<MathVariable VARIABLENAME="ActivityAllocation" TYPE="VALUE" DATATYPE="TEXT">No</MathVariable>