Versions Compared

Key

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

...

This structure represents the results of a task completion estimate updateproject task estimate insertion. Multiple project task estimates can be submitted for insert in a single request to PwsSaveTimeCards. This operation can partially succeed, meaning some estimates were successfully saved while others triggered errors and could not be saved. The web service will report back details about each estimate, whether it succeeded or failed, by returning a collection of these structures. For failed estimates, ErrorDetail will provide more details about the nature of the failure.

Format


Panel
titlePwsSaveEstimateResult

Elements

...

Element

Data Type

Description

Sample Data

ErrorDetail

PwsErrorDetail

The error detail regarding a failed estimate update.


Estimates

PwsProjectTaskRoleRemaining [???]

The details of the estimate update.


ReferenceId

String

Reference id (used to affiliate PwsSaveEstimateResult records with associated PwsTimeCardDetail PwsEstimate records).

E11

Usage Example(s)


Code Block
languagexml
titleExample 01 - successful response
collapsetrue
             <a:PwsSaveEstimateResult>
                  <a:ErrorDetail i:nil="true" xmlns:b="http://projectorpsa.com/DataContracts/Shared/Common/"/>
                  <a:Estimates>
                     <a:PwsProjectTaskRoleRemaining>
                        <a:CompletedFlag>false</a:CompletedFlag>
                        <a:RemainingAsOfDate>2018-03-09T00:00:00Z</a:RemainingAsOfDate>
                        <a:RemainingMinutes>360</a:RemainingMinutes>
                     </a:PwsProjectTaskRoleRemaining>
                  </a:Estimates>
                  <a:ReferenceId>E11</a:ReferenceId>
               </a:PwsSaveEstimateResult>

...