FinalActionScreen
Final Action screen is added for underwriters to assess risk factors of an application and make a decision based on those risk factors. The underwriter decisions will be represented on the screen in the form of configurable activities. These activities will allow the underwriter to define applicable fields and make necessary changes to the Application if required based on the risk factors. This screen will house a history of the underwriter’s final action decisions as well.
Note: Final action screen include tabs to show Errors and Warnings list configured as per Validate Expressions. Errors and warnings can be overridable as per configuration and will be available for all views in Final action screen BR.
Errors and Warnings user interface and behavior is identical to that of activities screen.
| Element/Tag | Attributes | Parent Element | Description | Element/Attribute Value |
|---|---|---|---|---|
|
<FinalActionScreen> |
|
The opening and closing tag of the business rule. |
||
|
<Activities> |
|
<FinalActionScreen> |
Required element: This tag defines the activities that will be processed from the Final Action |
|
|
<Activity> |
<Activities> |
Required repeatable element: section that defines each individual activity that will be processed from the Final Action screen . |
The name of the Final Action Activity |
|
|
<MultiFields> |
<Activity> |
Optional Element Allows configuration of MultiFields in the screen. See MultiFields element for additional information. |
||
|
<FinalActionViews> |
<FinalActionScreen> |
Optional Element Opening tag for final action activity view configuration |
||
|
<View> |
<FinalActionViews> |
Required element: (if views are defined) and Repeatable; Configuration defines the display of final action activity grid |
||
| NAME |
Required attribute: (if view element is configured) Each view created will be named and the name used as an attribute of the View element |
Name of the View |
||
|
<Table> |
<View> |
Required element: Common column definition to define the columns for the view Available Groups are: Activity |
XML Example
<FinalActionScreen>
<Activities>
<Activity>FinalAction</Activity>
<Activity>MakeOffer</Activity>
<Activity>Close</Activity>
<Activity>
<MultiFields RULE="IndividualFields">Yes</MultiFields>
</Activity>
</Activities>
<FinalActionViews>
<View NAME="Case Manager View">
<Table/>
</View>
<View NAME="Supervisor View">
<Table>
<Column WIDTH="30" ALIGN="LEFT">
<Name>StatusCode</Name>
<Display>FinalAction.ActivityStatus</Display>
<DataType>Text</DataType>
<Group>Activity</Group>
</Column>
<Column WIDTH="30" ALIGN="LEFT">
<Name>EffectiveDate</Name>
<Display>FinalAction.ActivityDate</Display>
<DataType>Date</DataType>
<Group>Activity</Group>
</Column>
<Column WIDTH="20" ALIGN="LEFT">
<Name>ClientNumber</Name>
<Display>User</Display>
<DataType>Text</DataType>
<Group>Activity</Group>
</Column>
</Table>
</View>
</FinalActionViews>
</FinalActionScreen>