Field Level Security on SearchScreen
Within OIPA, when the Policy, Client, Group Customer or Suspense search screens are displayed the resulting search should takes into account the exclusion conditions configured in the <Filter> tags. The filter element will be available in the following search screens:
- Policy
- Client
- Group Customer
- Suspense
This prototype example utilizes Client Search Screen
Prerequisites
Entity Search Screen
New Items
NA
Changes to Existing Items
ClientScreen business rule
- ClientSearchScreen business rule
Configuration Details
ClientScreen- Prototype Company
Added a new field to filter results on.
<Field>
<Name>Employer</Name>
<Display>Employer</Display>
<DataType>Text</DataType>
</Field>
ClientSearchScreen - Prototype Company
Added a filter to restrict search results based on value.
<Filter>
<Conditions SecurityGroup="Prototype Super" Type="Exclusion" Operator="AND">
<Condition Entity="ASCLIENTFIELD">Fieldname = 'Employer' and TextValue = 'ABC Company'</Condition>
</Conditions>
</Filter>