Oracle E-Business Suite · Schema
WipOperation
Business ApplicationsE-Business SuiteEnterpriseERPOracle
Properties
| Name | Type | Description |
|---|---|---|
| wipEntityId | integer | WIP entity identifier |
| operationSeqNum | integer | Operation sequence number |
| organizationId | integer | Organization identifier |
| departmentId | integer | Department identifier |
| departmentCode | string | |
| operationDescription | string | Operation description |
| scheduledQuantity | number | |
| quantityInQueue | number | Quantity in queue |
| quantityRunning | number | Quantity running |
| quantityCompleted | number | Quantity completed |
| quantityScrapped | number | Quantity scrapped |
| firstUnitStartDate | string | |
| lastUnitCompletionDate | string | |
| countPointType | integer | |
| backflushFlag | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "WipOperation",
"type": "object",
"properties": {
"wipEntityId": {
"type": "integer",
"description": "WIP entity identifier"
},
"operationSeqNum": {
"type": "integer",
"description": "Operation sequence number"
},
"organizationId": {
"type": "integer",
"description": "Organization identifier"
},
"departmentId": {
"type": "integer",
"description": "Department identifier"
},
"departmentCode": {
"type": "string"
},
"operationDescription": {
"type": "string",
"description": "Operation description"
},
"scheduledQuantity": {
"type": "number"
},
"quantityInQueue": {
"type": "number",
"description": "Quantity in queue"
},
"quantityRunning": {
"type": "number",
"description": "Quantity running"
},
"quantityCompleted": {
"type": "number",
"description": "Quantity completed"
},
"quantityScrapped": {
"type": "number",
"description": "Quantity scrapped"
},
"firstUnitStartDate": {
"type": "string"
},
"lastUnitCompletionDate": {
"type": "string"
},
"countPointType": {
"type": "integer"
},
"backflushFlag": {
"type": "integer"
}
}
}