Create cost adjustment

post

/fscmRestApi/resources/11.13.18.05/costAdjustments

Request

Header Parameters
  • This header accepts a string value. The string is a semi-colon separated list of =. It is used to perform effective date range operations. The accepted parameters are RangeMode, RangeSpan, RangeStartDate, RangeEndDate, RangeStartSequence and RangeEndSequence. The parameter values are always strings. The possible values for RangeMode are SET_LOGICAL_START, SET_LOGICAL_END, END_DATE, SET_EFFECTIVE_START, SET_EFFECTIVE_END, REPLACE_CORRECTION, REPLACE_UPDATE, RECONCILE_CORRECTION, CORRECTION, RECONCILE_UPDATE, UPDATE, ZAP and DELETE_CHANGES. The possible values for RangeSpan are PHYSICAL_ROW_END_DATE and LOGICAL_ROW_END_DATE. The values for RangeStartDate and RangeEndDate have to be a string representation of a date in yyyy-MM-dd format. The value for RangeStartSequence and RangeEndSequence must be strings such that when parsed they yield positive integers.
  • 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.
  • Contains one of the following values: true or false. If true, the server performs an Upsert operation instead of a Create operation. During an Upsert operation, the server attempts to find an existing resource that matches the payload. If a match is found, the server updates the existing resource instead of creating a new one. If not found or false (default), the server performs a Create operation. Note that the Upsert operation isn't supported for date-effective REST resources.
Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
Nested Schema : Cost Adjustment Details
Type: array
Title: Cost Adjustment Details
Adjustment cost at cost-element level for a receipt or an item.
Show Source
Nested Schema : schema
Type: object
Show Source
  • Title: Cost Element
    Maximum Length: 30
    Cost element to use when creating an adjustment detail. Review and update the value for this attribute using the Setup and Maintenance work area, and the Manage Cost Elements task.
  • Title: Cost Element ID
    Value that uniquely identifies the cost element.
  • Title: Expense Pool ID
    Value that uniquely identifies the expense pool.
  • Title: New Cost
    New cost of the cost element.
  • Title: Source Transaction Cost ID
    Value that uniquely identifies the transaction cost identifier for which the adjustment detail is created.
  • Title: Source Transaction ID
    Value that uniquely identifies the transaction for which the adjustment is created.
  • Title: Unit Cost
    Unit cost of the cost element.
  • Title: Comments
    Maximum Length: 240
    Optional comment entered by the user for the cost adjustment detail.
  • Title: User Defined
    Maximum Length: 5
    Contains one of the following values: true or false. If true, then adjustment detail is user defined. If false, then adjustment detail is generated from the existing cost elements associated with the item. The attribute does not have a default value.
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 : costAdjustments-item-response
Type: object
Show Source
Nested Schema : Cost Adjustment Details
Type: array
Title: Cost Adjustment Details
Adjustment cost at cost-element level for a receipt or an item.
Show Source
Nested Schema : costAdjustments-AdjustmentDetail-item-response
Type: object
Show Source
  • Title: Adjustment Header ID
    Read Only: true
    Value that uniquely identifies the adjustment against which this adjustment detail is created.
  • Title: Cost Element
    Maximum Length: 30
    Cost element to use when creating an adjustment detail. Review and update the value for this attribute using the Setup and Maintenance work area, and the Manage Cost Elements task.
  • Title: Cost Element ID
    Value that uniquely identifies the cost element.
  • Title: Expense Pool
    Read Only: true
    Maximum Length: 30
    Expense pool to use when creating an adjustment detail. Review and update the value for this attribute using the Setup and Maintenance work area, and the Manage Expense Pools task.
  • Title: Expense Pool ID
    Value that uniquely identifies the expense pool.
  • Links
  • Title: New Cost
    New cost of the cost element.
  • Title: Source Transaction Cost ID
    Value that uniquely identifies the transaction cost identifier for which the adjustment detail is created.
  • Title: Source Transaction ID
    Value that uniquely identifies the transaction for which the adjustment is created.
  • Title: Unit Cost
    Unit cost of the cost element.
  • Title: User Adjustment ID
    Read Only: true
    Value that uniquely identifies the adjustment detail. The application generates this value.
  • Title: Comments
    Maximum Length: 240
    Optional comment entered by the user for the cost adjustment detail.
  • Title: User Defined
    Maximum Length: 5
    Contains one of the following values: true or false. If true, then adjustment detail is user defined. If false, then adjustment detail is generated from the existing cost elements associated with the item. The attribute does not have a default value.
Back to Top

Examples

