Oracle E-Business Suite · Schema
PurchaseOrderShipment
Business ApplicationsE-Business SuiteEnterpriseERPOracle
Properties
| Name | Type | Description |
|---|---|---|
| lineLocationId | integer | Line location (shipment) identifier |
| shipmentNum | integer | Shipment number |
| quantity | number | Shipment quantity |
| quantityReceived | number | Quantity received |
| quantityBilled | number | Quantity billed |
| needByDate | string | |
| promisedDate | string | |
| shipToOrganizationId | integer | Ship-to organization identifier |
| shipToLocationId | integer | Ship-to location identifier |
| closedCode | string | Shipment close status |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "PurchaseOrderShipment",
"type": "object",
"properties": {
"lineLocationId": {
"type": "integer",
"description": "Line location (shipment) identifier"
},
"shipmentNum": {
"type": "integer",
"description": "Shipment number"
},
"quantity": {
"type": "number",
"description": "Shipment quantity"
},
"quantityReceived": {
"type": "number",
"description": "Quantity received"
},
"quantityBilled": {
"type": "number",
"description": "Quantity billed"
},
"needByDate": {
"type": "string"
},
"promisedDate": {
"type": "string"
},
"shipToOrganizationId": {
"type": "integer",
"description": "Ship-to organization identifier"
},
"shipToLocationId": {
"type": "integer",
"description": "Ship-to location identifier"
},
"closedCode": {
"type": "string",
"description": "Shipment close status"
}
}
}