maxend <date>

maxend <date>
Description

Specifies the maximum wanted end time of the task. The value is not used during scheduling, but is checked after all tasks have been scheduled. If the end of the task is later than the specified value, then an error is reported.

AttributesNameTypeDescription
dateDATE 
Contexttask,
InheritableYesScenario Spec.Yes
See alsomaxstart, minend, minstart

project minmax "Min Max Example" "1.0" 2005-06-06 - 2005-06-26

task items "Project breakdown" {
  start 2005-06-07

  task plan "Plan work" {
		note "Some more information about this task."
    # Set acceptable interval for task start
    minstart 2005-06-06
    maxstart 2005-06-08
    length 3d
    # Set acceptable interval for task end
    minend 2005-06-09
    maxend 2005-06-11
  }
}