This example describes how to create one cost adjustment.

Example cURL Command

Use the following cURL command to submit a request on the REST resource.

curl -u username:password -X POST -H "Content-Type:application/vnd.oracle.adf.resourceitem+json" -d 'request payload' "https://servername/fscmRestApi/resources/version/costAdjustments"

Example Request Body

The following example includes the contents of the request body in JSON format. You replace the request payload in the cURL command with the contents of the Example Request Body. The request payload specifies attribute values that the command will use in the record that it creates.

{
   "TransactionId" : 333133,
   "AdjustmentType" : "Receipt",
   "Reason" : "ST_ADJ",
   "AdjustmentDetail" :  [
    {
       "CostElement" : "ZCST-MATERIAL",
       "NewCost" : 1
    }
  ]
} 

Example Response Body

The following example includes the contents of the response body in JSON format:

{
  "AdjustmentHeaderId" : 4011,
  "AdjustmentNumber" : "6001",
  "AdjustmentTypeCode" : "R",
  "AdjustmentDate" : null,
  "AdjustmentStatusCode" : "P",
  "ReasonCode" : "ST_ADJ",
  "TransactionId" : 333133,
  "CostOrganizationId" : 100000014977014,
  "CostBookId" : 100000014978010,
  "ItemId" : 149,
  "InventoryOrganizationId" : 207,
  "ReceiptQuantity" : 10,
  "QuantityOnhand" : 0,
  "TotalUnitCost" : 1107.86,
  "TotalNewCost" : 1,
  "ValuationUnitId" : 300100002799598,
  "CostDate" : "2012-04-24T08:56:31+00:00",
  "ReceiptNumber" : "33594",
  "CurrencyCode" : "USD",
  "CostOrganizationName" : "ZCST-Seattle",
  "CostBook" : "ZCST-Seattle",
  "InventoryOrganizationName" : "Tall Manufacturing",
  "Item" : "AS54888",
  "ValuationUnit" : "ORG11-M1",
  "AdjustmentType" : "Receipt",
  "AdjustmentStatus" : "Pending",
  "Reason" : "ST_ADJ",
  "UOMCode" : "Ea",
  "UOMName" : "Each",
  "AdjustmentDetail" : [ {
    "AdjustmentHeaderId" : 4011,
    "CostElementId" : 100000010001028,
    "ExpensePoolId" : 0,
    "NewCost" : 1,
    "SourceTransactionCostId" : 23588,
    "SourceTransactionId" : 333133,
    "UnitCost" : 1107.86,
    "UserAdjustmentId" : 5048,
    "CostElement" : "ZCST-MATERIAL",
    "ExpensePool" : null,
    "UserDefinedFlag" : false,
 ...
 }
 ],
 ...
}

Example Two cURL Command

Example Two Request Body

This example creates a complex cost adjustment that includes multiple cost elements:

curl -u username:password -X POST -H "Content-Type:application/vnd.oracle.adf.resourceitem+json" -d 'request payload' "https://servername/fscmRestApi/resources/version/costAdjustments"

The following example includes the contents of the request body in JSON format:

{
   "TransactionId" : 333133,
   "AdjustmentType" : "Receipt",
   "Reason" : "ST_ADJ",
   "AdjustmentDetail" :  [
    {
       "CostElement" : "ZCST-MATERIAL",
       "NewCost" : 1
    },
    {
       "CostElement" : "ZCST-OVERHEAD",
       "NewCost" : 6
    }
  ]
} 

Example Two Response Body

The following example includes the contents of the response body in JSON format:

