getProjectFinance
This method allows viewing the financial entries of a project.
To insert each of these items, it is necessary to follow the standard documented below.
Java class | |
---|---|
Request | web/wwwroot/ws/java/project/GetProjectFinanceRequestType.java |
Return | web/wwwroot/ws/java/project/GetProjectFinanceResponseType.java |
Request:
ID | Required | Description |
---|---|---|
ProjectId | Project ID # | |
FinanceType | x | Identifies the financial entry type: 1 - Cost; 2 - Revenue. |
Currency | Currency in which the values will be returned. If it is not entered, the information will be returned in accordance with the project currency. |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:project">
<soapenv:Header/>
<soapenv:Body>
<urn:getProjectFinance>
<urn:ProjectId>?</urn:ProjectId>
<urn:FinanceType>?</urn:FinanceType>
<urn:Currency>?</urn:Currency>
</urn:getProjectFinance>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID | Description |
---|---|
return | SUCCESS:Â returns a list with the cost/revenue data: â–ª NAME: Financial entry name â–ª TYPEID: Financial entry type ID # â–ª CURRENCY: Financial entry currency â–ª PLANNEDDATE: Planned due date â–ª PLANNEDAMOUNT: Planned amount â–ª PLANNEDUNITVALUE: Planned unit value â–ª PLANNEDTOTALVALUE: Planned total value â–ª RESCHEDULEDATE: Rescheduled due date â–ª RESCHEDULEAMOUNT: Rescheduled amount â–ª RESCHEDULEUNITVALUE: Rescheduled unit value â–ª RESCHEDULETOTALVALUE: Rescheduled total value â–ª ACTUALDATE: Actual due date â–ª ACTUALAMOUNT: Actual amount â–ª ACTUALUNITVALUE: Actual unit value â–ª ACTUALTOTALVALUE: Actual total value â–ª DOCUMENTNUMBER: Document number â–ª DESCRIPTION: Description â–ª COSTCLASSIFICATION: Cost classification (for project only) FAILURE: ProjectTaskId: - Impossible to find project; Currency:'' - Currency not enabled; Currency: - No values found for the requested currency; Currency: - Disabled multicurrency. |