Share via


TotalWork Element (SetAssignmentWorkData)

Applies to: Office 2010 | Project 2010 | Project Server 2010 | SharePoint Server 2010

In this article
Attributes
Child Elements
Parent Elements
Occurrences
Text Value

Specifies a work data update to the Total Work field and contains the new value for that field.

<TotalWork>
  WorkValue
</TotalWork>

Attributes

Attribute

Description

None

Child Elements

None

Parent Elements

Change

Occurrences

Minimum: 1

Maximum: 1

Text Value

A text value is required. This text specifies the value the Total Work field is updated to.

You must represent work duration data in Project work time units (PWU). 1 PWU=1/1000 of a minute. 480,000 PWU=8 hours.

Remarks

Note

If the value specified in the TotalWork element does not equal the sum of the values specified in the ActualWork and RemainingWork elements, a StatusingInvalidUpdateData error occurs.

Example

The following example uses the TotalWork element to specify that the Total Work field is updated to the value of 24 hours for the specified assignment.

<Changes>
  <Proj ID="a47faeab-0f72-455a-b629-d62faf5fece6">
    <Assn ID="6c9888a8-a782-47ac-a905-e84ad1fe0fb2">
      <Change>
        <ActualWork>480000</ActualWork>
        <RemainingWork>960000</RemainingWork>
        <TotalWork>1440000</TotalWork>
      </Change>
    </Assn>
  </Proj>
</Changes>