Search Results mtl_parameters
Overview
MTL_PARAMETERS is the Inventory organization parameters table owned by the INV schema in Oracle E-Business Suite. It stores the inventory control options, defaults, and account assignments that govern how Inventory, Cost Management, and adjacent modules behave for each inventory organization. In Oracle EBS 12.1.1 and 12.2.2, every inventory organization defined in HR_ALL_ORGANIZATION_UNITS carries exactly one row in MTL_PARAMETERS, making this table the authoritative configuration record for that organization. Business flows such as material transactions, cost processing, inter-org transfers, receiving, WMS, and lot/serial control all read their defaults and validation rules from this table before executing.
The table is documented with 198 columns and a single-column primary key, MTL_PARAMETERS_PK, on ORGANIZATION_ID. It carries extensive outbound foreign keys to GL_CODE_COMBINATIONS for accounting account assignments, and it is referenced by a very large set of INV, CST, BOM, MRP, WMS, and EAM tables via ORGANIZATION_ID. From a data-vault modeling perspective, the metadata characterizes MTL_PARAMETERS as hub-leaning: ORGANIZATION_ID behaves as a durable business key, and the remaining columns are largely descriptive configuration attributes.
Key Information Stored
The primary key, ORGANIZATION_ID, identifies the inventory organization and is also the documented unique business-key candidate via MTL_PARAMETERS_U1. Other columns in the table are descriptive configuration attributes rather than surrogate identifiers. The most consequential columns include:
- ORGANIZATION_CODE – user-facing code for the inventory organization.
- PRIMARY_COST_METHOD – the costing method (Standard, Average, FIFO, LIFO) applied to the organization.
- COST_ORGANIZATION_ID / MASTER_ORGANIZATION_ID – self-referencing foreign keys that point to the cost organization and the master item organization.
- COST_CUTOFF_DATE – the date used for cutover between costing methods.
- NEGATIVE_INV_RECEIPT_CODE – controls whether negative on-hand balances are permitted.
- STOCK_LOCATOR_CONTROL_CODE – determines whether locators are required, optional, or not used.
- DEFAULT_ATP_RULE_ID / DEFAULT_PICKING_RULE_ID – foreign keys to MTL_ATP_RULES and MTL_PICKING_RULES that set the default rules for availability and picking.
- MATERIAL_ACCOUNT, MATERIAL_OVERHEAD_ACCOUNT, RESOURCE_ACCOUNT, OVERHEAD_ACCOUNT, AP_ACCRUAL_ACCOUNT, ENCUMBRANCE_ACCOUNT, COST_OF_SALES_ACCOUNT, INTRANSIT_INV_ACCOUNT – foreign keys to GL_CODE_COMBINATIONS that drive inventory accounting entries.
- CALENDAR_CODE / CALENDAR_EXCEPTION_SET_ID – foreign keys to BOM_CALENDARS and BOM_EXCEPTION_SETS that define the manufacturing and inventory calendars.
- LOT_NUMBER_UNIQUENESS, LOT_NUMBER_GENERATION, LOT_NUMBER_LENGTH, SERIAL_NUMBER_TYPE – rules for lot and serial number generation and uniqueness.
- WMS_ENABLED_FLAG, CROSSDOCK_FLAG, CARTONIZATION_FLAG – enablement flags for Warehouse Management System functionality.
- PROJECT_REFERENCE_ENABLED, PM_COST_COLLECTION_ENABLED, PROJECT_CONTROL_LEVEL – flags governing Project Manufacturing integration.
Common Use Cases and Queries
Consultants and developers query MTL_PARAMETERS to retrieve organization-level accounting defaults, confirm costing method configuration, troubleshoot transaction errors caused by missing defaults, and drive reporting on how inventory organizations are configured. Typical retrievals include organization setup reports, cross-module reconciliation of account assignments, and integration extracts where downstream systems need the inventory organization's defaults.
A representative query retrieves core configuration for a single organization:
SELECT organization_id, organization_code, primary_cost_method, cost_organization_id, master_organization_id, negative_inv_receipt_code FROM mtl_parameters WHERE organization_id = :p_org_id;
To reconcile inventory account assignments against the chart of accounts for an organization:
SELECT mp.organization_id, mp.material_account, mp.material_overhead_account, mp.resource_account, mp.overhead_account FROM mtl_parameters mp WHERE mp.organization_id = :p_org_id;
To identify all inventory organizations using a given costing method for reporting or migration analysis:
SELECT organization_id, organization_code FROM mtl_parameters WHERE primary_cost_method = 'AVERAGE';
Reporting scenarios include organization parameter audits, WMS and lot/serial control compliance checks, and costing method validation during data conversions or upgrades between 12.1.1 and 12.2.2.
Related Objects
MTL_PARAMETERS is referenced by a large number of objects across INV and adjacent modules. The most significant relationships include:
- HR_ALL_ORGANIZATION_UNITS – MTL_PARAMETERS.ORGANIZATION_ID references this table, anchoring the inventory organization to the shared organization model.
- GL_CODE_COMBINATIONS – referenced many times for account assignments such as MATERIAL_ACCOUNT, AP_ACCRUAL_ACCOUNT, ENCUMBRANCE_ACCOUNT, COST_OF_SALES_ACCOUNT, and INTRANSIT_INV_ACCOUNT.
- MTL_SECONDARY_INVENTORIES – SOURCE_SUBINVENTORY references this table, and MTL_SECONDARY_INVENTORIES.ORGANIZATION_ID and SOURCE_ORGANIZATION_ID reference MTL_PARAMETERS.
- MTL_SYSTEM_ITEMS_B – ORGANIZATION_ID, SOURCE_ORGANIZATION_ID, and DEFAULT_SHIPPING_ORG all reference MTL_PARAMETERS, tying item masters to inventory organizations.
- MTL_ATP_RULES / MTL_PICKING_RULES – referenced by DEFAULT_ATP_RULE_ID and DEFAULT_PICKING_RULE_ID.
- BOM_CALENDARS / BOM_EXCEPTION_SETS – referenced by CALENDAR_CODE and CALENDAR_EXCEPTION_SET_ID.
- CST_COST_GROUPS – referenced by DEFAULT_COST_GROUP_ID; CST_COST_GROUP_ASSIGNMENTS.ORGANIZATION_ID also references MTL_PARAMETERS.
- MTL_INTERORG_PARAMETERS – FROM_ORGANIZATION_ID and TO_ORGANIZATION_ID both reference MTL_PARAMETERS and drive inter-org transfer configuration.
- MRP_PARAMETERS – ORGANIZATION_ID references MTL_PARAMETERS, linking planning configuration to inventory configuration.
- WMS_STRATEGIES_B, WMS_RULES_B, WMS_DISPATCHED_TASKS – ORGANIZATION_ID references MTL_PARAMETERS, reflecting WMS dependency on inventory organization setup.
The breadth of these references confirms MTL_PARAMETERS as a hub-style configuration object: the majority of INV and cost-related child tables resolve their organization context through it.
-
Table: MTL_PARAMETERS
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_PARAMETERS, object_name:MTL_PARAMETERS, status:VALID, product: INV - Inventory , description: Inventory control options and defaults , implementation_dba_data: INV.MTL_PARAMETERS ,
-
Table: MTL_PARAMETERS
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_PARAMETERS, object_name:MTL_PARAMETERS, status:VALID, product: INV - Inventory , description: Inventory control options and defaults , implementation_dba_data: INV.MTL_PARAMETERS ,
-
Lookup Type: MTL_PARAMETERS
12.2.2
product: INV - Inventory , meaning: MTL PARAMETERS ,
-
Lookup Type: MTL_PARAMETERS
12.1.1
product: INV - Inventory , meaning: MTL PARAMETERS ,
-
View: INVFV_INVENTORY_SUPPLIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_INVENTORY_SUPPLIES, object_name:INVFV_INVENTORY_SUPPLIES, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_INVENTORY_SUPPLIES ,
-
View: INVFV_INVENTORY_SUPPLIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_INVENTORY_SUPPLIES, object_name:INVFV_INVENTORY_SUPPLIES, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_INVENTORY_SUPPLIES ,
-
Table: MTL_SUPPLY
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_SUPPLY, object_name:MTL_SUPPLY, status:VALID, product: INV - Inventory , description: Stores incoming supply information , implementation_dba_data: INV.MTL_SUPPLY ,
-
Table: MTL_SUPPLY
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_SUPPLY, object_name:MTL_SUPPLY, status:VALID, product: INV - Inventory , description: Stores incoming supply information , implementation_dba_data: INV.MTL_SUPPLY ,
-
View: INVFV_KANBAN_CARD_ACTIVITIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_KANBAN_CARD_ACTIVITIES, object_name:INVFV_KANBAN_CARD_ACTIVITIES, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_KANBAN_CARD_ACTIVITIES ,
-
View: INVFV_KANBAN_CARD_ACTIVITIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_KANBAN_CARD_ACTIVITIES, object_name:INVFV_KANBAN_CARD_ACTIVITIES, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_KANBAN_CARD_ACTIVITIES ,
-
View: MTL_ONHAND_QTY_COST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_QTY_COST_V, object_name:MTL_ONHAND_QTY_COST_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_ONHAND_QTY_COST_V ,
-
View: MTL_ONHAND_QTY_COST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_QTY_COST_V, object_name:MTL_ONHAND_QTY_COST_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_ONHAND_QTY_COST_V ,
-
Table: MTL_REPLENISH_LINES
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_REPLENISH_LINES, object_name:MTL_REPLENISH_LINES, status:VALID, product: INV - Inventory , description: Replenishment line information , implementation_dba_data: INV.MTL_REPLENISH_LINES ,
-
Table: MTL_INTERORG_SHIP_METHODS
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_INTERORG_SHIP_METHODS, object_name:MTL_INTERORG_SHIP_METHODS, status:VALID, product: INV - Inventory , description: Relationships between shipping networks and shipment methods , implementation_dba_data: INV.MTL_INTERORG_SHIP_METHODS ,
-
Table: MTL_REPLENISH_LINES
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_REPLENISH_LINES, object_name:MTL_REPLENISH_LINES, status:VALID, product: INV - Inventory , description: Replenishment line information , implementation_dba_data: INV.MTL_REPLENISH_LINES ,
-
Table: MTL_INTERORG_SHIP_METHODS
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_INTERORG_SHIP_METHODS, object_name:MTL_INTERORG_SHIP_METHODS, status:VALID, product: INV - Inventory , description: Relationships between shipping networks and shipment methods , implementation_dba_data: INV.MTL_INTERORG_SHIP_METHODS ,
-
View: MTL_PHY_ADJ_COST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_PHY_ADJ_COST_V, object_name:MTL_PHY_ADJ_COST_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_PHY_ADJ_COST_V ,
-
Table: MTL_INTERORG_PARAMETERS
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_INTERORG_PARAMETERS, object_name:MTL_INTERORG_PARAMETERS, status:VALID, product: INV - Inventory , description: Inter-organization relationships , implementation_dba_data: INV.MTL_INTERORG_PARAMETERS ,
-
View: MTL_PHY_ADJ_COST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_PHY_ADJ_COST_V, object_name:MTL_PHY_ADJ_COST_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_PHY_ADJ_COST_V ,
-
Table: MTL_INTERORG_PARAMETERS
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_INTERORG_PARAMETERS, object_name:MTL_INTERORG_PARAMETERS, status:VALID, product: INV - Inventory , description: Inter-organization relationships , implementation_dba_data: INV.MTL_INTERORG_PARAMETERS ,
-
Table: MTL_RESERVATIONS_INTERFACE
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_RESERVATIONS_INTERFACE, object_name:MTL_RESERVATIONS_INTERFACE, status:VALID, product: INV - Inventory , description: Reservations Interface , implementation_dba_data: INV.MTL_RESERVATIONS_INTERFACE ,
-
Table: MTL_RESERVATIONS_INTERFACE
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_RESERVATIONS_INTERFACE, object_name:MTL_RESERVATIONS_INTERFACE, status:VALID, product: INV - Inventory , description: Reservations Interface , implementation_dba_data: INV.MTL_RESERVATIONS_INTERFACE ,
-
View: MTL_TRANSACTION_FLOW_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TRANSACTION_FLOW_LINES_V, object_name:MTL_TRANSACTION_FLOW_LINES_V, status:VALID, product: INV - Inventory , description: MTL_TRANSACTION_FLOW_LINES_V is a view for Intercompany transaction flow lines of type shipping and procuring flow for each header. , implementation_dba_data: APPS.MTL_TRANSACTION_FLOW_LINES_V ,
-
View: MTL_TRANSACTION_FLOW_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TRANSACTION_FLOW_LINES_V, object_name:MTL_TRANSACTION_FLOW_LINES_V, status:VALID, product: INV - Inventory , description: MTL_TRANSACTION_FLOW_LINES_V is a view for Intercompany transaction flow lines of type shipping and procuring flow for each header. , implementation_dba_data: APPS.MTL_TRANSACTION_FLOW_LINES_V ,
-
View: MTL_PHY_INV_TAGS_COST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_PHY_INV_TAGS_COST_V, object_name:MTL_PHY_INV_TAGS_COST_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_PHY_INV_TAGS_COST_V ,
-
View: MTL_PHY_INV_TAGS_COST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_PHY_INV_TAGS_COST_V, object_name:MTL_PHY_INV_TAGS_COST_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_PHY_INV_TAGS_COST_V ,
-
View: INVFV_KANBAN_LOCATION_ITEMS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_KANBAN_LOCATION_ITEMS, object_name:INVFV_KANBAN_LOCATION_ITEMS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_KANBAN_LOCATION_ITEMS ,
-
View: INVFV_KANBAN_LOCATION_ITEMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_KANBAN_LOCATION_ITEMS, object_name:INVFV_KANBAN_LOCATION_ITEMS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_KANBAN_LOCATION_ITEMS ,
-
Table: MTL_TXN_REQUEST_LINES
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_TXN_REQUEST_LINES, object_name:MTL_TXN_REQUEST_LINES, status:VALID, product: INV - Inventory , description: Move order lines table , implementation_dba_data: INV.MTL_TXN_REQUEST_LINES ,
-
Table: MTL_TXN_REQUEST_LINES
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_TXN_REQUEST_LINES, object_name:MTL_TXN_REQUEST_LINES, status:VALID, product: INV - Inventory , description: Move order lines table , implementation_dba_data: INV.MTL_TXN_REQUEST_LINES ,
-
View: MTL_MATERIAL_STATUS_HIST_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MATERIAL_STATUS_HIST_ERV, object_name:MTL_MATERIAL_STATUS_HIST_ERV, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_MATERIAL_STATUS_HIST_ERV ,
-
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 ,
-
View: MTL_MATERIAL_STATUS_HIST_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MATERIAL_STATUS_HIST_ERV, object_name:MTL_MATERIAL_STATUS_HIST_ERV, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_MATERIAL_STATUS_HIST_ERV ,
-
View: MTL_BIS_INV_VALUE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_BIS_INV_VALUE_V, object_name:MTL_BIS_INV_VALUE_V, status:VALID, product: INV - Inventory , description: Stores Onhand/Intransit quantity and value for Inventory items at organization and intransit owning organizations respectively. , implementation_dba_data: APPS.MTL_BIS_INV_VALUE_V ,
-
View: INVFV_KANBAN_CARDS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_KANBAN_CARDS, object_name:INVFV_KANBAN_CARDS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_KANBAN_CARDS ,
-
View: INVFV_KANBAN_CARDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_KANBAN_CARDS, object_name:INVFV_KANBAN_CARDS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_KANBAN_CARDS ,
-
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: INVFV_INTERORG_LEAD_TIMES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_INTERORG_LEAD_TIMES, object_name:INVFV_INTERORG_LEAD_TIMES, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_INTERORG_LEAD_TIMES ,
-
View: INVFV_INTERORG_LEAD_TIMES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_INTERORG_LEAD_TIMES, object_name:INVFV_INTERORG_LEAD_TIMES, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_INTERORG_LEAD_TIMES ,
-
View: MTL_BIS_INV_VALUE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_BIS_INV_VALUE_V, object_name:MTL_BIS_INV_VALUE_V, status:VALID, product: INV - Inventory , description: Stores Onhand/Intransit quantity and value for Inventory items at organization and intransit owning organizations respectively. , implementation_dba_data: APPS.MTL_BIS_INV_VALUE_V ,
-
View: INVFV_INVENTORY_ORGANIZATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_INVENTORY_ORGANIZATIONS, object_name:INVFV_INVENTORY_ORGANIZATIONS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_INVENTORY_ORGANIZATIONS ,
-
View: INVFV_INVENTORY_ORGANIZATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_INVENTORY_ORGANIZATIONS, object_name:INVFV_INVENTORY_ORGANIZATIONS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_INVENTORY_ORGANIZATIONS ,
-
View: MTL_EAM_NETWORK_ASSETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_NETWORK_ASSETS_V, object_name:MTL_EAM_NETWORK_ASSETS_V, status:VALID, product: INV - Inventory , description: View for EAM Asset Routes , implementation_dba_data: APPS.MTL_EAM_NETWORK_ASSETS_V ,
-
View: MTL_EAM_NETWORK_ASSETS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_NETWORK_ASSETS_V, object_name:MTL_EAM_NETWORK_ASSETS_V, status:VALID, product: INV - Inventory , description: View for EAM Asset Routes , implementation_dba_data: APPS.MTL_EAM_NETWORK_ASSETS_V ,
-
View: MTL_ITEM_LOT_UOM_CONV_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_LOT_UOM_CONV_ERV, object_name:MTL_ITEM_LOT_UOM_CONV_ERV, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_ITEM_LOT_UOM_CONV_ERV ,
-
View: MTL_ITEM_LOT_UOM_CONV_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_LOT_UOM_CONV_ERV, object_name:MTL_ITEM_LOT_UOM_CONV_ERV, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_ITEM_LOT_UOM_CONV_ERV ,
-
View: INVFV_INTERORG_SHIPPING_INFO
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_INTERORG_SHIPPING_INFO, object_name:INVFV_INTERORG_SHIPPING_INFO, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_INTERORG_SHIPPING_INFO ,
-
View: INVFV_INTERORG_SHIPPING_INFO
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_INTERORG_SHIPPING_INFO, object_name:INVFV_INTERORG_SHIPPING_INFO, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_INTERORG_SHIPPING_INFO ,
-
View: INVFV_INVENTORY_DEMANDS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_INVENTORY_DEMANDS, object_name:INVFV_INVENTORY_DEMANDS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_INVENTORY_DEMANDS ,
-
View: MTL_SHIPPING_NETWORK_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SHIPPING_NETWORK_VIEW, object_name:MTL_SHIPPING_NETWORK_VIEW, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_SHIPPING_NETWORK_VIEW ,