Search Results alt_bom_desig
Overview
APPS.BOM_COPY_EXPLOSIONS_V is a reporting and integration view in Oracle E-Business Suite (12.1.1 and 12.2.2) that exposes the results of a bill of material explosion in a flattened, query-friendly form. It presents the contents of BOM_EXPLOSIONS_ALL — the transient table populated by the BOM exploder — joined to item information and augmented with a set of PL/SQL function calls from the BOM_EXPLODER_PUB and BOM_GLOBALS packages. Its purpose is to let callers read a completed explosion (component hierarchy, quantities, effectivity, revisions, and change context) without invoking the exploder API directly. The view is owned by APPS and is typically consumed by concurrent programs, custom reports, and downstream interfaces that copy or replicate exploded structures.
The user search term alt_bom_desig corresponds precisely to a derived column in this view: BOM_GLOBALS.GET_ALTERNATE(be.BILL_SEQUENCE_ID) ALT_BOM_DESIG. The alternate BOM designator identifies which alternate bill of material (for example, a specific alternate routing or engineering alternate) the explosion row belongs to, which is essential when multiple alternates exist for the same assembly.
Underlying Base Objects
BOM_EXPLOSIONS_ALL(SYNONYM) — the primary source of the exploded rows, aliasedBEin the view text. Supplied the sequence IDs, quantities, flags, revisions, effectivity and PK columns.BOM_EXPLODER_PUB(PACKAGE) — provides the scalar functions used to derive revision, revision label, revision ID, and component access flags on a per-row basis.BOM_GLOBALS(PACKAGE) — suppliesGET_ALTERNATE, which resolves the alternate BOM designator from the bill sequence ID.MTL_ITEM_REVISIONS_B(SYNONYM) — revision definitions for items.MTL_SYSTEM_ITEMS_B_KFV(VIEW) — the key flexfield view of items, joined asMSIBKto returnCONCATENATED_SEGMENTSfor the component item.
Key Columns
TOP_BILL_SEQUENCE_ID,BILL_SEQUENCE_ID,COMPONENT_SEQUENCE_ID— the explosion hierarchy identifiers.ORGANIZATION_ID,TOP_ITEM_ID,COMPONENT_ITEM_ID,ASSEMBLY_ITEM_ID— inventory organization and item references; note theNVL(..., -1)on component item.COMPONENT_QUANTITY,PLAN_LEVEL,SORT_ORDER,PARENT_SORT_ORDER— quantity and ordering within the explosion.EXPLOSION_TYPE,BOM_ITEM_TYPE,PARENT_BOM_ITEM_TYPE,STRUCTURE_TYPE_ID— structural classification.PICK_COMPONENTS_FLAG,REPLENISH_TO_ORDER_FLAG,LOOP_FLAG,ENG_ITEM_FLAG— behavior and exception flags.EFFECTIVITY_DATE,DISABLE_DATE,IMPLEMENTATION_DATE,EFFECTIVITY_CONTROL— date-driven effectivity.CONCATENATED_SEGMENTS— flexfield concatenation of the component item.ALT_BOM_DESIG— the alternate BOM designator, viaBOM_GLOBALS.GET_ALTERNATE.REVISION_CODE,REVISION_ID,REVISION_LABEL— resolved component revisions.CHANGE_NOTICE,CHANGE_ID— engineering change context.
Common Use Cases and Queries
The view is used to report exploded structures, audit alternates, and validate revision/change data after a copy explosion.
- List explosion rows for an organization and top item, showing the alternate designator:
SELECT top_item_id, component_item_id, concatenated_segments,
component_quantity, alt_bom_desig, revision_code
FROM apps.bom_copy_explosions_v
WHERE organization_id = :org_id
AND top_item_id = :top_item_id
ORDER BY plan_level, sort_order;
- Filter by alternate BOM designator to isolate one alternate:
SELECT bill_sequence_id, component_item_id, alt_bom_desig FROM apps.bom_copy_explosions_v WHERE alt_bom_desig = :alt_desig;
- Review revision and change context for affected explosion rows:
SELECT component_sequence_id, revision_code, revision_label,
change_notice, effectivity_date, disable_date
FROM apps.bom_copy_explosions_v
WHERE organization_id = :org_id
AND effectivity_date >= :from_date;
-
VIEW: APPS.BOM_COPY_EXPLOSIONS_V
12.2.2
-
VIEW: APPS.BOM_COPY_EXPLOSIONS_V
12.1.1
-
View: MRP_I2_ROUTING_V
12.2.2
product: MRP - Master Scheduling/MRP , description: A Rhythm view supporting information regarding the routings used by Rhythm , implementation_dba_data: Not implemented in this database ,
-
View: BOM_COPY_EXPLOSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_COPY_EXPLOSIONS_V, object_name:BOM_COPY_EXPLOSIONS_V, status:VALID, product: BOM - Bills of Material , description: View for Multi level copy structure , implementation_dba_data: APPS.BOM_COPY_EXPLOSIONS_V ,
-
View: BOM_COPY_EXPLOSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_COPY_EXPLOSIONS_V, object_name:BOM_COPY_EXPLOSIONS_V, status:VALID, product: BOM - Bills of Material , description: View for Multi level copy structure , implementation_dba_data: APPS.BOM_COPY_EXPLOSIONS_V ,
-
View: MRP_I2_ROUTING_V
12.1.1
product: MRP - Master Scheduling/MRP , description: A Rhythm view supporting information regarding the routings used by Rhythm , implementation_dba_data: Not implemented in this database ,
-
View: MRP_I2_OP_RESOURCE_V
12.1.1
product: MRP - Master Scheduling/MRP , description: A Rhythm view supporting information regarding the operation resources on routing operations , implementation_dba_data: Not implemented in this database ,
-
View: MRP_I2_OP_RESOURCE_V
12.2.2
product: MRP - Master Scheduling/MRP , description: A Rhythm view supporting information regarding the operation resources on routing operations , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.BOM_EXPLOSIONS_ALL_V
12.2.2
-
VIEW: APPS.BOM_EXPLOSIONS_ALL_V
12.1.1
-
View: BOM_EXPLOSIONS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_EXPLOSIONS_ALL_V, object_name:BOM_EXPLOSIONS_ALL_V, status:VALID, product: BOM - Bills of Material , description: View over BOM_EXPLOSIONS_ALL Table , implementation_dba_data: APPS.BOM_EXPLOSIONS_ALL_V ,
-
APPS.WSM_JOBCOPIES_PUB SQL Statements
12.1.1
-
View: MRP_I2_BOM_V
12.2.2
product: MRP - Master Scheduling/MRP , description: A Rhythm view supporting information regarding bill of materials , implementation_dba_data: Not implemented in this database ,
-
View: MRP_I2_BOM_V
12.1.1
product: MRP - Master Scheduling/MRP , description: A Rhythm view supporting information regarding bill of materials , implementation_dba_data: Not implemented in this database ,
-
APPS.WSM_JOBCOPIES_PUB SQL Statements
12.2.2
-
View: BOM_EXPLOSIONS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_EXPLOSIONS_ALL_V, object_name:BOM_EXPLOSIONS_ALL_V, status:VALID, product: BOM - Bills of Material , description: View over BOM_EXPLOSIONS_ALL Table , implementation_dba_data: APPS.BOM_EXPLOSIONS_ALL_V ,
-
VIEW: APPS.BOM_EXPLOSIONS_V
12.1.1
-
VIEW: APPS.BOM_EXPLOSIONS_V
12.2.2
-
APPS.WSM_JOBCOPIES_PVT dependencies on WSMPUTIL
12.1.1
-
APPS.WSM_JOBCOPIES_PVT dependencies on WSMPUTIL
12.2.2
-
PACKAGE BODY: APPS.WSM_JOBCOPIES_PUB
12.2.2
-
PACKAGE BODY: APPS.WSM_JOBCOPIES_PUB
12.1.1
-
APPS.WSM_JOBCOPIES_PUB dependencies on WSMPUTIL
12.2.2
-
APPS.WSM_JOBCOPIES_PUB dependencies on WSMPUTIL
12.1.1
-
APPS.WSM_JOBCOPIES_PVT SQL Statements
12.1.1
-
APPS.WSM_JOBCOPIES_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.WSM_JOBCOPIES_PVT
12.1.1
-
PACKAGE BODY: APPS.WSM_JOBCOPIES_PVT
12.2.2
-
APPS.WSMPUTIL dependencies on FND_MESSAGE
12.2.2
-
APPS.WSMPUTIL dependencies on FND_MESSAGE
12.1.1
-
PACKAGE BODY: APPS.WSMPUTIL
12.2.2
-
PACKAGE BODY: APPS.WSMPUTIL
12.1.1
-
PACKAGE BODY: APPS.WSMPVLDT
12.1.1