property>
[, <property> ... ]properties
<property>
[, <property> ... ]
| |||
|---|---|---|---|
| Description | This attribute determines which properties will be included in the report. | ||
| Attributes | Name | Type | Description |
property | ID | See table below for possible values. | |
| Context | export, | ||
| Inheritable | No | Scenario Spec. | No |
all | Include all properties. |
bookings | Include all bookings for the report interval. Only bookings for non-filtered resources will be included. |
shifts | Include all shift definitions. |
tasks | Include all task definitions for non-filtered tasks. |
resources | Include all resource definitions for non-filtered resources. |
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
}