Update an impact detail for a change impact

patch

/fscmRestApi/resources/11.13.18.05/changeOrders/{ChangeDocumentId}/child/ChangeImpacts/{ImpactId}/child/ChangeImpactDetails/{ImpactDetailsId}

Request

Path Parameters
Header Parameters
  • If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
  • The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
  • Title: Change Order ID
    External identifier of a project change order. Updatable only at creation time.
  • Title: Impact ID
    Unique identifier of the impact to the change order. Updatable only at creation time.
  • Title: Finish Date
    The finish date of the change impact detail.
  • Title: Burdened Cost in Project Currency
    The amount of change to the burdened cost in project currency.
  • Title: Raw Cost in Project Currency
    The amount of change to the raw cost in project currency.
  • Title: Revenue in Project Currency
    The amount of change to the revenue in project currency.
  • Title: Burdened Cost in Project Ledger Currency
    The amount of change to the burdened cost in project ledger currency.
  • Title: Raw Cost in Project Ledger Currency
    The amount of change to the raw cost in project ledger currency.
  • Title: Revenue in Project Ledger Currency
    The amount of change to the revenue in project ledger currency.
  • Title: Project or Task
    Maximum Length: 255
    Name of the task or the project for which change order impact detail is created. Updatable only at creation time.
  • Title: Quantity
    The amount of change to the quantity.
  • Title: Resource Name
    Maximum Length: 255
    Name of the resource that's impacted by the change. Updatable only at creation time.
  • Title: Start Date
    The start date of the change impact detail.
  • Title: Burdened Cost
    The amount of change to the burdened cost in transaction currency.
  • Title: Raw Cost
    The amount of change to the raw cost in transaction currency.
  • Title: Revenue
    The amount of change to the revenue in transaction currency.
  • Title: Transaction Currency Code
    Maximum Length: 15
    The currency code for the change impact in transaction currency.
  • Title: Unit of Measure
    Maximum Length: 30
    The unit to measure the quantity such as hours or tons.
Back to Top

Response

Supported Media Types

Default Response

The following table describes the default response for this task.
Headers
  • If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
  • The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
Body ()
Root Schema : changeOrders-ChangeImpacts-ChangeImpactDetails-item-response
Type: object
Show Source
Back to Top

Examples

The following example shows how to update an impact detail for a change impact by submitting a PATCH request on the REST resource using cURL.

curl -H "Content-Type: application/vnd.oracle.adf.action+json" --user ppm_cloud_user -X PATCH -d @example_request_payload.json
https://your_organization.com:port/fscmRestApi/resources/11.13.18.05/changeOrders/{ChangeDocumentId}/child/ChangeImpacts/{ImpactId}/child/ChangeImpactDetails/{ImpactDetailsId}

Request Body Example

The following shows an example of the request body in JSON format.

{
         "Quantity" : 200,
    }

Response Body Example

The following shows an example of the response body in JSON format.

{


"ChangeDocumentId": 300100585212206,
"ChangeImpactId": 300100585253624,
"FinishDate": "2024-03-29",
"ImpactDetailsId": 300100585253625,
"PCBurdenedCost": 990,
"PCRawCost": 990,
"PCRevenue": 1980,
"PfcBurdenedCost": 990,
"PfcRawCost": 990,
"PfcRevenue": 1980,
"ProjElementId": 300100085299786,
"Quantity": 200,
"RbsElementId": 300100084467634,
"StartDate": "2024-02-02",
"TCBurdenedCost": 990,
"TCRawCost": 990,
"TCRevenue": 1980,
"TransactionCurrency": "USD",
"UnitOfMeasure": "HOURS",
"ResourceName": "Consultant",
"ProjectOrTaskName": "Design Review"

}
Back to Top