Search Results mfg_lookups
Overview
MFG_LOOKUPS is an Oracle E-Business Suite 12.1.1 / 12.2.2 view owned by the APPS schema and classified under the Inventory (INV) product family. It is a filtered projection of the FND_LOOKUPS_VALUES table, the core lookup repository used throughout EBS by the Oracle Application Object Library (FND). The view exposes a constrained subset of lookup rows that pertain specifically to manufacturing and inventory lookup types, identified by VIEW_APPLICATION_ID = 700. This filtering isolates the manufacturing application's lookup codes from the thousands of lookup types shared across the entire E-Business Suite, providing a narrower and more performance-friendly data set for inventory and manufacturing reports, concurrent programs, and interface extracts.
Because it resides in APPS and is defined as a view rather than a synonym, developers can query it directly without needing to know the underlying FND physical model. Its columns mirror those of FND_LOOKUP_VALUES, so existing SQL written against the base table can generally be redirected to MFG_LOOKUPS with minimal modification.
Underlying Base Objects
The view is defined over FND_LOOKUP_VALUES, accessed through a synonym in the APPS schema. The defining SQL joins no other tables and applies three filter predicates: LANGUAGE = USERENV('LANG'), ensuring the session language drives the returned MEANING and DESCRIPTION text; VIEW_APPLICATION_ID = 700, restricting rows to manufacturing lookups; and SECURITY_GROUP_ID = 0, excluding rows owned by non-zero security groups so that only globally shared lookups are exposed.
The LOOKUP_CODE column is deliberately converted with TO_NUMBER, which means the view expects numeric lookup codes. This is an important constraint: any lookup type in application 700 that contains alphanumeric codes will raise an ORA-01722 invalid number error when the view is queried. Developers must therefore confirm that the target lookup types use purely numeric codes before relying on this view, or query FND_LOOKUP_VALUES directly when alphanumeric codes are present.
Key Columns
- LOOKUP_TYPE — The lookup category, identifying which manufacturing list (for example a transaction reason or status list) the row belongs to.
- LOOKUP_CODE — The stored code value, cast to a numeric type. This is the value typically held in transactional tables.
- MEANING — The user-facing display text translated into the session language.
- DESCRIPTION — A longer explanation of the lookup code, also language-dependent.
- ENABLED_FLAG — Indicates whether the lookup is currently active (Y) or disabled (N). Reports should filter on Y for current-validity lookups.
- START_DATE_ACTIVE / END_DATE_ACTIVE — The effective date window; a row is valid within this range. END_DATE_ACTIVE may be null for open-ended entries.
- CREATED_BY, CREATION_DATE, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — Standard EBS audit columns used for change tracking and auditing.
Common Use Cases and Queries
The view is most often used to decode numeric codes stored on inventory transactions into readable meanings, to populate LOVs in custom forms or OAF pages, and to validate values in interface staging tables before import. A typical query joining a transaction table to obtain the display meaning is:
SELECT t.transaction_id, m.meaning
FROM mtl_material_transactions t, mfg_lookups m
WHERE m.lookup_type = 'MTL_TRANSACTION_TYPE'
AND m.lookup_code = t.transaction_type_id
AND m.enabled_flag = 'Y';
A second frequent pattern retrieves all active values for a given lookup type, commonly used to drive a selection list:
SELECT lookup_code, meaning
FROM mfg_lookups
WHERE lookup_type = 'MTL_DISPOSITION_TYPE'
AND enabled_flag = 'Y'
AND SYSDATE BETWEEN NVL(start_date_active, SYSDATE)
AND NVL(end_date_active, SYSDATE)
ORDER BY meaning;
When performance is a concern on large lookup types, filtering on ENABLED_FLAG and the active date range reduces the row set returned. If a code proves to be alphanumeric, the TO_NUMBER conversion will fail and the equivalent query must be issued against FND_LOOKUP_VALUES instead, applying the same VIEW_APPLICATION_ID and SECURITY_GROUP_ID predicates to preserve the manufacturing scope.
-
View: MFG_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MFG_LOOKUPS, object_name:MFG_LOOKUPS, status:VALID, product: INV - Inventory , description: MFG_LOOKUPS is a view of selected columns from the table FND_LOOKUP_VALUES. , implementation_dba_data: APPS.MFG_LOOKUPS ,
-
View: MFG_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MFG_LOOKUPS, object_name:MFG_LOOKUPS, status:VALID, product: INV - Inventory , description: MFG_LOOKUPS is a view of selected columns from the table FND_LOOKUP_VALUES. , implementation_dba_data: APPS.MFG_LOOKUPS ,
-
VIEW: APPS.MSC_SIM_ITEM_ATTRIBUTES_V
12.1.1
-
Concurrent Program: MSCATPDP
12.2.2
execution_filename: msc_cl_pull.launch_monitor , product: MSC - Advanced Supply Chain Planning , user_name: MSCPDP , description: Planning Data Pull , argument_method: Standard , enabled: Yes , execution_method: PL/SQL Stored Procedure ,
-
VIEW: APPS.MSC_SIM_ITEM_ATTRIBUTES_V
12.2.2
-
VIEW: APPS.MSC_ITEM_ATTRIBUTES_V
12.1.1
-
Concurrent Program: MSCATPDP
12.1.1
execution_filename: msc_cl_pull.launch_monitor , product: MSC - Advanced Supply Chain Planning , user_name: MSCPDP , description: Planning Data Pull , argument_method: Standard , enabled: Yes , execution_method: PL/SQL Stored Procedure ,
-
VIEW: APPS.MTL_SYSTEM_ITEMS_FKEYS_V
12.1.1
-
VIEW: APPS.MTL_SYSTEM_ITEMS_FKEYS_V
12.2.2
-
VIEW: APPS.MRP_PLANNING_EXCEPTION_SETS_V
12.1.1
-
VIEW: APPS.MSC_COLL_ITEM_ATTRIBUTES_V
12.1.1
-
VIEW: APPS.MSC_COLL_ITEM_ATTRIBUTES_V
12.2.2
-
View: MTL_SYSTEM_ITEMS_FKEYS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_FKEYS_V, object_name:MTL_SYSTEM_ITEMS_FKEYS_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_FKEYS_V ,
-
VIEW: APPS.MRP_PLANNING_EXCEPTION_SETS_V
12.2.2
-
Concurrent Program: MSDDEMPST
12.2.2
execution_filename: msd_dem_cto.populate_staging_table , product: MSD - Demand Planning , user_name: MSDDEMPST , description: Executable for Populate Staging Table , argument_method: Standard , enabled: Yes , execution_method: PL/SQL Stored Procedure ,
-
VIEW: APPS.MTL_CYCLE_COUNT_HEADERS_V
12.2.2
-
VIEW: APPS.QA_PLAN_CHARS_V
12.2.2
-
VIEW: APPS.QA_PLAN_CHARS_V
12.1.1
-
VIEW: APPS.MTL_CYCLE_COUNT_HEADERS_V
12.1.1
-
View: MTL_SYSTEM_ITEMS_FKEYS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_FKEYS_V, object_name:MTL_SYSTEM_ITEMS_FKEYS_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_FKEYS_V ,
-
VIEW: APPS.EAM_CFR_WORK_ORDER_V
12.1.1
-
VIEW: APPS.WMS_OP_PLAN_DETAILS_V
12.1.1
-
VIEW: APPS.WMS_OP_PLAN_DETAILS_V
12.2.2
-
VIEW: APPS.QABV_COLPLNTXN
12.2.2
-
VIEW: APPS.QAFV_COLPLNTXN
12.2.2
-
VIEW: APPS.MST_DROP_TRAILER_VIO_V
12.1.1
-
VIEW: APPS.QAFV_COLPLNTXN
12.1.1
-
VIEW: APPS.CST_ROLLUP_DATE_VIEW
12.1.1
-
VIEW: APPS.CST_ROLLUP_DATE_VIEW
12.2.2
-
VIEW: APPS.EAM_CFR_WORK_ORDER_V
12.2.2
-
VIEW: APPS.QABV_COLPLNTXN
12.1.1
-
VIEW: APPS.QA_PLAN_TRANSACTIONS_V
12.1.1
-
VIEW: APPS.AHL_RT_OPER_RESOURCES_V
12.1.1
-
VIEW: APPS.MRP_SYSTEM_ITEMS_SC_V
12.1.1
-
VIEW: APPS.WIP_MOVE_TXN_INTERFACE_V
12.1.1
-
VIEW: APPS.QA_PLAN_TRANSACTIONS_V
12.2.2
-
VIEW: APPS.EAM_FORECAST_WORK_ORDER_V
12.1.1
-
Concurrent Program: MSDDEMARD
12.2.2
execution_filename: msd_dem_collect_history_data.run_load , product: MSD - Demand Planning , user_name: MSDDEMARD , description: Launch EP LOAD , argument_method: Standard , enabled: Yes , execution_method: PL/SQL Stored Procedure ,
-
VIEW: APPS.MRP_SYSTEM_ITEMS_SC_V
12.2.2
-
VIEW: APPS.AHL_RT_OPER_RESOURCES_V
12.2.2
-
VIEW: APPS.EAM_OUTSTANDING_WORK_ORDERS_V
12.2.2
-
APPS.INV_INVISMMX_XMLP_PKG SQL Statements
12.2.2
-
APPS.INV_INVISMMX_XMLP_PKG SQL Statements
12.1.1
-
VIEW: APPS.EAM_FORECAST_WORK_ORDER_V
12.2.2
-
VIEW: APPS.EAM_CFR_RESOURCES_V
12.2.2
-
VIEW: APPS.EAM_CFR_RESOURCES_V
12.1.1
-
APPS.BOM_CSTRDJVA_XMLP_PKG SQL Statements
12.1.1
-
View: EAM_CFR_WORK_ORDER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_CFR_WORK_ORDER_V, object_name:EAM_CFR_WORK_ORDER_V, status:VALID, product: EAM - Enterprise Asset Management , description: This view displays details of all maintenance work orders.This view is used for ERES at the time of work order completion in the XGM. , implementation_dba_data: APPS.EAM_CFR_WORK_ORDER_V ,
-
VIEW: APPS.MTL_ABC_COMPILE_HEADERS_V
12.2.2
-
VIEW: APPS.MRP_SNAPSHOT_TASKS_V
12.1.1