ChartOfAccountsScreen
This rule determines the set-up of the dynamic fields for ChartOfAccounts screen (only for the criteria section) and determines how validation can be performed.
Element/Tag | Definition | Attribute | Element/Attribute Value and Description |
---|---|---|---|
<ChartOfAccountsScreen> |
The opening and closing tag. |
|
|
<TransactionAccounting> |
Optional element:Accounting detail for transactions. The <Fields> element will be used as criteria to match a debit or credit on an account. |
|
|
<Fields> |
Optional element:Allows configuration of dynamic fields. Fields that will be used as criteria to match a debit/credit on an account. |
|
|
<Field> |
This business rule uses a slightly modified version of field. Do not model it after the Field common element. |
|
|
<Name> |
Required element:Exact name of the field (database name). |
|
|
<Display> |
Required element: Defines the display name of the field. |
MASK |
Defines the mask of the field. |
<Query> |
Used with the Combo datatype to retrieve options for the combo box. |
TYPE |
Fixed:Uses the Options tag to fill the options. |
<Options> |
Individual option value. Used with the Combo datatype. |
|
|
<Option> |
Each option set needs to be contained in this opening and closing tag. |
|
|
<SuspenseAccounting> |
Optional element:Accounting detail for suspense. The <Fields> element will be used as criteria to match a debit or credit on an account. |
|
|
<Fields> |
Optional element:The fields section should be configured exactly as described above. |
|
|
<Events> |
Optional element. |
|
|
<ScreenMath> |
See ScreenMath Element. |
|
|
<Actions> |
See Action/Events. |
|
|
XML Example
<ChartOfAccountsScreen>
<TransactionAccounting>
<Fields>
<Field>
<Name>CutOffTimeFlag</Name>
<Display>Cut Off Time Flag</Display>
<Query TYPE="FIXED">
<Options>
<Option>
<OptionValue>00</OptionValue>
<OptionText>PreCutOffTime</OptionText>
</Option>
<Option>
<OptionValue>01</OptionValue>
<OptionText>PostCutOffTime</OptionText>
</Option>
</Options>
</Query>
</Field>
</Fields>
</TransactionAccounting>
<SuspenseAccounting>
<Fields>
<Field>
<Name>NBCIndicator</Name>
<Query TYPE="FIXED">
<Options>
<Option/>
</Options>
</Query>
</Field>
</Fields>
</SuspenseAccounting>
</ChartOfAccountsScreen>