Search Results default_shipping_org
Overview
APPS.OE_AK_INVENTORY_ITEMS_V is an Oracle E-Business Suite (EBS) dictionary view that exposes inventory item attributes drawn from the MTL_SYSTEM_ITEMS table. Its name reflects an Oracle Order Management "AK" (Application Kit / extensibility) construct that supplies inventory item master data to Order Management forms, flexfields, and integrations. The view is owned by the APPS schema and is available in both 12.1.1 and 12.2.2. It is not a stored table; it is a query-based view and therefore returns no data of its own — it always reflects the current contents of MTL_SYSTEM_ITEMS.
The view is significant because it applies a filter that restricts rows to the item master organization. It joins the master-organization row of an item to every other organization that holds the same INVENTORY_ITEM_ID. This makes it a convenient source for cross-organization item attributes that are defined only once at the master level but need to be reported or validated at the organization level.
Underlying Base Objects
The documented base objects are MTL_SYSTEM_ITEMS (SYNONYM) and OE_SYS_PARAMETERS (PACKAGE). The view is defined over two aliases of MTL_SYSTEM_ITEMS — alias A and alias B. Alias A is filtered to the item master organization using OE_SYS_PARAMETERS.VALUE('MASTER_ORGANIZATION_ID'), while alias B represents organization-level item rows. The two aliases are joined on INVENTORY_ITEM_ID, so each output row links a master-level item definition to an organization-specific item record.
Because OE_SYS_PARAMETERS is a package-backed entity, the value returned by VALUE('MASTER_ORGANIZATION_ID') is resolved at runtime. This means the filter is dynamic with respect to profile and site configuration, and the view's result set depends on that parameter being correctly populated. MTL_SYSTEM_ITEMS is one of the largest transactional and master data tables in EBS, and this view selects a narrow column list from it.
Key Columns
- INVENTORY_ITEM_ID — Surrogate key of the item; the join key between the two MTL_SYSTEM_ITEMS aliases.
- ORGANIZATION_ID — Taken from alias B; identifies the organization-level item record.
- DEFAULT_SHIPPING_ORG — The shipping organization defaulted for the item. This is the column most relevant to users searching on "default_shipping_org," since it is exposed directly from the master item row (alias A).
- INVOICING_RULE_ID / ACCOUNTING_RULE_ID / PAYMENT_TERMS_ID — Financial defaulting attributes used in order and invoice processing.
- SHIP_MODEL_COMPLETE_FLAG, BUILD_IN_WIP_FLAG, BOM_ITEM_TYPE, REPLENISH_TO_ORDER_FLAG, PICK_COMPONENTS_FLAG — Manufacturing, Bills of Material, and shipping-model flags.
- PRIMARY_UOM_CODE — Primary unit of measure for the item.
- OVER_SHIPMENT_TOLERANCE, UNDER_SHIPMENT_TOLERANCE, OVER_RETURN_TOLERANCE, UNDER_RETURN_TOLERANCE — Order Management quantity tolerances.
- DEFAULT_SO_SOURCE_TYPE, CHARGE_PERIODICITY_CODE — Taken from alias B; order-source and service charge attributes.
- SERVICE_DURATION_PERIOD_CODE, SERVICE_DURATION, COVERAGE_SCHEDULE_ID — Service item attributes, with COVERAGE_SCHEDULE_ID aliased as TEMPLATE.
Common Use Cases and Queries
The view is typically used to retrieve order-relevant item defaults across organizations without querying MTL_SYSTEM_ITEMS directly with the master-organization filter. Common scenarios include validating shipping organization defaults, checking shipment and return tolerances, and confirming service item setup.
To locate items by their default shipping organization:
SELECT INVENTORY_ITEM_ID, ORGANIZATION_ID, DEFAULT_SHIPPING_ORG FROM APPS.OE_AK_INVENTORY_ITEMS_V WHERE DEFAULT_SHIPPING_ORG IS NOT NULL;SELECT INVENTORY_ITEM_ID, ORGANIZATION_ID, OVER_SHIPMENT_TOLERANCE, UNDER_SHIPMENT_TOLERANCE FROM APPS.OE_AK_INVENTORY_ITEMS_V WHERE INVENTORY_ITEM_ID = :item_id;SELECT DISTINCT DEFAULT_SHIPPING_ORG FROM APPS.OE_AK_INVENTORY_ITEMS_V ORDER BY 1;
Because OE_SYS_PARAMETERS resolves the master organization at runtime, administrators should confirm the MASTER_ORGANIZATION_ID parameter is set before relying on the view for reporting. Performance is governed by the indexing on MTL_SYSTEM_ITEMS for INVENTORY_ITEM_ID and ORGANIZATION_ID.
-
VIEW: APPS.OE_AK_INVENTORY_ITEMS_V
12.2.2
-
View: OE_AK_INVENTORY_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_INVENTORY_ITEMS_V, object_name:OE_AK_INVENTORY_ITEMS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_INVENTORY_ITEMS_V ,
-
View: OE_AK_INVENTORY_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_INVENTORY_ITEMS_V, object_name:OE_AK_INVENTORY_ITEMS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_INVENTORY_ITEMS_V ,
-
VIEW: APPS.OE_AK_INVENTORY_ITEMS_V
12.1.1
-
VIEW: APPS.OE_AK_INVENTORY_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_INVENTORY_ITEMS_V, object_name:OE_AK_INVENTORY_ITEMS_V, status:VALID,
-
VIEW: APPS.OE_AK_INVENTORY_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_INVENTORY_ITEMS_V, object_name:OE_AK_INVENTORY_ITEMS_V, status:VALID,
-
VIEW: APPS.INVFV_ITEMS
12.1.1
-
VIEW: APPS.INVFV_ITEMS
12.2.2
-
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 ,
-
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 ,
-
TYPE: APPS.INV_EBI_ITEM_ORDER_OBJ
12.2.2
owner:APPS, object_type:TYPE, object_name:INV_EBI_ITEM_ORDER_OBJ, status:VALID,
-
TYPE: APPS.INV_EBI_ITEM_ORDER_OBJ
12.1.1
owner:APPS, object_type:TYPE, object_name:INV_EBI_ITEM_ORDER_OBJ, status:VALID,
-
VIEW: INV.INV_ITEM_TEMP#
12.2.2
-
View: OE_MTL_SYSTEM_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_MTL_SYSTEM_ITEMS_V, object_name:OE_MTL_SYSTEM_ITEMS_V, status:VALID, product: ONT - Order Management , description: No longer used , implementation_dba_data: APPS.OE_MTL_SYSTEM_ITEMS_V ,
-
VIEW: APPS.OE_MTL_SYSTEM_ITEMS_V
12.1.1
-
VIEW: APPS.OE_MTL_SYSTEM_ITEMS_V
12.2.2
-
View: XNC_PRODUCTS_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: This view is to display products , implementation_dba_data: Not implemented in this database ,
-
View: OE_MTL_SYSTEM_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_MTL_SYSTEM_ITEMS_V, object_name:OE_MTL_SYSTEM_ITEMS_V, status:VALID, product: ONT - Order Management , description: No longer used , implementation_dba_data: APPS.OE_MTL_SYSTEM_ITEMS_V ,
-
View: XNC_PRODUCTS_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: This view is to display products , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.INVBV_ITEMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_ITEMS, object_name:INVBV_ITEMS, status:VALID,
-
VIEW: APPS.INVBV_ORGANIZATION_ITEMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_ORGANIZATION_ITEMS, object_name:INVBV_ORGANIZATION_ITEMS, status:VALID,
-
VIEW: INV.MTL_SYSTEM_ITEMS_B#
12.2.2
-
VIEW: APPS.INVBV_ORGANIZATION_ITEMS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_ORGANIZATION_ITEMS, object_name:INVBV_ORGANIZATION_ITEMS, status:VALID,
-
VIEW: APPS.INVBV_ITEMS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_ITEMS, object_name:INVBV_ITEMS, status:VALID,
-
VIEW: APPS.MTL_ITEM_FLEXFIELDS
12.1.1
-
VIEW: APPS.MTL_ITEM_FLEXFIELDS
12.2.2
-
VIEW: EGO.EGO_MTL_SY_ITEMS_CHG_B#
12.2.2
-
VIEW: INV.MTL_SYSTEM_ITEMS_INTERFACE#
12.2.2
-
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.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.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.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: APPS.MTL_SYSTEM_ITEMS_B_KFV
12.2.2
-
VIEW: APPS.MTL_SYSTEM_ITEMS_B1_KFV
12.2.2
-
VIEW: APPS.MTL_SYSTEM_ITEMS_B_KFV
12.1.1
-
View: INVBV_ORGANIZATION_ITEMS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_ORGANIZATION_ITEMS, object_name:INVBV_ORGANIZATION_ITEMS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVBV_ORGANIZATION_ITEMS ,
-
APPS.INVPVDR2 SQL Statements
12.2.2
-
View: INVBV_ITEMS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_ITEMS, object_name:INVBV_ITEMS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVBV_ITEMS ,
-
View: INVBV_ITEMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_ITEMS, object_name:INVBV_ITEMS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVBV_ITEMS ,
-
View: INVBV_ORGANIZATION_ITEMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_ORGANIZATION_ITEMS, object_name:INVBV_ORGANIZATION_ITEMS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVBV_ORGANIZATION_ITEMS ,
-
VIEW: APPS.OE_MTL_SYSTEM_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_MTL_SYSTEM_ITEMS_V, object_name:OE_MTL_SYSTEM_ITEMS_V, status:VALID,
-
APPS.INVPVDR2 SQL Statements
12.1.1
-
VIEW: APPS.CN_MTL_SYSTEM_ITEM_CATS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:CN_MTL_SYSTEM_ITEM_CATS_V, status:VALID,
-
VIEW: APPS.MTL_SYSTEM_ITEMS_ER1_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_ER1_V, object_name:MTL_SYSTEM_ITEMS_ER1_V, status:VALID,
-
VIEW: APPS.CN_MTL_SYSTEM_ITEM_CATS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:CN_MTL_SYSTEM_ITEM_CATS_V, status:VALID,
-
VIEW: APPS.MTL_SYSTEM_ITEMS_ER1_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_ER1_V, object_name:MTL_SYSTEM_ITEMS_ER1_V, status:VALID,
-
APPS.INVPVDR3 SQL Statements
12.1.1
-
TABLE: INV.INV_ITEM_TEMP
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.INV_ITEM_TEMP, object_name:INV_ITEM_TEMP, status:VALID,
-
VIEW: APPS.OE_MTL_SYSTEM_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_MTL_SYSTEM_ITEMS_V, object_name:OE_MTL_SYSTEM_ITEMS_V, status:VALID,
-
VIEW: INV.INV_ITEM_TEMP#
12.2.2
owner:INV, object_type:VIEW, object_name:INV_ITEM_TEMP#, status:VALID,