Create transactions
post
/fscmRestApi/resources/11.13.18.05/splitPickTransactions
Request
Header Parameters
-
Metadata-Context:
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".
-
REST-Framework-Version:
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
- application/json
Root Schema : schema
Type:
Show Source
object
-
ErrorCode: string
Abbreviation that identifies the error that occurred when the pick split fails. If the pick split does not fail, then this attribute is empty.
-
ErrorExplanation: string
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. -
NewPickSlipLine: integer
Value that uniquely identifies the new line on the pick slip.
-
PickSlip: integer
Value that uniquely identifies the pick slip.
-
PickSlipLine: integer
Value that uniquely identifies a line on the pick slip.
-
RemoveAllocatedLotSerials: string
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.
-
ReturnStatus: string
Status of the pick split. Contains one of the following values: SUCCESS or ERROR.
-
SplitQuantity: number
Quantity to split into the new pick slip line.
Response
Supported Media Types
- application/json
Default Response
The following table describes the default response for this task.
Headers
-
Metadata-Context(required):
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".
-
REST-Framework-Version(required):
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.
Root Schema : splitPickTransactions-item-response
Type:
Show Source
object
-
ErrorCode: string
Abbreviation that identifies the error that occurred when the pick split fails. If the pick split does not fail, then this attribute is empty.
-
ErrorExplanation: string
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. -
links: array
Links
Title:
Links
The link relations associated with the resource instance. -
NewPickSlipLine: integer
Value that uniquely identifies the new line on the pick slip.
-
PickSlip: integer
Value that uniquely identifies the pick slip.
-
PickSlipLine: integer
Value that uniquely identifies a line on the pick slip.
-
RemoveAllocatedLotSerials: string
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.
-
ReturnStatus: string
Status of the pick split. Contains one of the following values: SUCCESS or ERROR.
-
SplitQuantity: number
Quantity to split into the new pick slip line.
Nested Schema : Links
Type:
array
Title:
Links
The link relations associated with the resource instance.
Show Source
Nested Schema : link
Type:
Show Source
object
-
href: string
Title:
hyperlink reference
The URI to the related resource. -
kind: string
Title:
kind
Allowed Values:[ "collection", "item", "describe", "other" ]
The kind of the related resource. -
name: string
Title:
name
The name of the link to the related resource. -
properties: object
properties
-
rel: string
Title:
relation
Allowed Values:[ "self", "lov", "parent", "canonical", "child", "enclosure", "action", "custom" ]
The name of the relation to the resource instance. Example: self.
Nested Schema : properties
Type:
Show Source
object
-
changeIndicator: string
Change indicator or the ETag value of the resource instance.
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" } ] }