editProgramRevenue
This method allows editing the revenue of a program. For this action, it is necessary to follow the standard documented below.
Java class | |
---|---|
Request | web/wwwroot/ws/java/project/EditProgramRevenueRequestType.java |
Return | web/wwwroot/ws/java/project/EditProgramRevenueResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
ProgramId | X | Program ID # |
Name | X | Revenue name for editing |
TypeId | X | Revenue type ID # |
Phase | X | Step to add: 1 - Planned; 2 - Rescheduled; 3 - Actual. |
Date | X | Date (format: DD/MM/YYYY or YYYY-MM-DD) |
Amount | X | Quantity |
UnitValue | X | Unit value |
DocumentNumber | Document number | |
Description | Description |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:project">
<soapenv:Header/>
<soapenv:Body>
<urn:editProgramRevenue>
<!--You may enter the following 9 items in any order-->
<urn:ProgramId>?</urn:ProgramId>
<urn:Name>?</urn:Name>
<urn:TypeId>?</urn:TypeId>
<urn:Phase>?</urn:Phase>
<urn:Date>?</urn:Date>
<urn:Amount>?</urn:Amount>
<urn:UnitValue>?</urn:UnitValue>
<urn:DocumentNumber>?</urn:DocumentNumber>
<urn:Description>?</urn:Description>
</urn:editProgramRevenue>
</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. |