Update a default expenditure type

patch

/fscmRestApi/resources/11.13.18.05/defaultExpenditureTypesForSupplyChain/{ScmTransactionType}

Request

Path Parameters
  • The type of supply chain transaction. It is a unique value. This attribute is required. Valid values are RCS_PRJ_MATERIAL, RCS_PRJ_WO_HEADER, RCS_PRJ_LABOR_RESOURCE, and RCS_PRJ_NON_LABOR_RESOURCE.
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: Default Expenditure Types
    The value that uniquely identifies the expenditure type assigned to the supply chain transaction type. Either this attribute or ExpenditureTypeName is required.
  • The name of the expenditure type assigned to the supply chain transaction type. Either this attribute or ExpenditureTypeId is required.
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 : defaultExpenditureTypesForSupplyChain-item-response
Type: object
Show Source
  • Read Only: true
    Maximum Length: 64
    User who created the record.
  • Read Only: true
    Date and time when the user created the record.
  • Title: Default Expenditure Types
    The value that uniquely identifies the expenditure type assigned to the supply chain transaction type. Either this attribute or ExpenditureTypeName is required.
  • The name of the expenditure type assigned to the supply chain transaction type. Either this attribute or ExpenditureTypeId is required.
  • Read Only: true
    Date and time when the user most recently updated the record.
  • Read Only: true
    Maximum Length: 64
    User who most recently updated the record.
  • Links
  • Maximum Length: 30
    The type of supply chain transaction. It is a unique value. This attribute is required. Valid values are RCS_PRJ_MATERIAL, RCS_PRJ_WO_HEADER, RCS_PRJ_LABOR_RESOURCE, and RCS_PRJ_NON_LABOR_RESOURCE.
  • The value that uniquely identifies the expenditure type default for a specific supply chain transaction type. It is a primary key that the application generates.
Back to Top

Examples

This example describes how to update a default expenditure type.

Example cURL Command

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

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

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 updates.

{
	"ScmTransactionType": "RCS_PRJ_MATERIAL",
	"ExpenditureTypeName": "Material",
}

Example Response Body

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

{ 
	"TransactionTypeId": 300100176660389,
	"ScmTransactionType": "RCS_PRJ_MATERIAL",
	"ExpenditureTypeId": 10028,
	"ExpenditureTypeName": "Material",
	...
}
Back to Top