Search Results min_minmax_quantity
Overview
The MTL_ITEM_SUB_INVENTORIES_ALL_V view is an Oracle EBS Inventory (INV) dictionary object owned by the APPS schema. In the ETRM metadata for 12.2.2 the object is classified as a VIEW with VALID status, and its documented description is the terse notation "10SC ONLY," indicating that the view is intended for a restricted set of supply-chain flows rather than for general-purpose subinventory reporting. The view consolidates item-level subinventory definitions from MTL_ITEM_SUB_INVENTORIES and enriches each row with descriptions and status information drawn from the item master, the secondary inventory definition, and material status tables. It also flattens organization identifiers into human-readable organization codes and names, which makes it convenient for reporting and for integrations that must resolve an item's sourcing organization without performing additional joins.
Because it exposes SOURCE_TYPE, SOURCE_ORGANIZATION_ID, and SOURCE_SUBINVENTORY, the view is directly relevant to the user search term "source_organization": the underlying SOURCE_ORGANIZATION_ID column is joined outward to HR_ORGANIZATION_UNITS and MTL_PARAMETERS to return the source organization's name and organization code.
Underlying Base Objects
The documented base objects referenced by the view are:
MTL_ITEM_SUB_INVENTORIES(SYNONYM) — the driving table, aliasedS, supplying item, organization, subinventory, planning, and sourcing attributes.MTL_SECONDARY_INVENTORIES(SYNONYM) — aliasedSUB, supplying the subinventory description and status.MTL_SYSTEM_ITEMS(SYNONYM) — aliasedI, supplying the item description.MTL_MATERIAL_STATUSES_VL(VIEW) — aliasedMMS, supplying the material status code.HR_ORGANIZATION_UNITS(VIEW) — aliasedHOU, supplying the source organization name.MTL_PARAMETERS(SYNONYM) — aliasedMP, supplying the source organization code.HR_GENERALandHR_SECURITY(PACKAGEs) — supporting security and organization-access logic invoked through the HR organization views.
The joins to HR_ORGANIZATION_UNITS, MTL_PARAMETERS, and MTL_MATERIAL_STATUSES_VL are all outer joins, so rows whose source organization or material status is not yet defined are still returned. The view is further filtered to subinventories whose SUBNINVENTORY_TYPE is 1 (storage) or null.
Key Columns
INVENTORY_ITEM_ID,ITEM_DESCRIPTION— the item identifier and its description.ORGANIZATION_ID,SECONDARY_INVENTORY,SUB_DESCRIPTION— the owning organization and subinventory, with its description.SOURCE_TYPE,SOURCE_ORGANIZATION_ID,SOURCE_SUBINVENTORY— the replenishment/sourcing definition, including the source organization identifier that resolves toSOURCE_ORGANIZATION.ORGANIZATION_CODE,NAME— the source organization code and organization name derived fromMTL_PARAMETERSandHR_ORGANIZATION_UNITSrespectively.STATUS_ID,STATUS_CODE— the material status assigned to the subinventory.PRIMARY_SUBINVENTORY_FLAG,PICKING_ORDER— the primary subinventory indicator and picking sequence.MIN_MINMAX_QUANTITY,MAX_MINMAX_QUANTITY,FIXED_LOT_MULTIPLE,MINIMUM_ORDER_QUANTITY,MAXIMUM_ORDER_QUANTITY,INVENTORY_PLANNING_CODE— min-max and order-quantity planning attributes.PREPROCESSING_LEAD_TIME,PROCESSING_LEAD_TIME,POSTPROCESSING_LEAD_TIME— lead-time components.ATTRIBUTE_CATEGORYandATTRIBUTE1–ATTRIBUTE15— descriptive flexfield context and segments.
Common Use Cases and Queries
Because the view resolves the source organization to both a code and a name, it is commonly used to report item sourcing setups per subinventory, to audit min-max planning definitions, and to feed downstream integrations that require a readable source organization. A representative query is:
SELECT inventory_item_id, item_description, organization_id, secondary_inventory, source_type, source_organization_id, organization_code, name, source_subinventory FROM mtl_item_sub_inventories_all_v WHERE source_organization_id IS NOT NULL;SELECT organization_id, secondary_inventory, COUNT(*) FROM mtl_item_sub_inventories_all_v GROUP BY organization_id, secondary_inventory;SELECT inventory_item_id, organization_code, source_subinventory, min_minmax_quantity, max_minmax_quantity FROM mtl_item_sub_inventories_all_v WHERE inventory_planning_code = 2 ORDER BY organization_code, inventory_item_id;
Note that the "10SC ONLY" description in the ETRM metadata restricts the applicability of this view to the relevant process configuration; consumers should confirm that their implementation uses the corresponding functionality before depending on the view for general inventory reporting.
-
View: MTL_ITEM_SUB_INVENTORIES_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_SUB_INVENTORIES_ALL_V, object_name:MTL_ITEM_SUB_INVENTORIES_ALL_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ITEM_SUB_INVENTORIES_ALL_V ,
-
View: MTL_ITEM_SUB_INVENTORIES_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_SUB_INVENTORIES_ALL_V, object_name:MTL_ITEM_SUB_INVENTORIES_ALL_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ITEM_SUB_INVENTORIES_ALL_V ,
-
View: MTL_ITEM_FLEXFIELDS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_FLEXFIELDS, object_name:MTL_ITEM_FLEXFIELDS, status:VALID, product: INV - Inventory , description: This view is based on the key flexfield view MTL_SYSTEM_ITEMS_B_KFV. It contains columns with padded and unpadded concatenated segments of an item number. , implementation_dba_data: APPS.MTL_ITEM_FLEXFIELDS ,
-
View: MTL_SYSTEM_ITEMS_B_KFV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_B_KFV, object_name:MTL_SYSTEM_ITEMS_B_KFV, status:VALID, product: INV - Inventory , description: System Items Key Flexfield View , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_B_KFV ,
-
View: MTL_ITEM_FLEXFIELDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_FLEXFIELDS, object_name:MTL_ITEM_FLEXFIELDS, status:VALID, product: INV - Inventory , description: This view is based on the key flexfield view MTL_SYSTEM_ITEMS_B_KFV. It contains columns with padded and unpadded concatenated segments of an item number. , implementation_dba_data: APPS.MTL_ITEM_FLEXFIELDS ,
-
View: MTL_SYSTEM_ITEMS_B_KFV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_B_KFV, object_name:MTL_SYSTEM_ITEMS_B_KFV, status:VALID, product: INV - Inventory , description: System Items Key Flexfield View , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_B_KFV ,
-
View: MTL_SYSTEM_ITEMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_VL, object_name:MTL_SYSTEM_ITEMS_VL, status:VALID, product: INV - Inventory , description: System Items multilingual view with concatenated segments column , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_VL ,
-
View: MTL_CLIENT_ITEMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CLIENT_ITEMS_VL, object_name:MTL_CLIENT_ITEMS_VL, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_CLIENT_ITEMS_VL ,
-
View: MTL_SYSTEM_ITEMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_VL, object_name:MTL_SYSTEM_ITEMS_VL, status:VALID, product: INV - Inventory , description: System Items multilingual view with concatenated segments column , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_VL ,
-
View: MTL_SYSTEM_ITEMS_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_FVL, object_name:MTL_SYSTEM_ITEMS_FVL, status:VALID, product: INV - Inventory , description: Base view for the Define System Items (INVIDITM) form MTL_SYSTEM_ITEMS block. This view is MLS enabled. , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_FVL ,
-
View: MTL_SYSTEM_ITEMS_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_FVL, object_name:MTL_SYSTEM_ITEMS_FVL, status:VALID, product: INV - Inventory , description: Base view for the Define System Items (INVIDITM) form MTL_SYSTEM_ITEMS block. This view is MLS enabled. , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_FVL ,
-
View: INVFV_ITEMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_ITEMS, object_name:INVFV_ITEMS, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.INVFV_ITEMS ,
-
View: INVFV_ITEMS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_ITEMS, object_name:INVFV_ITEMS, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.INVFV_ITEMS ,
-
Lookup Type: INV_ITEM_ATTRIBUTES
12.2.2
product: INV - Inventory , meaning: Item Attributes , description: Item Attributes ,
-
Lookup Type: INV_ITEM_ATTRIBUTES
12.1.1
product: INV - Inventory , meaning: Item Attributes , description: Item Attributes ,