Task Element (ChangeList)

This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

Specifies the identity of the task to change with a status update and contains change information.

<Task
  ID = "Text">
</Task>

Attributes

Attribute

Description

ID

Required Text. Specifies the globally unique identifier (GUID) of the task. Values must be in the form "FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF" where "F" represents a hexadecimal digit between "0" and "F".

Child Elements

Change

Parent Elements

Proj

Occurrences

Minimum: 0

Maximum: Unbounded

Remarks

For information about updatable task fields, PIDs, and required data types, see Supported Project Fields and Field Information for Statusing ChangeXML.

Example

The following example specifies two updates to a single task. The first Change element specifies that the Task Name field should be changed to the value MyTask. The second Change element specifies that the Finish field for the task should be changed to the value of 5pm October 13, 2006.

<Changes>
  <Proj ID="a47faeab-0f72-455a-b629-d62faf5fece6">
    <Task ID="0f8e477d-8dd9-4011-95cc-2499bb10cf10">
      <Change PID="184549403">MyTask</Change>
      <Change PID="184549387">2006-10-13T17:00:00</Change>
    </Task>
  </Proj>
</Changes>