DisbursementSearchScreen
This business rule is used to configure the dynamic fields in the DisbursementSearchScreen to allow the user to search for disbursement records that match the specified criteria. If the DisbursementSearchScreen business rule is not used the Above the line Fields (FixedFields) will be displayed by default and used for searches. For example Company, Plan, Start Date and End Date will be displayed.
The search criteria (Fields & FixedFields) will accept mask attributes in the DataType elements. Refer to the Fields and Tables sections to see mask attribute configuration. The Results section is hard coded and cannot accept configuration.
DisbursementScreen and DisbursementSearchScreen business rules together constitute the Disbursement screen. Configuration for the Disbursement Search section is done in the DisbursementSearchScreen business rule whereas the configuration for the Disbursement details section is done in the DisbursementScreen business rule.
DisbursementSearchScreen Elements/Attributes
Element/Tag | Definition | Attribute | Element/Attribute Value and Description |
---|---|---|---|
<DisbursementSearchScreen>
|
The required opening and closing elements of this business rule. |
|
|
<Fields> |
|
|
|
XML Example
<DisbursementSearchScreen>
<Fields>
<Field>
<Name>Status</Name>
<DataType>Combo</DataType>
<Display>Status</Display>
<Query TYPE="SQL">SELECT AsCode.CodeValue, AsCode.ShortDescription FROM AsCode WHERE AsCode.CodeName = 'AsCodeDisbursementStatus'</Query>
<Group>Disbursement</Group>
</Field>
<Field>
<Name>FieldTest2</Name>
<DataType>Text</DataType>
<Display>FieldTest2</Display>
<Group>Disbursement</Group>
</Field>
<Field>
<Name>FieldTest3</Name>
<DataType>Integer</DataType>
<Display>FieldTest3</Display>
<Group>Disbursement</Group>
</Field>
</Fields>
</DisbursementSearchScreen>