newProjectRevenue
This method allows adding a revenue to a project. For this action, it is necessary to follow the standard documented below.
Java class | |
---|---|
Request | web/wwwroot/ws/java/project/NewProjectRevenueRequestType.java |
Return | web/wwwroot/ws/java/project/NewProjectRevenueResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
ProjectId | X | Project ID # |
Name | X | Revenue name |
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:newProjectRevenue>
<!--You may enter the following 9 items in any order-->
<urn:ProjectId>?</urn:ProjectId>
<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:newProjectRevenue>
</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. |