scenario <id> <name>

scenario <id> <name>
Description

Specifies the different project scenarios. A scenario that is nested into another one inherits all inheritable values from the enclosing scenario. There can only be one top-level scenario. It is usually called plan scenario. By default this scenario is pre-defined but can be overwritten with any other scenario.

AttributesNameTypeDescription
idID 
nameSTRING 
Optional Attributesbaseline, disabled, minslackrate, projection, scenario
Contextproject, scenario,
InheritableNoScenario Spec.No
See alsoscenarios

project prj "Example" "1.0" 2005-05-29 2005-07-01 {
  scenario plan "Planned Scenario" {
    scenario actual "Actual Scenario"
    scenario test "Test Scenario" {
      disabled
    }
  }
}

task t "Task" {
  start 2005-05-29
  actual:start 2005-06-03
  test:start 2005-06-07
}