taskattributes <attribute> [, <attribute> ... ]

taskattributes <attribute> [, <attribute> ... ]
Description

The list of attribute names specifies which task attributes should be listed in the report in addition to the ones exported by default. The following values are supported. They correspond to the respective attributes of a task.

complete, depends, flags, maxend, maxstart, minend, minstart, note, priority, responsible

By specifying the ID of a user-defined attribute, these can be included as well.

A special case the is all keyword. If this is part of the list, all supported task attributes will be included in the report. This includes all user-defined task attributes.

AttributesNameTypeDescription
attributeID 
Contextexport,
InheritableNoScenario Spec.No

project prj  "Project" "1.0" 2000-01-01 - 2000-03-01

resource r "Resource"

task t "Task" {
  start 2000-01-01
  effort 10d
  allocate r
}

# Export the project as fully scheduled project.
export "FullProject.tjp" {
  taskattributes all
  hideresource 0
}

# Export only bookings for 1st week as resource supplements
export "Week1Bookings.tji" {
  start 2000-01-01
  end 2000-01-08
  properties bookings
  hideresource 0
}