Table
Element
The Table element is used to format Search and Inquiry
screen results.
Table Elements/Attributes
Element/Tag |
Definition |
Attribute |
Element/Attribute Value and Description |
<Table>
|
Controls the display of results. This tag formats
results in a table.
|
|
|
<Column>
|
The container element for column configuration. |
ALIGN
|
String
"Left", "Center", "Right" (Case-insensitive)
Defines the data alignment of the column.
|
FORMAT |
String
"Text", "Currency", "Date"
Allows formatting of data
|
<Display>
|
Defines the header for the table column. |
|
String
|
Optional:
Render bold or italicized representation of table columns’ headings.
Table column headings are always in bold. Adding the BOLD attribute and setting it to Yes is transparent.
Note: This attribute is only supported for Inquiry screen configuration.
|
BOLD
ITALICS
|
Yes: The table column's heading will be displayed in bold and/or italics.
No: The heading will display without bold or italics.
|
<Name>
|
Specifies the database column in which the field values are stored.
|
|
String
|
Optional:
Renders bold or italicized representation of table columns’ contents.
Note: This attribute is only supported for Inquiry screen configuration.
|
BOLD
ITALICS
|
Yes: The table column's contents will be displayed in bold and/or italics.
No: The heading will display without bold or italics.
|
<Group>
|
Indicates the table/screen that stores the field being referenced. The
value used should be appropriate for the screen being configured.
|
|
String
Examples:
Activity ActivityField Address AddressField Client ClientField ClientGroupField DisbursementApproval Disbursement DisbursementField Organization Person Policy PolicyField Program ProgramField Requirement RequirementDefinition Role RoleField Segment SegmentName SegmentField Transaction
|
|
ROLECODE
|
RoleCode from AsRole table.
|
<DataType>
|
Defines the datatype of the field.
|
|
String
|
Optional:
Used to specify the mask that will validate and format the field data for display purposes.
|
MASK |
Any mask name that has been defined. |
XML Example
<Table>
<Column ALIGN="LEFT">
<Display>Payee Social Security Number</Display>
<Group>Client</Group>
<Name>LastName</Name>
<Datatype MASK="SSN">Text</Datatype>
</Column>
<Column ALIGN="LEFT">
<Display>Policy Number</Display>
<Group>Policy</Group>
<Name>PolicyNumber</Name>
<DataType>Text</DataType>
</Column>
<Column ALIGN="LEFT" TOTAL=”Yes”>
<Display>Amount</Display>
<Group>Disbursement</Group>
<Name>DisbursementAmount</Name>
<DataType>Money</DataType>
</Column>
<Column ALIGN="LEFT">
<Display>Transaction Name</Display>
<Group>Transaction</Group>
<Name>TransactionName</Name>
<DataType>Text</DataType>
</Column>
<Column ALIGN="LEFT">
<Display>Processor</Display>
<Group>Activity</Group>
<Name>ClientNumber</Name>
<DataType>Text</DataType>
</Column>
</Table>