DisbursementScreen
DisbursementScreen Business Rule is used to configure the display of fixed and dynamic fields in the DisbursementScreen.
Element/Tag | Definition | Attribute | Element/Attribute Value and Description |
---|---|---|---|
<DisbursementScreen> |
The Opening and Closing tag of the rule. |
||
<FixedFields> |
The <FixedFields> tag is used to specify the configuration of the static fields like DisbursementNumber, TypeCode, NetAmount etc in the Disbursement details section. Note: Clicking the Disbursement record(created by processing the Disbursement transaction), populates the fixed fields in the Disbursement details section of the DisbursementScreen with the respective values. |
||
<Fields> |
Theses fields are fields that the Client can choose to add to the DisbursementScreen. See Fields Elements. Note:
|
||
<Field> |
|
Sub Tabs that can be entered: Name, Display, DataType, Query, Calculated, Options, Multifields |
|
<Events> |
See Action Events. |
|
|
<Actions> |
See Action Events. |
|
|
<ScreenMath> |
See Screen Math. |
|
|
XML Sample
<DisbursementScreen>
<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>
</Field>
<Field>
<Name>FieldTest2</Name>
<DataType>Text</DataType>
<Display>FieldTest2</Display>
</Field>
<Field>
<Name>FieldTest3</Name>
<DataType>Integer</DataType>
<Display>FieldTest3</Display>
</Field>
</Fields>
</DisbursementScreen>
XML Schema
<Disbursement>
<FixedFields>
<Field>
</Field>
</FixedFields>
<Fields>
<Field>
</Field>
</Fields>
</Disbursement>