Search Results minimum_transfer_quantity
Overview
BOMFV_STANDARD_RTG_OPERATIONS is an APPS-owned, read-only view in the Oracle E-Business Suite Bills of Material (BOM) module. It presents standard routing operations defined at the organization level, combining operation attributes with department and organization descriptive information. The view is documented as "Retrofitted," indicating it was ported forward to support Oracle EBS 12.1.1 and 12.2.2 functionality while preserving a stable interface for reporting and integration consumers.
A defining characteristic is the filter condition OP.LINE_ID IS NULL, which restricts output to header-level standard operations rather than operation-line assignments. A second predicate, '_SEC:OP.ORGANIZATION_ID' IS NOT NULL, enforces operating-unit (organization) security, so a query returns only operations for organizations to which the executing user has access. The view is declared WITH READ ONLY, preventing DML through the view.
The view is significant for users searching on minimum_transfer_quantity: that attribute is exposed directly as the MINIMUM_TRANSFER_QUANTITY column, allowing operational minimums to be reported alongside operation code, department, and organization context.
Underlying Base Objects
The view is defined over four referenced objects, all accessed through APPS synonyms:
- BOM_STANDARD_OPERATIONS (alias OP) — the primary driver, supplying operation code, description, minimum transfer quantity, count point, backflush and option-dependent flags, standard operation ID, department and organization identifiers, and audit columns.
- BOM_DEPARTMENTS (alias DE) — joined on DEPARTMENT_ID to supply the department code.
- MTL_PARAMETERS (alias PA) — joined on ORGANIZATION_ID to supply the organization code.
- HR_ALL_ORGANIZATION_UNITS (alias AL) — joined on ORGANIZATION_ID to supply the organization name.
All joins are inner joins on ORGANIZATION_ID and DEPARTMENT_ID, so an operation appears only when matching organization and department records exist.
Key Columns
- OPERATION_CODE, DESCRIPTION — Identifier and description of the standard operation.
- MINIMUM_TRANSFER_QUANTITY — The minimum quantity that may be transferred between operations; the attribute at the center of user searches on this view.
- ORGANIZATION_CODE, ORGANIZATION_NAME, ORGANIZATION_ID — Organizational context from MTL_PARAMETERS and HR_ALL_ORGANIZATION_UNITS.
- DEPARTMENT_CODE, DEPARTMENT_ID — Owning department of the operation.
- STANDARD_OPERATION_ID — Primary key reference to the underlying standard operation.
- COUNT_POINT_TYPE, BACKFLUSH_FLAG, OPTION_DEPENDENT_FLAG — Exposed through lookup-translation aliases (
_LA:) resolving MFG_LOOKUPS meanings for BOM_COUNT_POINT_TYPE and SYS_YES_NO. - UPDATED_ON, UPDATED_BY, CREATED_ON, CREATED_BY — Audit columns mapped from LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, and CREATED_BY.
Common Use Cases and Queries
Typical uses include routing operation reports, organization-level operation comparisons, and integrations requiring minimum transfer quantity values by department.
Listing operations for a restricted set of organizations:
SELECT operation_code, organization_code, department_code, minimum_transfer_quantity FROM apps.bomfv_standard_rtg_operations WHERE organization_code = :org;
Identifying operations with a defined transfer minimum:
SELECT operation_code, description, minimum_transfer_quantity FROM apps.bomfv_standard_rtg_operations WHERE minimum_transfer_quantity IS NOT NULL ORDER BY organization_code, operation_code;
Joining to BOM_OPERATION_SEQUENCES or routing data via STANDARD_OPERATION_ID supports routing analysis and audit reporting on recent changes using UPDATED_ON.
-
View: BOMFV_STANDARD_RTG_OPERATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_STANDARD_RTG_OPERATIONS, object_name:BOMFV_STANDARD_RTG_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMFV_STANDARD_RTG_OPERATIONS ,
-
View: BOMBV_STD_FLOW_RTG_OPERATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_STD_FLOW_RTG_OPERATIONS, object_name:BOMBV_STD_FLOW_RTG_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMBV_STD_FLOW_RTG_OPERATIONS ,
-
View: BOMBV_MFG_STANDARD_OPERATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_MFG_STANDARD_OPERATIONS, object_name:BOMBV_MFG_STANDARD_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMBV_MFG_STANDARD_OPERATIONS ,
-
View: BOMBV_STANDARD_RTG_OPERATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_STANDARD_RTG_OPERATIONS, object_name:BOMBV_STANDARD_RTG_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMBV_STANDARD_RTG_OPERATIONS ,
-
View: BOMBV_STANDARD_RTG_OPERATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_STANDARD_RTG_OPERATIONS, object_name:BOMBV_STANDARD_RTG_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMBV_STANDARD_RTG_OPERATIONS ,
-
View: BOMFV_STD_FLOW_RTG_OPERATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_STD_FLOW_RTG_OPERATIONS, object_name:BOMFV_STD_FLOW_RTG_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMFV_STD_FLOW_RTG_OPERATIONS ,
-
View: BOMBV_STD_FLOW_RTG_OPERATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_STD_FLOW_RTG_OPERATIONS, object_name:BOMBV_STD_FLOW_RTG_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMBV_STD_FLOW_RTG_OPERATIONS ,
-
View: BOMFV_MFG_STANDARD_OPERATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_MFG_STANDARD_OPERATIONS, object_name:BOMFV_MFG_STANDARD_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMFV_MFG_STANDARD_OPERATIONS ,
-
View: BOMFV_STANDARD_RTG_OPERATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_STANDARD_RTG_OPERATIONS, object_name:BOMFV_STANDARD_RTG_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMFV_STANDARD_RTG_OPERATIONS ,
-
View: BOMBV_MFG_STANDARD_OPERATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_MFG_STANDARD_OPERATIONS, object_name:BOMBV_MFG_STANDARD_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMBV_MFG_STANDARD_OPERATIONS ,
-
View: BOMFV_MFG_STANDARD_OPERATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_MFG_STANDARD_OPERATIONS, object_name:BOMFV_MFG_STANDARD_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMFV_MFG_STANDARD_OPERATIONS ,
-
View: BOMFV_STD_FLOW_RTG_OPERATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_STD_FLOW_RTG_OPERATIONS, object_name:BOMFV_STD_FLOW_RTG_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMFV_STD_FLOW_RTG_OPERATIONS ,
-
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: BOMBV_WORK_ORDER_RTG_OPRATNS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_WORK_ORDER_RTG_OPRATNS, object_name:BOMBV_WORK_ORDER_RTG_OPRATNS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMBV_WORK_ORDER_RTG_OPRATNS ,
-
View: BOMFV_FLOW_ROUTING_EVENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_FLOW_ROUTING_EVENTS, object_name:BOMFV_FLOW_ROUTING_EVENTS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMFV_FLOW_ROUTING_EVENTS ,
-
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_WORK_ORDER_RTG_OPRATNS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_WORK_ORDER_RTG_OPRATNS, object_name:BOMBV_WORK_ORDER_RTG_OPRATNS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMBV_WORK_ORDER_RTG_OPRATNS ,
-
View: BOMFV_FLOW_ROUTING_EVENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_FLOW_ROUTING_EVENTS, object_name:BOMFV_FLOW_ROUTING_EVENTS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMFV_FLOW_ROUTING_EVENTS ,
-
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_WORK_ORDER_RTG_OPRATNS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_WORK_ORDER_RTG_OPRATNS, object_name:BOMFV_WORK_ORDER_RTG_OPRATNS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMFV_WORK_ORDER_RTG_OPRATNS ,
-
View: BOMBV_FLOW_RTG_LINE_OPERATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_FLOW_RTG_LINE_OPERATIONS, object_name:BOMBV_FLOW_RTG_LINE_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMBV_FLOW_RTG_LINE_OPERATIONS ,
-
View: BOMFV_WORK_ORDER_RTG_OPRATNS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_WORK_ORDER_RTG_OPRATNS, object_name:BOMFV_WORK_ORDER_RTG_OPRATNS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMFV_WORK_ORDER_RTG_OPRATNS ,
-
View: BOMBV_FLOW_RTG_LINE_OPERATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_FLOW_RTG_LINE_OPERATIONS, object_name:BOMBV_FLOW_RTG_LINE_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMBV_FLOW_RTG_LINE_OPERATIONS ,
-
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: BOMBV_FLOW_ROUTING_EVENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_FLOW_ROUTING_EVENTS, object_name:BOMBV_FLOW_ROUTING_EVENTS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMBV_FLOW_ROUTING_EVENTS ,
-
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_FLOW_ROUTING_EVENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_FLOW_ROUTING_EVENTS, object_name:BOMBV_FLOW_ROUTING_EVENTS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMBV_FLOW_ROUTING_EVENTS ,
-
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: BOM_STANDARD_OPERATIONS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_STANDARD_OPERATIONS_ALL_V, object_name:BOM_STANDARD_OPERATIONS_ALL_V, status:VALID, product: BOM - Bills of Material , description: Standard operations - all records , implementation_dba_data: APPS.BOM_STANDARD_OPERATIONS_ALL_V ,
-
View: BOM_STANDARD_OPERATIONS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_STANDARD_OPERATIONS_ALL_V, object_name:BOM_STANDARD_OPERATIONS_ALL_V, status:VALID, product: BOM - Bills of Material , description: Standard operations - all records , implementation_dba_data: APPS.BOM_STANDARD_OPERATIONS_ALL_V ,
-
View: BOM_STANDARD_OPERATIONS_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_STANDARD_OPERATIONS_VAL_V, object_name:BOM_STANDARD_OPERATIONS_VAL_V, status:VALID, product: BOM - Bills of Material , description: Valid standard operations , implementation_dba_data: APPS.BOM_STANDARD_OPERATIONS_VAL_V ,
-
View: BOM_STANDARD_OPERATIONS_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_STANDARD_OPERATIONS_VAL_V, object_name:BOM_STANDARD_OPERATIONS_VAL_V, status:VALID, product: BOM - Bills of Material , description: Valid standard operations , implementation_dba_data: APPS.BOM_STANDARD_OPERATIONS_VAL_V ,
-
View: BOM_STANDARD_OPERATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_STANDARD_OPERATIONS_V, object_name:BOM_STANDARD_OPERATIONS_V, status:VALID, product: BOM - Bills of Material , description: Standard operations , implementation_dba_data: APPS.BOM_STANDARD_OPERATIONS_V ,
-
View: BOM_STANDARD_OPERATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_STANDARD_OPERATIONS_V, object_name:BOM_STANDARD_OPERATIONS_V, status:VALID, product: BOM - Bills of Material , description: Standard operations , implementation_dba_data: APPS.BOM_STANDARD_OPERATIONS_V ,
-
View: BOM_OPERATION_SEQUENCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OPERATION_SEQUENCES_V, object_name:BOM_OPERATION_SEQUENCES_V, status:VALID, product: BOM - Bills of Material , description: Operations , implementation_dba_data: APPS.BOM_OPERATION_SEQUENCES_V ,
-
View: BOM_OPERATION_SEQUENCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OPERATION_SEQUENCES_V, object_name:BOM_OPERATION_SEQUENCES_V, status:VALID, product: BOM - Bills of Material , description: Operations , implementation_dba_data: APPS.BOM_OPERATION_SEQUENCES_V ,