PlanActivityScreen
Allows control of aspects of the Plan Activity Screen. This configuration will determine the number of activities that will be shown on the Plan-Level Activity screen, set the date from which to display activities and provide warnings when using activity icons. This rule may be defined at the Global level or as a Plan level override.
| Element/Tag | Attributes | Parent Element | Description | Element/Attribute Value |
|---|---|---|---|---|
|
<PlanActivityScreen> |
|
The opening and closing tag of the Plan Activity Screen Business Rule. |
||
|
<MaximumRows> |
|
<PlanActivityScreen> |
Defines the maximum number of Activities that will display on each page of the PlanActivityScreen. |
Integer: Valid values are 15, 20, 100 . Default is 15. |
|
<FromDate> |
|
<PlanActivityScreen> |
Defines the date that will display in the From Date entry box. All dates are derived from the system date. |
BeginningOfYear: Displays beginning of the year. BeginningOfMonth: Displays beginning of the month. PreviousDay: Displays previous day. Blank: (default) Displays blank value. |
|
<Warnings> |
|
<PlanActivityScreen> |
Defines a section that may display messages as icons are clicked on the screen. |
|
|
<DeleteWarning> |
<Warnings> |
Controls whether warning is given when activity is deleted. If element is not present no warning will be displayed. |
Yes – A message will display; either the default or a configured message. No – No message will display. |
|
| MESSAGE |
Allows the configuration of a message. If element is not present, the default message is displayed (“Are you sure?”). |
A literal value. | ||
|
<ReverseWarning> |
<Warnings> |
Controls whether warning is given when activity is reversed. If element is not present no warning will be displayed. |
Yes – A message will display; either the default or a configured message. No – No message will display. |
|
| MESSAGE |
Allows the configuration of a message. If element is not present, the default message is displayed (“Are you sure?”). |
A literal value. | ||
|
<RecycleWarning> |
<Warnings> |
Controls whether warning is given when activity is recycled. If element is not present no warning will be displayed. |
Yes – A message will display; either the default or a configured message. No – No message will display. |
|
| MESSAGE |
Allows the configuration of a message. If element is not present, the default message is displayed (“Are you sure?”). |
A literal value. |
XML Schema
<PlanActivityScreen>
<MaximumRows>10|15|20|100</MaximumRows>
<FromDate>BeginningOfYear|BeginningOfMonth|PreviousDay|Blank</FromDate>
<Warnings>
<DeleteWarning MESSAGE="[text]">Yes|No</DeleteWarning>
<RecycleWarning MESSAGE="[text]">Yes|No</RecycleWarning>
<ReverseWarning MESSAGE="[text]">Yes|No</ReverseWarning>
</Warnings>
</PlanActivityScreen>
XML Example
<PlanActivityScreen>
<MaximumRows>10</MaximumRows>
<FromDate>Blank</FromDate>
<Warnings>
<DeleteWarning MESSAGE="Are you sure you want to delete the activity">Yes</DeleteWarning>
<RecycleWarning MESSAGE="Are you sure you want to recycle the activity">Yes</RecycleWarning>
<ReverseWarning MESSAGE="Are you sure you want to reverse the activity">Yes</ReverseWarning>
</Warnings>
</PlanActivityScreen>