Search Results bom_delete_status_type
Overview
APPS.BOM_DELETE_SUB_ENTITIES_V is a reporting and inquiry view in Oracle E-Business Suite that exposes the contents of the BOM_DELETE_SUB_ENTITIES table. The base table stores the individual sub-entities — component assignments, operation references, and related effectivity records — that are scheduled for removal when a bill of materials is processed through the BOM deletion programs. Rather than requiring callers to join the underlying table to the manufacturing lookup set, the view performs that decode internally and presents a human-readable delete status alongside the raw code value.
The view is owned by APPS and is defined in both Oracle EBS 12.1.1 and 12.2.2. It is a read-oriented object: the view is not intended to be inserted into or updated directly, since it derives its DELETE_STATUS column from a lookup meaning and its ROW_ID column from the underlying table's ROWID pseudo-column.
Underlying Base Objects
The view is defined as a join between two documented base objects:
- BOM_DELETE_SUB_ENTITIES (SYNONYM) — the primary object, aliased as BDSE. It supplies every column except the decoded delete status. The synonym resolves to the base deletion sub-entity table in the BOM schema.
- MFG_LOOKUPS (VIEW) — aliased as ML. It provides the lookup meaning that decodes the delete status code. The join is constrained with
ML.LOOKUP_TYPE = 'BOM_DELETE_STATUS_TYPE'.
The join predicate is written as BDSE.DELETE_STATUS_TYPE (+) = ML.LOOKUP_CODE, an outer join on the BOM_DELETE_SUB_ENTITIES side. This means rows in the deletion sub-entity table whose DELETE_STATUS_TYPE does not resolve to a value in the BOM_DELETE_STATUS_TYPE lookup set are still returned, with a null DELETE_STATUS. Because MFG_LOOKUPS is itself a view over the FND_LOOKUP_VALUES family of tables, the effective lineage of BOM_DELETE_SUB_ENTITIES_V reaches into the application lookup infrastructure.
Key Columns
- ROW_ID — the ROWID of the underlying BOM_DELETE_SUB_ENTITIES row, useful for pinpointing the physical record.
- DELETE_ENTITY_SEQUENCE_ID — primary identifier for the deletion sub-entity record.
- DELETE_STATUS_TYPE — the raw lookup code stored on the record.
- DELETE_STATUS — the decoded meaning from MFG_LOOKUPS for lookup type BOM_DELETE_STATUS_TYPE; this is the column most commonly used for filtering and reporting.
- DELETE_DATE — the date on which the sub-entity was deleted.
- COMPONENT_SEQUENCE_ID, OPERATION_SEQUENCE_ID, OPERATION_SEQ_NUM, COMPONENT_ITEM_ID, COMPONENT_CONCAT_SEGMENTS, ITEM_NUM — identify the component and operation affected by the deletion.
- OPERATION_DEPARTMENT_CODE, DESCRIPTION, DISABLE_DATE, EFFECTIVITY_DATE — descriptive and dating attributes of the affected entity.
- FROM_END_ITEM_UNIT_NUMBER, TO_END_ITEM_UNIT_NUMBER — the end-item unit range covered by the deletion.
- REQUEST_ID, PROGRAM_ID, PROGRAM_APPLICATION_ID, PROGRAM_UPDATE_DATE — concurrent program context that produced the row.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard WHO audit columns.
Common Use Cases and Queries
The view is typically queried to audit or troubleshoot BOM deletion activity, to confirm which components were removed, and to reconcile deletion requests against their concurrent program identifiers. A representative query follows:
SELECT delete_entity_sequence_id,
component_sequence_id,
item_num,
delete_status,
delete_date,
request_id
FROM apps.bom_delete_sub_entities_v
WHERE delete_status = 'Deleted'
ORDER BY delete_date DESC;
Because DELETE_STATUS_TYPE is decoded, analysts can group and count deletions by status without a separate lookup join:
SELECT delete_status, COUNT(*) FROM apps.bom_delete_sub_entities_v GROUP BY delete_status;
Reports reconciling deletion batches by concurrent request use the REQUEST_ID and PROGRAM_ID columns, while component-level investigations join COMPONENT_ITEM_ID or ITEM_NUM back to the item master. In all cases the view should be treated as read-only, populated by the BOM deletion concurrent processes rather than by direct DML.
-
Lookup Type: BOM_DELETE_STATUS_TYPE
12.2.2
product: BOM - Bills of Material , meaning: BOM DELETE STATUS TYPE ,
-
Lookup Type: BOM_DELETE_STATUS_TYPE
12.1.1
product: BOM - Bills of Material , meaning: BOM DELETE STATUS TYPE ,
-
VIEW: APPS.BOM_DELETE_SUB_ENTITIES_V
12.2.2
-
VIEW: APPS.BOM_DELETE_SUB_ENTITIES_V
12.1.1
-
VIEW: APPS.BOM_DELETE_ENTITIES_V
12.2.2
-
VIEW: APPS.BOM_DELETE_ENTITIES_V
12.1.1
-
View: BOM_DELETE_SUB_ENTITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_DELETE_SUB_ENTITIES_V, object_name:BOM_DELETE_SUB_ENTITIES_V, status:VALID, product: BOM - Bills of Material , description: Component and operations to be deleted , implementation_dba_data: APPS.BOM_DELETE_SUB_ENTITIES_V ,
-
View: BOM_DELETE_ENTITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_DELETE_ENTITIES_V, object_name:BOM_DELETE_ENTITIES_V, status:VALID, product: BOM - Bills of Material , description: Deleted entities in BOM and INV , implementation_dba_data: APPS.BOM_DELETE_ENTITIES_V ,
-
View: BOM_DELETE_SUB_ENTITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_DELETE_SUB_ENTITIES_V, object_name:BOM_DELETE_SUB_ENTITIES_V, status:VALID, product: BOM - Bills of Material , description: Component and operations to be deleted , implementation_dba_data: APPS.BOM_DELETE_SUB_ENTITIES_V ,
-
View: BOM_DELETE_ENTITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_DELETE_ENTITIES_V, object_name:BOM_DELETE_ENTITIES_V, status:VALID, product: BOM - Bills of Material , description: Deleted entities in BOM and INV , implementation_dba_data: APPS.BOM_DELETE_ENTITIES_V ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2