ClaimScreen
The business rule provides the ability to configure an activity-based creation of a new claim, based on events occurring on an existing policy or client. The ClaimScreen can be overridden at the Product and plan level but not at the transaction level.
Element/Tag | Parent Element | Attribute | Definition |
---|---|---|---|
<ClaimScreen> |
The opening and closing tag of the ClaimScreen business rule. |
||
<Fields> | <ClaimScreen> |
Required element: Defines dynamic fields for the Claim |
|
<Field> | <Fields> |
Required, Repeatable element: Standard field definition syntax. Lists the fields that are applicable for this Claim. |
|
<Name> |
<Field>
|
Required: Provides the name of the field. Lists the Name that is applicable for the claim.
Literal. |
|
<Display> |
Required: Provides the label text that will display on the screen.
Text. |
||
<DataType> |
Repeatable element: Defines the data type of the field
Supported datatypes:
Since there is no UI implementation with this enhancement, the following datatypes would not be supported:
|
XML Schema
<ClaimScreen>
<Fields>
<Field>
<Name>[field name]</Name>
<Display>[literal]</Display>
<DataType>[Date|Decimal|Integer|Percent|Text|TextArea]</DataType>
</Field>
<Field>...</Field>
</Fields>
</ClaimScreen>
XML example
<ClaimScreen>
<MultiFields RULE="MultiField-ClaimFields">Yes</MultiFields>
<Fields>
<Field>
<Name>ClaimDynamicField</Name>
<Display>ClaimDate</Display>
<DataType>Date</DataType>
</Field>
<Field>
<Name>ClaimDynamicField2</Name>
<Display>ClaimCharges</Display>
<DataType>Decimal</DataType>
</Field>
<Field>
<Name>ClaimDynamicField3</Name>
<Display>ClaimantName</Display>
<DataType>Text</DataType>
</Field>
</Fields>
</ClaimScreen>