editTaskReplanDate
This method allows for reprogramming the tasks of a project.
Java class | |
---|---|
Request | web/wwwroot/ws/java/project/EditTaskReplanDateRequestType.java |
Return | web/wwwroot/ws/java/project/EditTaskReplanDateResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
ProjectId | X | Project ID # |
cdtask | X¹ | Task code |
Wbs | X¹ | Task WBS number |
StartDate | X | Rescheduled start date [DD/MM/YYYY or YYYY-MM-DD] |
EndDate | X | Rescheduled end date [DD/MM/YYYY or YYYY-MM-DD] |
info
X¹ - Only one of the fields is required.
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:project">
<soapenv:Header/>
<soapenv:Body>
<urn:editTaskReplanDate>
<!--You may enter the following 2 items in any order-->
<urn:ProjectID>?</urn:ProjectID>
<urn:TaskList>
<!--0 to 1000 repetitions:-->
<urn:task>
<!--You may enter the following 4 items in any order-->
<urn:cdtask>?</urn:cdtask>
<urn:Wbs>?</urn:Wbs>
<urn:StartDate>?</urn:StartDate>
<urn:EndDate>?</urn:EndDate>
</urn:task>
</urn:TaskList>
<urn:editTaskReplanDate>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID # | Description |
---|---|
Status | Method execution status. Its value can be: SUCCESS: Method executed successfully. FAILURE: A failure occurred in the method execution. |
Detail | Method return detail. |
RecordList | List with the tasks informed in the request and their specific returns. |
cdtask | Task code. Displayed in each Record of the RecordList. |
ProjectID | Project ID #. Displayed in each Record of the RecordList. |
Code | Method return code. Displayed in each Record of the RecordList. |