Create validations
/fscmRestApi/resources/11.13.18.05/validatePutAwayQuantities
Request
-
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.
- application/json
object
-
DocumentDistributionNumber: integer
Distribution number for the document schedule. This attribute applies only for a purchase order or transfer order.
-
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 put away.
-
PODistributionId: integer
Value that uniquely identifies the purchase order distribution.
-
Quantity: number
Quantity recommended to put away.
-
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 put away.
-
SecondaryUnitOfMeasure: string
Unit of measure for the secondary quantity recommended to put away.
-
SecondaryUOMCode: string
Abbreviation that identifies the secondary unit of measure.
-
SourceDocumentCode: string
Document type of the shipment. Valid values include PO, RMA, TRANSFER ORDER, or INVENTORY.
-
TransferOrderDistId: integer
Value that uniquely identifies the transfer order distribution.
-
UnitOfMeasure: string
Unit of measure for the quantity recommended to put away the transaction.
-
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
-
DocumentDistributionNumber: integer
Distribution number for the document schedule. This attribute applies only for a purchase order or transfer order.
-
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.
-
links: array
Links
Title:
Links
The link relations associated with the resource instance. -
ParentTransactionId: integer
Value that uniquely identifies the parent of the transaction to put away.
-
PODistributionId: integer
Value that uniquely identifies the purchase order distribution.
-
Quantity: number
Quantity recommended to put away.
-
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 put away.
-
SecondaryUnitOfMeasure: string
Unit of measure for the secondary quantity recommended to put away.
-
SecondaryUOMCode: string
Abbreviation that identifies the secondary unit of measure.
-
SourceDocumentCode: string
Document type of the shipment. Valid values include PO, RMA, TRANSFER ORDER, or INVENTORY.
-
TransferOrderDistId: integer
Value that uniquely identifies the transfer order distribution.
-
UnitOfMeasure: string
Unit of measure for the quantity recommended to put away the transaction.
-
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 quantity to put away that a user enters against the quantity that is available to put away.
Example cURL Command
Use the following cURL command to submit a request on the REST resource. This example validates a quantity of 1, for source document PO, on parent 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/validatePutAwayQuantities"
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:
{ "Quantity" : 1, "UnitOfMeasure" : null, "UOMCode" : "Ea", "SecondaryQuantity" : 0.08333, "SecondaryUnitOfMeasure" : null, "SecondaryUOMCode" : "DZ", "SourceDocumentCode" : "PO", "ParentTransactionId" : 3041458, "DocumentDistributionNumber" : null, "PODistributionId" : 0, "ReturnStatus" : "SUCCESS", "ErrorCode" : null, "ErrorExplanation" : null }