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 | Definition | Attribute | Element/Attribute Value and Description |
---|---|---|---|
<PlanActivityScreen> |
The opening and closing tag of the Plan Activity Screen Business Rule. |
|
|
<MaximumRows> |
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> |
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. |
<Warnings> |
Defines a section that may display messages as icons are clicked on the screen. |
|
|
<DeleteWarning> |
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 |
A literal value. Allows the configuration of a message. If element is not present, the default message is displayed (“Are you sure?”). |
||
<ReverseWarning> |
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 |
A literal value. Allows the configuration of a message. If element is not present, the default message is displayed (“Are you sure?”). |
||
<RecycleWarning> |
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 |
A literal value. Allows the configuration of a message. If element is not present, the default message is displayed (“Are you sure?”). |
XML Sample
<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>
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>