Oracle E-Business Suite · Schema
BomComponent
Business ApplicationsE-Business SuiteEnterpriseERPOracle
Properties
| Name | Type | Description |
|---|---|---|
| componentSequenceId | integer | Component sequence identifier |
| componentItemId | integer | Component item identifier |
| componentItemNumber | string | Component item number |
| itemDescription | string | Component item description |
| operationSeqNum | integer | Operation sequence number where component is consumed |
| componentQuantity | number | Component quantity per assembly |
| componentYieldFactor | number | Component yield factor |
| effectivityDate | string | Effective date |
| disableDate | string | Disable date |
| wipSupplyType | integer | WIP supply type (1=Push, 2=Assembly Pull, 3=Operation Pull, 4=Bulk, 5=Supplier, 6=Phantom) |
| optional | integer | Optional flag (1=Yes, 2=No) |
| quantityRelated | integer | Quantity related flag |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "BomComponent",
"type": "object",
"properties": {
"componentSequenceId": {
"type": "integer",
"description": "Component sequence identifier"
},
"componentItemId": {
"type": "integer",
"description": "Component item identifier"
},
"componentItemNumber": {
"type": "string",
"description": "Component item number"
},
"itemDescription": {
"type": "string",
"description": "Component item description"
},
"operationSeqNum": {
"type": "integer",
"description": "Operation sequence number where component is consumed"
},
"componentQuantity": {
"type": "number",
"description": "Component quantity per assembly"
},
"componentYieldFactor": {
"type": "number",
"description": "Component yield factor"
},
"effectivityDate": {
"type": "string",
"description": "Effective date"
},
"disableDate": {
"type": "string",
"description": "Disable date"
},
"wipSupplyType": {
"type": "integer",
"description": "WIP supply type (1=Push, 2=Assembly Pull, 3=Operation Pull, 4=Bulk, 5=Supplier, 6=Phantom)"
},
"optional": {
"type": "integer",
"description": "Optional flag (1=Yes, 2=No)"
},
"quantityRelated": {
"type": "integer",
"description": "Quantity related flag"
}
}
}