ActivityRequirementScreen
This business rule is used to configure the requirement summary screen for an application.
| Element/Tag | Attributes | Parent Element | Description | Element/Attribute Values |
|---|---|---|---|---|
|
<ActivityRequirementScreen> |
|
Required element: The opening and closing tags of the business rule. |
||
| DISPLAY |
Defines the format in which the requirement records will display. List is currently the only supported value. |
List | ||
|
<Results>
|
<ActivityRequirementScreen> |
Required element: The opening and closing tags of the business rule. |
||
| <Table> | <Results> |
Required element: Standard table configuration. See the Table Element page for more information. |
||
| <Column> | <Table> | Required element:
See the Table Element page for more information. |
||
| <Name> | <Column> |
Required element: See the Table Element page for more information. |
||
| <Display> | <Column> |
Required element: See the Table Element page for more information. |
||
| <Group> | <Column> | Required element:
See the Table Element page for more information. |
Supported values on the Activity Requirement screen are:
|
|
| <DataType> | <Column> |
Required element: See the Table Element page for more information. |
||
| <Disabled> | <Column> | Optional element:
Specifies whether the column should be disabled. |
Yes: The column will be disabled. No: The column will not be disabled. |
XML Example
<ActivityRequirementScreen>
<Results>
<Table>
<Column ALIGN="CENTER" FORMAT="Text">
<Name>RequirementDescription</Name>
<Display>Description</Display>
<Group>Requirement</Group>
<DataType>Text</DataType>
</Column>
<Column ALIGN="CENTER" FORMAT="Text">
<Name>RequirementStatusCode</Name>
<Display>Status</Display>
<Group>Requirement</Group>
<DataType>Text</DataType>
<Disabled>Yes</Disabled>
</Column>
<Column ALIGN="CENTER" FORMAT="Text">
<Name>RequirementOpenDate</Name>
<Display>Date Added</Display>
<Group>Requirement</Group>
<DataType>Date</DataType>
<Disabled>Yes</Disabled>
</Column>
<Column ALIGN="CENTER" FORMAT="Text">
<Name>RequirementCloseDate</Name>
<Display>Date Accepted</Display>
<Group>Requirement</Group>
<DataType>Date</DataType>
</Column>
</Table>
</Results>
</ActivityRequirementScreen>