Create transactions

post

/fscmRestApi/resources/11.13.18.05/splitPickTransactions

Request

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
  • Abbreviation that identifies the error that occurred when the pick split fails. If the pick split does not fail, then this attribute is empty.
  • Maximum Length: 80
    Explanation of why the error occurred when the pick split fails. If the pick split does not fail, then this attribute is empty.
  • Value that uniquely identifies the new line on the pick slip.
  • Value that uniquely identifies the pick slip.
  • Value that uniquely identifies a line on the pick slip.
  • Contains one of the following values. Y: remove allocated lots and serials. N: do not remove. If allocated lots and serials exist, then the warehouse cannot split the transaction. The default value is N.
  • Status of the pick split. Contains one of the following values: SUCCESS or ERROR.
  • Quantity to split into the new pick slip line.
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 : splitPickTransactions-item-response
Type: object
Show Source
Back to Top

Examples

This example describes how to split one pick slip line.

Example cURL Command

Use the following cURL command to submit a request on the REST resource. This example splits a pick slip line for pick slip 1127157, on pick slip line 1, for split quantity of 1:

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

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.

{  
  "PickSlip" : 1127157
, "PickSlipLine" : 1
, "SplitQuantity" : 1
 }

Example Response Body

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

{
  "ErrorCode" : null,
  "ErrorExplanation" : null,
  "NewPickSlipLine" : 2,
  "PickSlip" : 1127157,
  "PickSlipLine" : 1,
  "ReturnStatus" : " Success",
  "SplitQuantity" : 1,
  "links" : [ {
    "rel" : "self",
    "href" : "https://servernamefscmRestApi/resources/version/splitPickTransactions/00020000000EACED0005770800000000001132F50000000EACED000577080000000000000001",
    "name" : "splitPickTransactions",
    "kind" : "item"
  }, {
    "rel" : "canonical",
    "href" : "https://servername/fscmRestApi/resources/version/splitPickTransactions/00020000000EACED0005770800000000001132F50000000EACED000577080000000000000001",
    "name" : "splitPickTransactions",
    "kind" : "item"
  } ]
           }
Back to Top