ListBillScreen
The ListBillScreen Business rule is used to define the dynamic field data that is needed to capture for each policy in the client list bill. The rule can also be used to define the columns to be displayed in the ListBill user interface.
Element/Tag | Attribute | Definition | Element/Attribute Value and Description |
---|---|---|---|
<ListBillScreen> | The opening and closing tag of the business rule. |
|
|
<Client> | TYPECODE | ||
<Fields> | Opening element of the dynamic fields definition. Standard field syntax. | ||
<Events> | Optional: Opening element of the screen events. Standard events syntax | ||
<ScreenMath> | Optional: Opening element of the screen math. Standard screen math syntax | ||
<Actions> | Optional: Opening element of the screen actions. Standard actions syntax | ||
<ListBillActions> | Opening element of the ListBillActions. | ||
<ListBillAction > | Repeatable: Defines the transaction detail to generate when the action occurs. | ||
ACTION | Defines the ListBillScreen event that will trigger the action. Only one instance of each action is allowed. | Literal value Add / Change / Delete | |
<Transaction> | Specified the client transaction to generate from the ListBillScreen event. | Literal Transaction Name. | |
PROCESSIMMEDIATE | Optional: Indicates if the generated activity should process when the action occurs. The default value is 'No' | Literal value Yes / No | |
<Fields> | Optional: Opening element of the Fields section | ||
<Field> | Repeatable: Defines the mapping of ListBillScreen fields to the ListBillAction transaction fields using standard From/To/DataType spawn syntax. | ||
<Table> | Opening element of the ListBill summary display definition. Standard column definition syntax. | ||
<Column> | Defines the column data to display in the List Bill table. | ||
<Name> | Defines the name of the field from which to fetch the data for display. | Literal field name | |
<Display> | Defines the name to display for the column in the UI. | Literal name to display | |
<Group> | Defines the data source entity for the Named field. | Literal value Policy / Client / ListBilField | |
ROLECODE | Required for returning Role data. | Literal role code from AsCodeRole |
XML Schema
<ListBillScreen>
<Client TYPECODE="[Client Type Code]">
<Fields />
<Events />
<ScreenMath />
<Actions />
<ListBillActions>
<ListBillAction ACTION="[Add|Change|Delete]">
<Transaction PROCESSIMMEDIATE="[Yes|No]">[TransactionName]</Transaction>
<Fields>
<Field>
<From />
<To />
<DataType />
</Field>
</Fields>
</ListBillAction>
</ListBillActions>
<Table>
<Column>
<Name />
<Display />
<Group ROLECODE="[Role Code]">[Policy|ListBillField|Client]</Group>
</Column>
</Table>
</Client>
</ListBillScreen>