executeProjectTask
This method allows executing the task of a project.
| Java class | |
|---|---|
| Request | web/wwwroot/ws/java/project/ExecuteProjectTaskRequestType.java |
| Return | web/wwwroot/ws/java/project/ExecuteProjectTaskResponseType.java |
Request:
| ID | Required | Description |
|---|---|---|
| ProjectId | X | Project ID # |
| ProjectTaskId | X | Project task ID # |
| UserId | X | Executor user ID |
| StartDate | X | Actual start date (used when UsePlannedOrRescheduledDates is not filled in) [DD/MM/YYYY or YYYY-MM-DD] |
| EndDate | X¹ | Actual end date (used when UsePlannedOrRescheduledDates is not filled in) [DD/MM/YYYY or YYYY-MM-DD] |
| ActualPercentage | X | Activity execution percentage (100 when UsePlannedOrRescheduledDates is filled in) |
| UsePlannedOrRescheduledDates | X | Reports whether the execution should be performed by the planned, rescheduled, or user-defined date |
| Wbs | X | WBS number of the task |
info
X¹ - Required when ActualPercentage is equal to 100.
::: Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:project">
<soapenv:Header/>
<soapenv:Body>
<urn:executeProjectTask>
<!--You may enter the following 8 items in any order-->
<urn:ProjectId>?</urn:ProjectId>
<urn:ProjectTaskId>?</urn:ProjectTaskId>
<urn:Wbs>?</urn:Wbs>
<urn:UserId>?</urn:UserId>
<urn:ActualPercentage>?</urn:ActualPercentage>
<urn:StartDate>?</urn:StartDate>
<urn:EndDate>?</urn:EndDate>
<urn:UsePlannedOrRescheduledDates>?</urn:UsePlannedOrRescheduledDates>
</urn:executeProjectTask>
</soapenv:Body>
</soapenv:Envelope>
Return:
| ID | Description |
|---|---|
| Status | Method execution status. Its value may be: SUCCESS: Method executed successfully. FAILURE: An error occurred during the method execution. |
| Code | Record code. |
| Detail | Method return detail. |