Create serial numbers

post

/fscmRestApi/resources/11.13.18.05/workOrders/{WorkOrderId}/child/WorkOrderSerialNumber

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
  • Maximum Length: 80
    Serial number that the work order product references.
  • Value that uniquely identifies the work order that this serial number references. It is a primary key that the application generates when it creates the work order.
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 : workOrders-WorkOrderSerialNumber-item-response
Type: object
Show Source
  • Read Only: true
    Value that uniquely identifies the item, product, or assembly in the inventory organization.
  • Links
  • Title: Name
    Read Only: true
    Maximum Length: 120
    Name of the operation that references this serial number.
  • Title: Operation Sequence
    Read Only: true
    Sequence to use when performing the work order operations that reference this serial number.
  • Read Only: true
    Value that uniquely identifies the inventory organization that's enabled for manufacturing. It is a primary key of the inventory organization.
  • Maximum Length: 80
    Serial number that the work order product references.
  • Read Only: true
    Maximum Length: 30
    This is an internal work execution status for the serial number. A list of accepted values is defined in the lookup type ORA_WIE_SERIAL_STATUS.
  • Title: Meaning
    Read Only: true
    Maximum Length: 80
    Description of the status of the serial number.
  • Title: Code
    Read Only: true
    Maximum Length: 30
    Abbreviation that identifies the operation.
  • Read Only: true
    Value that uniquely identifies the operation that the work order references. It is a primary key that the application generates when it creates the operation.
  • Read Only: true
    Value that uniquely identifies the work area. It is a primary key that the application generates when it creates the work area.
  • Title: Name
    Read Only: true
    Maximum Length: 80
    Name of the work area.
  • Read Only: true
    Value that uniquely identifies the work center. It is a primary key that the application generates when it creates the work center.
  • Title: Name
    Read Only: true
    Maximum Length: 120
    Name of the work center.
  • Value that uniquely identifies the work order that this serial number references. It is a primary key that the application generates when it creates the work order.
  • Read Only: true
    Value that uniquely identifies the work order operation. It is a primary key that the application generates when it creates the work order operation.
  • Read Only: true
    Value that uniquely identifies the material for the work order operation. It is a primary key that the application generates when it creates the material for the work order operation.
  • Read Only: true
    Value that uniquely identifies the product serial in the work order. It is a primary key that the application generates when it creates the serial number.
Back to Top

Examples

This example describes how to create one serial number for one work order.

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.action+json" -d 'request payload' "https://servername/fscmRestApi/resources/version/workOrders/WorkOrderId/child/WorkOrderSerialNumber"

For example, the following command creates serial PS5219 in work order 300100113271611:

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

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.

{
  "SerialNumber":"PS5219"
}

Example Response Body

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

{
  "OrganizationId": 207,
  "WorkOrderProductSerialId": 300100113268812,
  "WorkOrderId": 300100113271611,
  "WorkOrderOperationMaterialId": 300100113271624,
  "WorkOrderOperationId": null,
  "OperationSequenceNumber": null,
  "OperationName": null,
  "StandardOperationId": null,
  "StandardOperationCode": null,
  "WorkAreaId": null,
  "WorkAreaName": null,
  "WorkCenterId": null,
  "WorkCenterName": null,
  "InventoryItemId": 300100036689383,
  "SerialNumber": "PS5219",
  "SerialStatus": "ASSOCIATED",
  "SerialStatusDescription": null
}
Back to Top