QuoteClaimScreen
This business rule is used to configure the QuoteClaimScreen. It defines the fields that be displayed in the Claims grid and additional dynamic fields dispaly when the row is expanded.
| Element/Tag | Attributes | Parent Element | Description | Element/Attribute Value |
|---|---|---|---|---|
|
<QuoteClaimScreen> |
|
The opening and closing tags of the QuoteClaimScreen business rule. |
||
| <Table> | <QuoteClaimScreen> |
Required element: The element that defines the screen as a table format and controls the display of the benefit grid. See Table_Element. |
||
| <Column> | <Table> |
The container element for column configuration. |
||
| <Display> | <Column> |
Defines the header for the search result table column. |
String | |
| <Name> | <Column> |
Specifies the database column in which the field values are stored. |
String | |
| <Group> | <Column> |
Indicates the table/screen that stores the field being referenced. The value used should be appropriate for the screen being configured. |
String Examples: Quote |
|
| <DataType> | <Column> |
Defines the datatype of the field. |
String | |
| <OrderBy> | <Column> |
Optional, repeatable element: Specifies a structure to define the ordering of the data in the table. Note: This element is repeatable only when the <Name> element has a value of "Name" and the <Group> element has a value of "Client." |
||
| ORDINAL |
Required attribute: Specifies priority of the column among the columns being sorted. |
An integer indicating the sort order of the column. | ||
| ORDER |
Optional attribute: Specifies the direction of the sort with respect to the value of each column's ORDINAL attribute. |
ASCENDING: The columns will sort in ascending order. This is the default value. DESCENDING: The columns will sort in descending order. |
||
| <Fields> | <QuoteClaimScreen> |
Use Fields elements.
Fields element to define the dynamic fields to be used in the member screen, these should match the columns in the member input spreadsheet. |
||
| <Events> |
Use Event elements. |
|||
| <Event> |
ONSUBMIT ONLOAD ONCHANGE |
|||
| <ScreenMath> |
Use ScreenMath elements. |
|||
| <Actions> |
Use Action elements. |
|||
| <MultiFields> |
Optional element:
|
XML Example
<QuoteClaimScreen>
<Table>
<Column ALIGN="LEFT">
<Display>Gender</Display>
<Name>Gender</Name>
<Group>QuoteClaimField</Group>
<DataType>Text</DataType>
</Column>
<Column ALIGN="LEFT">
<Display>Occupation</Display>
<Name>Occupation</Name>
<Group>QuoteClaimField</Group>
<DataType MASK="TestMask">Text</DataType>
<OrderBy ORDINAL="1" ORDER="DESCENDING"></OrderBy>
</Column>
<Column ALIGN="LEFT">
<Display>Category</Display>
<Name>Category</Name>
<Group>QuoteClaimField</Group>
<DataType>Decimal</DataType>
</Column>
<Column ALIGN="LEFT">
<Display>Claim Benefit Type</Display>
<Name>Claim Benefit Type</Name>
<Group>QuoteClaimField</Group>
<DataType>Text</DataType>
</Column>
</Table>
<Fields>
<Field>
<Name>Occupation</Name>
<Display>Occupation</Display>
<DataType>Text</DataType>
</Field>
<Field>
<Name>OccupationCategory</Name>
<Display>Occupation Category</Display>
<DataType>Text</DataType>
</Field>
<Field>
<Name>Category</Name>
<Display>Category</Display>
<DataType>Text</DataType>
</Field>
<Field>
<Name>Claim Benefit Type</Name>
<Display>ClaimBenefitType</Display>
<DataType>Text</DataType>
</Field>
<Field>
<Name>SCIWP</Name>
<Display>SCI WP</Display>
<DataType>Text</DataType>
</Field>
<Field>
<Name>SCIBP</Name>
<Display>SCI BP</Display>
<DefaultValue>ABCDEF</DefaultValue>
<DataType>Text</DataType>
</Field>
<Field>
<Name>TIIndicator</Name>
<Display>TI Indicator</Display>
<DataType>Text</DataType>
</Field>
<Field>
<Name>TIIndicator</Name>
<Display>TI Indicator</Display>
<DataType>Text</DataType>
</Field>
<Field>
<Name>ActualClaimAmountsPaid</Name>
<Display>Actual Claim Amounts Paid</Display>
<DataType>Decimal</DataType>
</Field>
</Fields>
</QuoteClaimScreen>