projection

projection
Description

Enables the projection mode for the scenario. All tasks will be scheduled taking the manual bookings into account. The tasks will be extended by scheduling new bookings starting with the current date until the specified effort, length or duration has been reached. In sloppy mode tasks with no bookings will be filled from the original start. In strict mode all tasks will be filled starting with the current date. No bookings will be added prior to the current date.

Optional Attributessloppy, strict
Contextscenario,
InheritableYesScenario Spec.Yes
See alsobaseline, booking

project prj "Project" "1.0" 2003-06-05 +1m {
  # The baseline date for the projection.
  now 2003-06-15
  scenario plan "Plan" {
    # Compute when the task will be ready based on the already done
    # work and the current date.
    projection { strict }
  }
}

resource r1 "Resource 1"

task t1 "Task 1" {
  start 2003-06-05
  effort 10d
  allocate r1
}

supplement resource r1 {
  # This is the work that has been done up until now by r1.
  booking t1 2003-06-06 +8h { sloppy 2 }
  booking t1 2003-06-08 +4h,
             2003-06-09 +4h { sloppy 2 }
  # Book interval that extends into off-hours.
  booking t1 2003-06-11-8:00 +10h { overtime 1 }
}