Impairment Screen

This screen rule holds the configuration of the impairment screen. It dictate the contents and behavior of the impairment screen.

ImpairmentScreen Elements/Attributes
Element/Tag Definition Attribute Element/Attribute Value and Description
<ImpairmentScreen>

The opening and closing tags of the business rule.

   
<Impairment>

 

LEVELCODE
  • This attribute defines the level of the impairment, and it comes from AsCode.
  • Level attribute captures the level of the impairment that is, policy, client, segment etc. This column populates by code of that level from Ascode table.
  • The Configurer can configure these column, that to be displayed on the Impairment table in policyimpairment rule.
  • In Ascode table, Impairmentlevel has following three possible values:
    • 01 - Policy
    • 02 - Client
    • 03 - Segment
    CATEGORYCODE This attribute defines the category of the impairment. This will come from AsCode.
<FixedFields>

Optional element:

This element allows the fixed fields to have the same configuration capabilities as dynamic fields. Only exception is the ability to change the fixed field data types.

   
<Fields>

See Fields Element for details.

 

 

<Field>

See Fields Element for details.

 

   
<Name>

See Fields Element for details.

   
<Display> See Fields Element for details.    
<DataType> See Fields Element for details.    
<DefaultValue> See Fields Element for details.    
<Query> See Fields Element for details. TYPE  
<Options> See Fields Element for details.    
<Option> See Fields Element for details.    
<OptionValue> See Fields Element for details.    
<OptionText> See Fields Element for details.    
<Events> See Action Events. called external events shall not be supported.  
<ScreenMath> See ScreenMath Element.    
<Actions> See Action Events.    

XML Schema

<ImpairmentScreen>
<Imapirment LEVELCODE="01" CATEGORYCODE="02" >
<FixedFields>Please refer to "Fixed Fields" </FixedFields>
<Fields>Please refer to "Fields" .</Fields>
</Imapirment>
<Events>Please refer to "Events"</Events>
<ScreenMath>
<Math>Please refer to "Math"</Math>
</ScreenMath>
<Actions>Please refer to "Actions"</Actions>
</ImpairmentScreen>

XML Example

<ImpairmentScreen>
<Impairment LEVELCODE="01" CATEGORYCODE="02">
<FixedFields>
<Fields>
<Field>
<Name>FlatExtra1</Name>
<Display>Flat Extra 1</Display>
<DataType>Text</DataType>
</Field>
<Field>
<Name>Subcategory</Name>
<Display>Subcategory</Display>
<DataType>Combo</DataType>
<DefaultValue>01</DefaultValue>
<Query TYPE="FIXED">
<Options>
<Option>
<OptionValue>01</OptionValue>
<OptionText>Critical illness</OptionText>
</Option>
<Option>
<OptionValue>02</OptionValue>
<OptionText>Terminal desease</OptionText>
</Option>
</Options>
</Query>
</Field>
<Field>
<Name>FlatExtra2</Name>
<Display>Flat Extra 2</Display>
<DataType>Text</DataType>
</Field>
</Fields>
</FixedFields>
</Imapirment>
</ImpairmentScreen>