Create validation
/fscmRestApi/resources/11.13.18.05/validateReturnQuantities
Request
-
Metadata-Context: string
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: string
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.
- application/json
object
-
CallingField: string
Abbreviation that identifies the field that called the REST API. Values are P, S, and NULL. The default value is NULL.
-
ConsignedItems: string
Default Value:
N
Contains one of the following values: Y or N. If Y, then the item is consigned. If N, then the item is not consigned. The default value is N. -
ErrorCode: string
Abbreviation that identifies the message that describes the error that occurred when validating the quantity. If the Return Status attribute contains a value of SUCCESS, then the Error Code attribute is empty.
-
ErrorExplanation: string
Message that describes the error that occurred when validating the quantity. If the Return Status attribute contains a value of SUCCESS, then the Error Explanation attribute is empty.
-
ParentTransactionId: integer
Value that uniquely identifies the parent of the transaction to return.
-
Quantity: number
Quantity recommended to return.
-
RedwoodFlag: boolean
Default Value:
false
Contains one of the following values: true or false. If true, then navigation to the Validate Return Quantities REST API is from a Responsive Redwood Receiving Application. If false, then navigation to the Validate Return Quantities REST API isn't from a Responsive Redwood Receiving Application. The default value is false. -
ReturnLineId: integer
Value that uniquely identifies the return line.
-
ReturnStatus: string
Status returned by the application when validating the quantity. Valid values are SUCCESS, ERROR, and WARNING. SUCCESS: the application successfully validated the quantity for the transaction. ERROR: this validation failed. WARNING: the validation found a potential problem, but allows the transaction to continue.
-
SecondaryQuantity: number
Secondary quantity recommended to return.
-
SecondaryUnitOfMeasure: string
Unit of measure for the secondary quantity recommended to return.
-
SecondaryUOMCode: string
Abbreviation that identifies the secondary unit of measure.
-
SourceDocumentCode: string
Abbreviation that identifies the document type of the shipment. Valid values include PO, RMA, TRANSFER ORDER, or INVENTORY.
-
TransferLPNId: integer
Name of the transfer license plate number.
-
UnitOfMeasure: string
Unit of measure for the quantity recommended to return.
-
UOMCode: string
Abbreviation that identifies the unit of measure.
Response
- application/json
Default Response
-
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.
object
-
AvailableQuantity: number
Read Only:
true
Quantity available to return. -
CallingField: string
Abbreviation that identifies the field that called the REST API. Values are P, S, and NULL. The default value is NULL.
-
ConsignedItems: string
Default Value:
N
Contains one of the following values: Y or N. If Y, then the item is consigned. If N, then the item is not consigned. The default value is N. -
ErrorCode: string
Abbreviation that identifies the message that describes the error that occurred when validating the quantity. If the Return Status attribute contains a value of SUCCESS, then the Error Code attribute is empty.
-
ErrorExplanation: string
Message that describes the error that occurred when validating the quantity. If the Return Status attribute contains a value of SUCCESS, then the Error Explanation attribute is empty.
-
LicensePlateNumber: string
Read Only:
true
Maximum Length:80
Name of the license plate number. -
links: array
Links
Title:
Links
The link relations associated with the resource instance. -
LPNId: integer
Read Only:
true
Value that uniquely identifies the license plate number. -
ParentTransactionId: integer
Value that uniquely identifies the parent of the transaction to return.
-
Quantity: number
Quantity recommended to return.
-
RedwoodFlag: boolean
Default Value:
false
Contains one of the following values: true or false. If true, then navigation to the Validate Return Quantities REST API is from a Responsive Redwood Receiving Application. If false, then navigation to the Validate Return Quantities REST API isn't from a Responsive Redwood Receiving Application. The default value is false. -
ReturnLineId: integer
Value that uniquely identifies the return line.
-
ReturnStatus: string
Status returned by the application when validating the quantity. Valid values are SUCCESS, ERROR, and WARNING. SUCCESS: the application successfully validated the quantity for the transaction. ERROR: this validation failed. WARNING: the validation found a potential problem, but allows the transaction to continue.
-
SecondaryQuantity: number
Secondary quantity recommended to return.
-
SecondaryUnitOfMeasure: string
Unit of measure for the secondary quantity recommended to return.
-
SecondaryUOMCode: string
Abbreviation that identifies the secondary unit of measure.
-
SourceDocumentCode: string
Abbreviation that identifies the document type of the shipment. Valid values include PO, RMA, TRANSFER ORDER, or INVENTORY.
-
TransferLicensePlateNumber: string
Read Only:
true
Maximum Length:80
Value that uniquely identifies the transfer license plate number. -
TransferLPNId: integer
Name of the transfer license plate number.
-
UnitOfMeasure: string
Unit of measure for the quantity recommended to return.
-
UOMCode: string
Abbreviation that identifies the unit of measure.
array
Links
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.
object
-
changeIndicator: string
Change indicator or the ETag value of the resource instance.
Examples
This example describes how to validate the returned quantities that a user enters against the quantities that are available to return.
Example cURL Command
Use the following cURL command to submit a request on the REST resource. This example validates a quantity of 1, on source document PO, for transaction 3041458:
curl -u username:password -X POST -H "Content-Type:application/vnd.oracle.adf.resourceitem+json" -d 'request payload' "https://servername/fscmRestApi/resources/version/validateReturnQuantities"
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.
{ "Quantity" : "1", "UOMCode" : "Ea", "SourceDocumentCode" : "PO", "ParentTransactionId" : "3041458" }
Example Response Body
The following example includes the contents of the response body in JSON format:
{ "ParentTransactionId" : 3041458, "Quantity" : 1, "ErrorCode" : null, "ErrorExplanation" : null, "ReturnStatus" : "SUCCESS", "SecondaryQuantity" : 0.08333, "SecondaryUOMCode" : "DZ", "SecondaryUnitOfMeasure" : null, "SourceDocumentCode" : "PO", "UOMCode" : "Ea", "UnitOfMeasure" : null, "ConsignedItems" : "N" }