Search Results mtl_org_assign_v
Overview
MTL_ORG_ASSIGN_V is a view owned by the APPS schema in Oracle E-Business Suite Release 12.1.1 and 12.2.2. It is documented under the Inventory (INV) product module with a description marker of "10SC ONLY," indicating that the object is intended for a restricted or specialized deployment context rather than general-purpose use across all implementations. The view exposes inventory organization assignment information by joining organization parameters, organization definitions, item master records, and unit-of-measure translations.
The view's role is to present, in a single flattened result set, the relationship between an inventory organization and the items it can hold, along with financial accounts and several item-level attribute flags. It is commonly surfaced in reporting and integration scenarios where consumers need a consolidated list of organization/item combinations together with the EAM_ENABLED_FLAG indicator that signals whether Enterprise Asset Management functionality is active for an organization. Because the view carries a DISTINCT keyword and a UNION ALL construct, it produces one row per qualifying organization/item pairing in the item-aware branch, plus a synthetic row per organization where no item assignment exists.
Underlying Base Objects
The documented base objects referenced by MTL_ORG_ASSIGN_V are: HR_GENERAL (package), HR_ORGANIZATION_UNITS (view), HR_SECURITY (package), INVIDIT3 (package), MTL_PARAMETERS (synonym), MTL_SYSTEM_ITEMS_B (synonym), and MTL_UNITS_OF_MEASURE_TL (synonym). The view text also draws on INVIDIT3.GET_INV_ITEM_ID, a package function used in the second branch of the UNION ALL to supply a fallback item identifier.
- MTL_PARAMETERS supplies organization-level attributes including ORGANIZATION_CODE, SALES_ACCOUNT, COST_OF_SALES_ACCOUNT, EXPENSE_ACCOUNT, ENCUMBRANCE_ACCOUNT, MASTER_ORGANIZATION_ID, and EAM_ENABLED_FLAG.
- HR_ORGANIZATION_UNITS supplies the organization NAME and enforces the effective-dating filter NVL(DATE_TO, SYSDATE+1) > SYSDATE.
- MTL_SYSTEM_ITEMS_B supplies item-level data including INVENTORY_ITEM_ID, PRIMARY_UOM_CODE, SECONDARY_UOM_CODE, tracking and dual-unit-of-measure attributes.
- MTL_UNITS_OF_MEASURE_TL supplies the translated unit-of-measure names, filtered by USERENV('LANG').
- INVIDIT3 provides the fallback item ID for organizations lacking a matching item row.
- HR_GENERAL and HR_SECURITY are referenced as supporting packages, typically involved in organizational security and session context.
Key Columns
- ORGANIZATION_ID / ORGANIZATION_CODE / ORGANIZATION_NAME — Identify the inventory organization.
- INVENTORY_ITEM_ID — The item identifier, or the INVIDIT3 fallback value.
- PRIMARY_UNIT_OF_MEASURE / PRIMARY_UNIT_OF_MEASURE_TL — UOM code and translated description.
- SALES_ACCOUNT, COST_OF_SALES_ACCOUNT, EXPENSE_ACCOUNT, ENCUMBRANCE_ACCOUNT — Organization-level accounting flexfield references.
- ASSIGNED_FLAG — Hard-coded 'Y' in the item branch and 'N' in the non-item branch.
- MASTER_ORGANIZATION_ID — The master organization for the given organization.
- EAM_ENABLED_FLAG — Sourced from MTL_PARAMETERS; indicates whether EAM is enabled.
- SECONDARY_UOM_CODE, TRACKING_QUANTITY_IND, SECONDARY_DEFAULT_IND, ONT_PRICING_QTY_SOURCE, DUAL_UOM_DEVIATION_HIGH, DUAL_UOM_DEVIATION_LOW — Dual-unit-of-measure and pricing quantity attributes.
Common Use Cases and Queries
A frequent use case is identifying organizations where EAM is enabled, which is directly relevant to the searched term eam_enabled_flag.
SELECT ORGANIZATION_ID, ORGANIZATION_CODE, EAM_ENABLED_FLAG FROM APPS.MTL_ORG_ASSIGN_V WHERE EAM_ENABLED_FLAG = 'Y';
Another scenario lists assigned items per organization with their EAM status:
SELECT ORGANIZATION_CODE, INVENTORY_ITEM_ID, ASSIGNED_FLAG, EAM_ENABLED_FLAG FROM APPS.MTL_ORG_ASSIGN_V WHERE ASSIGNED_FLAG = 'Y' ORDER BY ORGANIZATION_CODE;
The view also supports account validation and UOM reporting extracts, joining MASTER_ORGANIZATION_ID or account columns to downstream financial or item-master processes.
-
View: MTL_ORG_ASSIGN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ORG_ASSIGN_V, object_name:MTL_ORG_ASSIGN_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ORG_ASSIGN_V ,
-
View: MTL_ORG_ASSIGN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ORG_ASSIGN_V, object_name:MTL_ORG_ASSIGN_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ORG_ASSIGN_V ,
-
PACKAGE: APPS.INVIDIT3
12.2.2
owner:APPS, object_type:PACKAGE, object_name:INVIDIT3, status:VALID,
-
PACKAGE: APPS.INVIDIT3
12.1.1
owner:APPS, object_type:PACKAGE, object_name:INVIDIT3, status:VALID,
-
VIEW: APPS.MTL_ORG_ASSIGN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ORG_ASSIGN_V, object_name:MTL_ORG_ASSIGN_V, status:VALID,
-
VIEW: APPS.MTL_ORG_ASSIGN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ORG_ASSIGN_V, object_name:MTL_ORG_ASSIGN_V, status:VALID,
-
SYNONYM: APPS.MTL_UNITS_OF_MEASURE_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_UNITS_OF_MEASURE_TL, status:VALID,
-
SYNONYM: APPS.MTL_UNITS_OF_MEASURE_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_UNITS_OF_MEASURE_TL, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS_B, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS_B, status:VALID,
-
VIEW: APPS.HR_ORGANIZATION_UNITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ORGANIZATION_UNITS, object_name:HR_ORGANIZATION_UNITS, status:VALID,
-
VIEW: APPS.HR_ORGANIZATION_UNITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ORGANIZATION_UNITS, object_name:HR_ORGANIZATION_UNITS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.2.2
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.2.2
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,