Search Results comp_bill_seq_id




Overview

BOM_PLM_EXPLOSION_TEMP is a read-only view owned by the APPS schema in Oracle E-Business Suite (validated across 12.1.1 and 12.2.2). Within the Bills of Material module, it functions as the PLM-facing projection of the bill explosion staging area. Where BOM_EXPLOSION_TEMP holds the raw, session-scoped rows produced when an engineer performs an indented or summarized explosion, BOM_PLM_EXPLOSION_TEMP re-presents those rows in a shape suitable for Product Lifecycle Management consumers — engineering workbench screens, change-order impact analysis, and external integration feeds.

The view does not transform the data; it exposes the complete column set of the underlying temporary object, including the multi-level hierarchy identifiers (TOP_BILL_SEQUENCE_ID, BILL_SEQUENCE_ID, COMPONENT_SEQUENCE_ID), the planning identifiers (PLAN_LEVEL, SORT_ORDER, PARENT_SORT_ORDER), revision/effectivity structures, and the descriptive flexfield segment columns ATTRIBUTE1 through ATTRIBUTE15. Because it is defined only over a single synonym, it is a simple column-projection view rather than a join-based reporting view.

Underlying Base Objects

The view is defined exclusively over the synonym BOM_EXPLOSION_TEMP, which resolves within APPS to the temporary table populated by the bill explosion program (the row source that also feeds the standard indented bill report). The relationship is one-to-one and column-preserving: every row the explosion process writes to the temporary structure is visible through this view with identical cardinality and ordering semantics.

As a temporary, session-private staging object, BOM_EXPLOSION_TEMP is only meaningful immediately after an explosion call populates it for the current session. Consequently, BOM_PLM_EXPLOSION_TEMP inherits that lifecycle: it is a transient reporting surface, not a persistent warehouse source.

Key Columns

Common Use Cases and Queries

Typical use is within the same session that invoked the explosion, generally for validating an alternate bill, reporting structure, or exporting to PLM. A representative query isolating the top alternate designator follows:

SELECT TOP_BILL_SEQUENCE_ID, BILL_SEQUENCE_ID, TOP_ALTERNATE_DESIGNATOR, PLAN_LEVEL, COMPONENT_ITEM_ID, COMPONENT_QUANTITY, EXTENDED_QUANTITY, REVISION_LABEL FROM APPS.BOM_PLM_EXPLOSION_TEMP ORDER BY TOP_BILL_SEQUENCE_ID, PLAN_LEVEL, SORT_ORDER;

Because rows are transient, queries should be executed immediately after the explosion program populates the temporary object within the same database session.