Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Overview


This structure represents the unique key fields associated with identifying a project task. Project Tasks can be identified by an ExternalSystemIdentifier or ProjectTaskUid. When specifying a PwsProjectTaskRef as an input to a web service, you may specify one or both the ExternalSystemIdentifier and ProjectTaskUid. However, if you do specify both, they must both refer to the same project task or the project task reference will not be considered valid. When a PwsProjectTaskRef is returned in the response to a web service, both the ExternalSystemIdentifier and ProjectTaskUid will be populated, and guaranteed to refer to a single project task.

Format


PwsProjectTaskNoteHistory
  • PwsProjectTaskNoteHistory
    • CreatedByUser: PwsUserRef
    • CreatedTimestamp: DateTime
    • ProjectTaskNotes: String

Elements


Element

Data Type

Description

Sample Data

CreatedByUser

PwsUserRef

The user who created the project task note


CreatedTimestamp

DateTime

The date and time (in UTC) this project task note was created

2018-03-07T18:24:42.013Z

ProjectTaskNotes

String

The project task note text

Please speak to Jack before starting this task

Usage Example(s)


Example 01
                          <a:PwsProjectTaskNoteHistory>
                              <a:CreatedByUser xmlns:b="http://projectorpsa.com/DataContracts/Shared/Common/">
                                 <b:UserDisplayName>Jack Spratt</b:UserDisplayName>
                                 <b:UserId i:nil="true"/>
                                 <b:UserReferenceSystemId>E123</b:UserReferenceSystemId>
                                 <b:UserUid>1152921504607112369</b:UserUid>
                              </a:CreatedByUser>
                              <a:CreatedTimestamp>2018-03-07T18:24:42.013Z</a:CreatedTimestamp>
                              <a:ProjectTaskNotes>Please speak to Jack before starting this task</a:ProjectTaskNotes>
                           </a:PwsProjectTaskNoteHistory>
  • No labels