Search Results end_effectivity_date
Overview
APPS.BOMBV_FLOW_ROUTING_PROCESSES is a read-only Oracle EBS view that exposes flow manufacturing routing process (operation) information for assemblies configured as flow routings. In the context of Oracle E-Business Suite 12.1.1 and 12.2.2, the view serves as a reporting and integration surface over the routing definition data maintained in Oracle Bills of Material and Oracle Flow Manufacturing. Its columns carry business-facing names (for example SEQUENCE_NUMBER, START_EFFECTIVE_DATE, END_EFFECTIVITY_DATE, OPERATION_YIELD) that map directly to underlying BOM operation sequence attributes, making the view convenient for extracts, custom reports, and interface programs that need routing process details without joining the base tables manually.
The view is defined WITH READ ONLY, so it is intended strictly for query access. The trailing predicate on OP.ORGANIZATION_ID combined with the "SEC:" prefix indicates that the view is subject to Oracle's organization-level security (MOAC) filtering, meaning results are restricted to the operating units and inventory organizations the querying user is authorized to access.
Underlying Base Objects
The view is defined over five documented base objects, all referenced through APPS synonyms:
- BOM_OPERATIONAL_ROUTINGS (alias OP) — the routing header that identifies the assembly, organization, alternate routing designator, and routing sequence. The view filters on OP.CFM_ROUTING_FLAG = 1 to restrict output to flow (CFM) routings.
- BOM_OPERATION_SEQUENCES (alias PR) — the routing operations or processes. The join uses PR.ROUTING_SEQUENCE_ID = OP.COMMON_ROUTING_SEQUENCE_ID and PR.OPERATION_TYPE = 2, so only flow routing process rows are returned.
- MTL_PARAMETERS (alias PA) — supplies the ORGANIZATION_CODE for the inventory organization.
- HR_ALL_ORGANIZATION_UNITS (alias AL) — supplies the ORGANIZATION_NAME tied to the same ORGANIZATION_ID.
- MTL_SYSTEM_ITEMS_B (alias SY) — the item master, joined on assembly item and organization, used to validate and resolve the routing item.
Because the view joins the routing header, its processes, the organization definition, and the item master, it consolidates data that would otherwise require a multi-table join across BOM and inventory schemas.
Key Columns
Notable columns exposed by the view include:
- SEQUENCE_NUMBER (PR.OPERATION_SEQ_NUM) — the operation sequence within the routing.
- ORGANIZATION_CODE / ORGANIZATION_NAME — the inventory organization's short code and descriptive name.
- ALTERNATE_ROUTING_CODE (OP.ALTERNATE_ROUTING_DESIGNATOR) — the alternate routing identifier.
- START_EFFECTIVE_DATE (PR.EFFECTIVITY_DATE) and END_EFFECTIVITY_DATE (PR.DISABLE_DATE) — the effective date range of the process. The END_EFFECTIVITY_DATE column is the effective end or disable date of the operation, which is the term the user searched for.
- DESCRIPTION (PR.OPERATION_DESCRIPTION) — text describing the process.
- Yield and time columns: OPERATION_YIELD, OPERATION_CUMULATIVE_YIELD, REVERSE_CUMULATIVE_YIELD, CALCULATED_LABOR_TIME, CALCULATED_MACHINE_TIME, CALCULATED_ELAPSED_TIME, ENTERED_LABOR_TIME, ENTERED_MACHINE_TIME, and USER_ELAPSED_TIME.
- Planning and control columns: MINIMUM_TRANSFER_QUANTITY, OPERATION_LEAD_TIME_PERCENT, NET_PLANNING_PERCENT, plus lookup-derived values for count point type and the backflush, option-dependent, and reference flags.
- Identifiers: ROUTING_SEQUENCE_ID, OPERATION_SEQUENCE_ID, STANDARD_OPERATION_ID, DEPARTMENT_ID, and audit columns UPDATED_ON, UPDATED_BY, CREATED_ON, CREATED_BY.
Common Use Cases and Queries
Typical uses include reporting active flow routing processes for an organization, extracting yield and time standards, and driving downstream interfaces. Because the END_EFFECTIVITY_DATE maps to the operation disable date, a common query filters for currently effective processes:
- Reporting all processes for an assembly within an organization, ordered by SEQUENCE_NUMBER.
- Identifying processes whose END_EFFECTIVITY_DATE is null or in the future (still effective).
- Auditing yield, planning percent, and calculated versus entered time values.
Sample SQL:
SELECT sequence_number, organization_code, alternate_routing_code, description, start_effective_date, end_effectivity_date, operation_yield FROM apps.bombv_flow_routing_processes WHERE organization_code = :org AND (end_effectivity_date IS NULL OR end_effectivity_date > SYSDATE) ORDER BY sequence_number;
Results are automatically constrained by organization security, so callers need only supply the organization and any item or routing filters relevant to their report.
-
VIEW: APPS.BOMBV_FLOW_ROUTING_PROCESSES
12.2.2
-
VIEW: APPS.BOMFV_FLOW_ROUTING_PROCESSES
12.2.2
-
VIEW: APPS.BOMBV_OPERATION_NETWORKS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_OPERATION_NETWORKS, object_name:BOMBV_OPERATION_NETWORKS, status:VALID,
-
VIEW: APPS.BOMFV_OPERATION_NETWORKS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_OPERATION_NETWORKS, object_name:BOMFV_OPERATION_NETWORKS, status:VALID,
-
VIEW: APPS.BOMBV_MFG_OPERATIONS
12.1.1
-
VIEW: APPS.BOMBV_MFG_OPERATIONS
12.2.2
-
VIEW: APPS.BOMBV_OPERATION_NETWORKS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_OPERATION_NETWORKS, object_name:BOMBV_OPERATION_NETWORKS, status:VALID,
-
VIEW: APPS.BOMFV_OPERATION_NETWORKS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_OPERATION_NETWORKS, object_name:BOMFV_OPERATION_NETWORKS, status:VALID,
-
VIEW: APPS.BOMFV_MFG_OPERATIONS
12.1.1
-
VIEW: APPS.BOMBV_FLOW_ROUTING_PROCESSES
12.1.1
-
VIEW: APPS.BOMFV_MFG_OPERATIONS
12.2.2
-
VIEW: APPS.BOMFV_FLOW_RTG_LINE_OPERATIONS
12.2.2
-
VIEW: APPS.BOMFV_FLOW_RTG_LINE_OPERATIONS
12.1.1
-
VIEW: APPS.BOMFV_FLOW_ROUTING_PROCESSES
12.1.1
-
View: BOMBV_MFG_OPERATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_MFG_OPERATIONS, object_name:BOMBV_MFG_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMBV_MFG_OPERATIONS ,
-
View: BOMFV_FLOW_RTG_LINE_OPERATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_FLOW_RTG_LINE_OPERATIONS, object_name:BOMFV_FLOW_RTG_LINE_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMFV_FLOW_RTG_LINE_OPERATIONS ,
-
View: BOMFV_MFG_OPERATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_MFG_OPERATIONS, object_name:BOMFV_MFG_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMFV_MFG_OPERATIONS ,
-
View: BOMBV_FLOW_ROUTING_PROCESSES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_FLOW_ROUTING_PROCESSES, object_name:BOMBV_FLOW_ROUTING_PROCESSES, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMBV_FLOW_ROUTING_PROCESSES ,
-
View: BOMBV_MFG_OPERATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_MFG_OPERATIONS, object_name:BOMBV_MFG_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMBV_MFG_OPERATIONS ,
-
View: BOMFV_FLOW_ROUTING_PROCESSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_FLOW_ROUTING_PROCESSES, object_name:BOMFV_FLOW_ROUTING_PROCESSES, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMFV_FLOW_ROUTING_PROCESSES ,
-
View: BOMFV_FLOW_RTG_LINE_OPERATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_FLOW_RTG_LINE_OPERATIONS, object_name:BOMFV_FLOW_RTG_LINE_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMFV_FLOW_RTG_LINE_OPERATIONS ,
-
View: BOMFV_MFG_OPERATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_MFG_OPERATIONS, object_name:BOMFV_MFG_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMFV_MFG_OPERATIONS ,
-
View: BOMBV_FLOW_ROUTING_PROCESSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_FLOW_ROUTING_PROCESSES, object_name:BOMBV_FLOW_ROUTING_PROCESSES, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMBV_FLOW_ROUTING_PROCESSES ,
-
View: BOMFV_FLOW_ROUTING_PROCESSES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_FLOW_ROUTING_PROCESSES, object_name:BOMFV_FLOW_ROUTING_PROCESSES, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMFV_FLOW_ROUTING_PROCESSES ,
-
View: BOMFV_OPERATION_NETWORKS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_OPERATION_NETWORKS, object_name:BOMFV_OPERATION_NETWORKS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMFV_OPERATION_NETWORKS ,
-
View: BOMBV_OPERATION_NETWORKS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_OPERATION_NETWORKS, object_name:BOMBV_OPERATION_NETWORKS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMBV_OPERATION_NETWORKS ,
-
View: BOMFV_OPERATION_NETWORKS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_OPERATION_NETWORKS, object_name:BOMFV_OPERATION_NETWORKS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMFV_OPERATION_NETWORKS ,
-
View: BOMBV_OPERATION_NETWORKS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_OPERATION_NETWORKS, object_name:BOMBV_OPERATION_NETWORKS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMBV_OPERATION_NETWORKS ,
-
eTRM - BOM Tables and Views
12.2.2
description: Table to map wip transactions to their corresponding event types. ,
-
eTRM - BOM Tables and Views
12.1.1
description: Table to map wip transactions to their corresponding event types. ,