PolicyRequirementScreen
This business rule is used to configure OIPA's requirement summary table, which is accessed by clicking the Requirements link in the menu on the left side of the screen when an application or policy is open. If this rule is not configured, a default table will be used to display the requirement summary.
Element/Tag | Definition | Attribute | Element/Attribute Value and Description |
---|---|---|---|
<PolicyRequirementScreen> | The opening and closing tag of the business rule. |
|
|
<Results> |
Required element: This element defines the results of a requirement search. |
||
<Hidden> |
Optional element: This element defines if results in the specified status should be hidden from view. |
||
<StatusCode> |
Optional element: This element identifies the requirement's status. |
|
A code defined for the AsCodeRequirementStatus code name. |
<Table> |
Required element: This element controls the display of the requirement results table. See the Table Element page for more information on configuring this element. |
NAME |
|
<Column> |
Optional element: This element defines the width of columns in the results table, the alignment of the column's data and the format of the column's data. |
WIDTH |
Integer |
ALIGN |
Left: The information in the column will be left-aligned. Right: The information in the column will be right-aligned. Center: The information in the column will be centered. |
||
FORMAT |
Text: The information in the column will be formatted as simple text. Currency: The information in the column will be formatted as currency. Date: The information in the column will be formatted as a date. |
||
<Group> |
Optional element: This element identifies the database table from which the requirement information should be extracted. For example, <Group>Client</Group> indicates that the data should come from the AsClient database table. |
|
The entity name that corresponds to the database table from which the requirement information should be extracted. |
XML Example
<PolicyRequirementScreen>
<Results>
<Hidden>
<StatusCode>05</StatusCode>
<StatusCode>88</StatusCode>
</Hidden>
<Table>
<Column WIDTH="200" ALIGN="LEFT">
<Name>Message</Name>
<Display>Requirement Name</Display>
<DataType>Text</DataType>
<Group>Requirement</Group>
</Column>
<Column WIDTH="200" ALIGN="LEFT">
<Name>Name</Name>
<Display>Insured</Display>
<DataType>Text</DataType>
<Group>Client</Group>
</Column>
<Column WIDTH="50" ALIGN="LEFT">
<Name>TaxID</Name>
<Display>Tax ID</Display>
<DataType>Text</DataType>
<Group>Client</Group>
</Column>
<Column WIDTH="50" ALIGN="LEFT">
<Name>Status</Name>
<Display>Status</Display>
<DataType>Text</DataType>
</Column>
<Column WIDTH="200" ALIGN="LEFT">
<Name>UpdatedGMT</Name>
<Display>Updated</Display>
<DataType>Date</DataType>
<Group>Requirement</Group>
</Column>
</Table>
</Results>
</PolicyRequirementScreen>