ActivityRequirementScreen
This business rule is used to configure the requirement summary screen for an application.
Element/Tag | Attribute | Definition | Element/Attribute Value and Description |
---|---|---|---|
<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> | Required element:
The opening and closing tags of the business rule. |
||
<Table> |
Required element: Standard table configuration. See the Table Element page for more information. |
||
<Column> |
Required element: See the Table Element page for more information. |
||
<Name> |
Required element: See the Table Element page for more information. |
||
<Display> |
Required element: See the Table Element page for more information. |
||
<Group> |
Required element: See the Table Element page for more information. |
Supported values on the Activity Requirement screen are:
|
|
<DataType> |
Required element: See the Table Element page for more information. |
||
<Disabled> |
Optional element: Specifies whether the column should be disabled. |
Yes: The column will be disabled. No: The column will not be disabled. |
|
</Results> |
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>