Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This structure represents a project task and its associated schedule for a given time buckettask hours for a role for a given week, according to the active task baseline, or the current task plan, if none.

Format


Panel
titlePwsProjectRoleTaskHoursBucket
  • PwsProjectRoleTaskHoursBucket
    • BucketStartDate: DateTime
    • PlannedTaskEffortDailyMinutes: Double[]
    • RemainingTaskEffortDailyMinutes: Double[]

...

Element

Data Type

Description

Sample

BucketStartDate

DateTime

The start date first day of the task bucketweek represented by this bucket. Always the first day of a week as configured by the account's first day of week setting.

2020-01-06T00:00:00Z

PlannedTaskEffortDailyMinutes

Double[]

The planned task effort minutes in association with the bucket. Indexed relative to the account's first day of week setting.


RemainingTaskEffortDailyMinutes

Double[]

The remaining task effort daily minutes in association with the bucketĀ the bucket. Indexed relative to the account's first day of week setting.


Usage Example(s)


Code Block
languagexml
titleExample 01
collapsetrue
                    <b:PwsProjectRoleTaskHoursBucket>
                        <b:BucketStartDate>2020-01-06T00:00:00Z</b:BucketStartDate>
                        <b:PlannedTaskEffortDailyMinutes xmlns:c="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                           <c:double>480</c:double>
                           <c:double>480</c:double>
                           <c:double>480</c:double>
                           <c:double>480</c:double>
                           <c:double>480</c:double>
                           <c:double>0</c:double>
                           <c:double>0</c:double>
                        </b:PlannedTaskEffortDailyMinutes>
                        <b:RemainingTaskEffortDailyMinutes xmlns:c="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                           <c:double>480</c:double>
                           <c:double>480</c:double>
                           <c:double>480</c:double>
                           <c:double>480</c:double>
                           <c:double>480</c:double>
                           <c:double>0</c:double>
                           <c:double>0</c:double>
                        </b:RemainingTaskEffortDailyMinutes>
                     </b:PwsProjectRoleTaskHoursBucket>

...