{
  "AdjustmentHeaderId" : 4011,
  "AdjustmentNumber" : "6001",
  "AdjustmentTypeCode" : "R",
  "AdjustmentDate" : null,
  "AdjustmentStatusCode" : "P",
  "ReasonCode" : "ST_ADJ",
  "TransactionId" : 333133,
  "CostOrganizationId" : 100000014977014,
  "CostBookId" : 100000014978010,
  "ItemId" : 149,
  "InventoryOrganizationId" : 207,
  "ReceiptQuantity" : 10,
  "QuantityOnhand" : 0,
  "TotalUnitCost" : 1107.86,
  "TotalNewCost" : 7,
  "ValuationUnitId" : 300100002799598,
  "CostDate" : "2012-04-24T08:56:31+00:00",
  "ReceiptNumber" : "33594",
  "CurrencyCode" : "USD",
  "CostOrganizationName" : "ZCST-Seattle",
  "CostBook" : "ZCST-Seattle",
  "InventoryOrganizationName" : "Tall Manufacturing",
  "Item" : "AS54888",
  "ValuationUnit" : "ORG11-M1",
  "AdjustmentType" : "Receipt",
  "AdjustmentStatus" : "Pending",
  "Reason" : "ST_ADJ",
  "UOMCode" : "Ea",
  "UOMName" : "Each",
  "AdjustmentDetail" : [ {
    "AdjustmentHeaderId" : 4011,
    "CostElementId" : 100000010001028,
    "ExpensePoolId" : 0,
    "NewCost" : 1,
    "SourceTransactionCostId" : 23588,
    "SourceTransactionId" : 333133,
    "UnitCost" : 1107.86,
    "UserAdjustmentId" : 5048,
    "CostElement" : "ZCST-MATERIAL",
    "ExpensePool" : null,
    "UserDefinedFlag" : false,
 ...
 }, {
    "AdjustmentHeaderId" : 4011,
    "CostElementId" : 100000011624089,
    "ExpensePoolId" : 0,
    "NewCost" : 6,
    "SourceTransactionCostId" : 23589,
    "SourceTransactionId" : 333133,
    "UnitCost" : 0,
    "UserAdjustmentId" : 5049,
    "CostElement" : "ZCST-OVERHEAD",
    "ExpensePool" : null,
    "UserDefinedFlag" : false,
 ...
 }
 ],
 ...
}   

Example Three cURL Command

Example Three Request Body

This example creates a complex cost adjustment that includes multiple cost element identifiers:

curl -u username:password -X POST -H "Content-Type:application/vnd.oracle.adf.resourceitem+json" -d 'request payload' "https://servername/fscmRestApi/resources/version/costAdjustments"

The following example includes the contents of the request body in JSON format:

{
   "TransactionId" : 333133,
   "AdjustmentType" : "Receipt",
   "Reason" : "ST_ADJ",
   "AdjustmentDetail" :  [
    {
       "CostElementId" : 100000010001028,
       "NewCost" : 1
    },
    {
       "CostElementId" : 100000011624081,
       "NewCost" : 6
    },
    {
       "CostElementId" : 100000011624011,
       "NewCost" : 1
    }
  ]
} 

Example Three Response Body

The following example includes the contents of the response body in JSON format:

{
  "AdjustmentHeaderId" : 4011,
  "AdjustmentNumber" : "6001",
  "AdjustmentTypeCode" : "R",
  "AdjustmentDate" : null,
  "AdjustmentStatusCode" : "P",
  "ReasonCode" : "ST_ADJ",
  "TransactionId" : 333133,
  "CostOrganizationId" : 100000014977014,
  "CostBookId" : 100000014978010,
  "ItemId" : 149,
  "InventoryOrganizationId" : 207,
  "ReceiptQuantity" : 10,
  "QuantityOnhand" : 0,
  "TotalUnitCost" : 1107.86,
  "TotalNewCost" : 8,
  "ValuationUnitId" : 300100002799598,
  "CostDate" : "2012-04-24T08:56:31+00:00",
  "ReceiptNumber" : "33594",
  "CurrencyCode" : "USD",
  "CostOrganizationName" : "ZCST-Seattle",
  "CostBook" : "ZCST-Seattle",
  "InventoryOrganizationName" : "Tall Manufacturing",
  "Item" : "AS54888",
  "ValuationUnit" : "ORG11-M1",
  "AdjustmentType" : "Receipt",
  "AdjustmentStatus" : "Pending",
  "Reason" : "ST_ADJ",
  "UOMCode" : "Ea",
  "UOMName" : "Each",
  "AdjustmentDetail" : [ {
    "AdjustmentHeaderId" : 4011,
    "CostElementId" : 100000010001028,
    "ExpensePoolId" : 0,
    "NewCost" : 1,
    "SourceTransactionCostId" : 23588,
    "SourceTransactionId" : 333133,
    "UnitCost" : 1107.86,
    "UserAdjustmentId" : 5048,
    "CostElement" : "ZCST-MATERIAL",
    "ExpensePool" : null,
    "UserDefinedFlag" : false,
 ...
 }, {
    "AdjustmentHeaderId" : 4011,
    "CostElementId" : 100000011624081,
    "ExpensePoolId" : 0,
    "NewCost" : 6,
    "SourceTransactionCostId" : 23589,
    "SourceTransactionId" : 333133,
    "UnitCost" : 0,
    "UserAdjustmentId" : 5049,
    "CostElement" : "ZCST-OVERHEAD",
    "ExpensePool" : null,
    "UserDefinedFlag" : false,
 ...
 }
 ],
 ...
}   
Back to Top