Create validations
/fscmRestApi/resources/11.13.18.05/validateInspectQuantities
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
-
AvailableQuantity: number
Quantity available to inspect.
-
CallingField: string
Abbreviation that identifies the field that called the REST API. Values are P, S, and NULL. The default value is NULL.
-
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 inspect.
-
PODistributionId: integer
Value that uniquely identifies the purchase order distribution.
-
Quantity: number
Quantity recommended to inspect the transaction.
-
RedwoodFlag: boolean
Default Value:
false
Contains one of the following values: true or false. If true, then navigation to the Validate Inspect Quantities REST API is from an Oracle responsive receiving application. If false, then navigation to the Validate Inspect Quantities REST API isn't from Oracle responsive receiving application. The default value is false. -
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.
-
SecondaryAvailableQuantity: number
Quantity available to inspect in the secondary unit of measure.
-
SecondaryQuantity: number
Secondary quantity recommended to inspect the transaction.
-
SecondaryUnitOfMeasure: string
Unit of measure for the secondary quantity recommended to inspect the transaction.
-
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.
-
UnitOfMeasure: string
Unit of measure for the quantity recommended to inspect 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
-
AvailableQuantity: number
Quantity available to inspect.
-
CallingField: string
Abbreviation that identifies the field that called the REST API. Values are P, S, and NULL. The default value is NULL.
-
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 inspect.
-
PODistributionId: integer
Value that uniquely identifies the purchase order distribution.
-
Quantity: number
Quantity recommended to inspect the transaction.
-
RedwoodFlag: boolean
Default Value:
false
Contains one of the following values: true or false. If true, then navigation to the Validate Inspect Quantities REST API is from an Oracle responsive receiving application. If false, then navigation to the Validate Inspect Quantities REST API isn't from Oracle responsive receiving application. The default value is false. -
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.
-
SecondaryAvailableQuantity: number
Quantity available to inspect in the secondary unit of measure.
-
SecondaryQuantity: number
Secondary quantity recommended to inspect the transaction.
-
SecondaryUnitOfMeasure: string
Unit of measure for the secondary quantity recommended to inspect the transaction.
-
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.
-
UnitOfMeasure: string
Unit of measure for the quantity recommended to inspect 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 inspection quantities that a user enters against quantities that are available to inspect.
Example cURL Command
Use the following cURL command to submit a request on the REST resource. This example validates a quantity of 1 Each, 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/validateInspectQuantities"
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 }