Search Results msc_interorg_ship_methods
Overview
MSC.MSC_INTERORG_SHIP_METHODS is a table owned by the MSC schema (Advanced Supply Chain Planning) that stores the different shipment methods between organization–location pairs together with the attributes that govern their availability and cost. Conceptually, it is a transportation-capacity and shipment-routing reference table used by Advanced Supply Chain Planning to determine how material may move from a source organization/location to a destination organization/location within a plan. Each row ties a shipping method for a specific plan, source organization, source location, destination organization, and destination location, and records capacity, cost, and in-transit timing characteristics.
From a Data Vault modeling perspective, the metadata's heuristic classification for this object is standalone. The primary key is composite and combines many descriptive and identifying attributes, which suggests modeling this object as a link that connects from-organization/from-location, to-organization/to-location, plan, and ship method, with the capacity, cost, and timing columns behaving as a satellite payload. This is offered as a modeling suggestion only; the physical implementation is a single Oracle table with no mined FK dependencies.
Key Information Stored
The table contains 59 documented columns. The most significant are the keys and the shipment-capacity/cost/timing attributes, described below.
- Primary key columns (surrogate/business key):
FROM_ORGANIZATION_ID,SR_INSTANCE_ID,TO_ORGANIZATION_ID,SR_INSTANCE_ID2,PLAN_ID,FROM_LOCATION_ID,TO_LOCATION_ID, andSHIP_METHODtogether form the composite primary keyMSC_INTERORG_SHIP_METHODS_PK. - Business-key candidates (unique indexes):
MSC_INTERORG_SHIP_METHODS_U1extends the PK columns withTO_REGION_IDandFROM_REGION_ID, making each row unique per plan, org/location pair, ship method, and region.MSC_INTERORG_SHIP_METHODS_U2usesPLAN_IDandTRANSACTION_ID, indicating a transaction-scoped uniqueness constraint. - Location descriptions:
FROM_LOCATION_NAME,TO_LOCATION_NAME,FROM_LOCATION_DESCR, andTO_LOCATION_DESCRprovide display-level identities for the source and destination locations referenced byFROM_LOCATION_IDandTO_LOCATION_ID. - Shipment method:
SHIP_METHODandSHIP_METHOD_TEXTidentify and describe the carrier/service method, whileDEFAULT_FLAGmarks the default method for a given lane. - Capacity and cost:
WEIGHT_CAPACITY,WEIGHT_UOM,VOLUME_CAPACITY,VOLUME_UOM,COST_PER_WEIGHT_UNIT,COST_PER_VOLUME_UNIT,TRANSPORT_CAP_OVER_UTIL_COST, andCURRENCYdefine how much can be shipped and at what cost. - Timing:
INTRANSIT_TIME,TIME_UOM_CODE, andLEADTIME_VARIABILITYdescribe transit duration and variability. - Shipment/other:
SHIPMENT_WEIGHT,SHIPMENT_VOLUME,SHIPMENT_WEIGHT_UOM,SHIPMENT_VOLUME_UOM,TO_REGION_ID,FROM_REGION_ID,COLLECTED_FLAG, andREFRESH_NUMBERsupport planning calculations and data-collection tracking. Standard who-columns (LAST_UPDATE_DATE,CREATED_BY,ATTRIBUTE1..15) are also present.
Common Use Cases and Queries
The table is typically queried by planning or supply-chain reporting to list shipment methods available between a from-location and a to-location for a given plan. Because the user searched for from_location_id, a common pattern is a lane lookup:
SELECT plan_id, from_organization_id, from_location_id, to_organization_id,
to_location_id, ship_method, intransit_time, time_uom_code,
weight_capacity, volume_capacity, default_flag
FROM msc.msc_interorg_ship_methods
WHERE from_location_id = :p_from_location_id
AND to_location_id = :p_to_location_id
AND plan_id = :p_plan_id;
Reporting use cases include identifying the default ship method per lane, calculating transport cost per weight or volume unit for sourcing decisions, surfacing in-transit lead times and variability for planning buffers, and flagging lanes where capacity may be over-utilized using TRANSPORT_CAP_OVER_UTIL_COST. The PLAN_ID and TRANSACTION_ID unique index supports point lookups by transaction. Because the table is populated by collection into ASCP, the REFRESH_NUMBER and COLLECTED_FLAG columns are useful for data-freshness checks.
Related Objects
The metadata classifies this object as standalone, so no mined foreign keys exist. In practice, the most significant related objects are those implied by the key columns:
MSC_ORGANIZATIONS/ORG_ORGANIZATION_DEFINITIONS— joined onFROM_ORGANIZATION_IDandTO_ORGANIZATION_IDto resolve organization names.- Location tables referenced by
FROM_LOCATION_IDandTO_LOCATION_ID, typically sourced from Oracle Inventory/WMS locations. - ASCP plan metadata (e.g.,
MSC_PLANS) — joined onPLAN_ID. - Region reference data — joined on
TO_REGION_IDandFROM_REGION_ID. MSC_INTERORG_SHIP_METHODS_U1andMSC_INTERORG_SHIP_METHODS_U2— unique indexes enforcing business-key uniqueness on the table itself.- Transaction context for the
TRANSACTION_IDcolumn, as constrained byMSC_INTERORG_SHIP_METHODS_U2.
-
Table: MSC_INTERORG_SHIP_METHODS
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_INTERORG_SHIP_METHODS, object_name:MSC_INTERORG_SHIP_METHODS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This table stores the different shipment methods and their availability. , implementation_dba_data: MSC.MSC_INTERORG_SHIP_METHODS ,
-
Table: MSC_INTERORG_SHIP_METHODS
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_INTERORG_SHIP_METHODS, object_name:MSC_INTERORG_SHIP_METHODS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This table stores the different shipment methods and their availability. , implementation_dba_data: MSC.MSC_INTERORG_SHIP_METHODS ,
-
APPS.MSC_SCATP_PUB SQL Statements
12.1.1
-
APPS.MSC_SCATP_PUB SQL Statements
12.2.2
-
VIEW: APPS.MSC_INTERORG_SHIP_METHODS_DFV
12.1.1
-
PACKAGE BODY: APPS.MSC_SCATP_PUB
12.1.1
-
VIEW: APPS.MSC_INTERORG_SHIP_METHODS_DFV
12.2.2
-
PACKAGE BODY: APPS.MSC_SCATP_PUB
12.2.2
-
SYNONYM: APPS.MSC_INTERORG_SHIP_METHODS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MSC_INTERORG_SHIP_METHODS, status:VALID,
-
SYNONYM: APPS.MSC_INTERORG_SHIP_METHODS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MSC_INTERORG_SHIP_METHODS, status:VALID,
-
VIEW: MSC.MSC_INTERORG_SHIP_METHODS#
12.2.2
owner:MSC, object_type:VIEW, object_name:MSC_INTERORG_SHIP_METHODS#, status:VALID,
-
VIEW: APPS.MSC_ITEM_SR_LEVELS_V
12.1.1
-
VIEW: APPS.MSC_ITEM_SR_LEVELS_V
12.2.2
-
View: OLD_ITEM_SOURCING_LEVELS_V
12.2.2
product: MSC - Advanced Supply Chain Planning , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.MSC_LOCATIONS_V
12.2.2
-
VIEW: APPS.MSC_RESOURCES_TREE_V
12.1.1
-
VIEW: APPS.MSC_RESOURCES_TREE_V
12.2.2
-
View: OLD_ITEM_SOURCING_LEVELS_V
12.1.1
product: MSC - Advanced Supply Chain Planning , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.MSC_ITEM_SOURCING_LEVELS_V
12.2.2
-
VIEW: APPS.MSC_LOCATIONS_V
12.1.1
-
VIEW: APPS.MSC_ITEM_SOURCING_LEVELS_V
12.1.1
-
View: MSC_ITEM_SOURCING_LEVELS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ITEM_SOURCING_LEVELS_V, object_name:MSC_ITEM_SOURCING_LEVELS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: this view picks up all the sources at various levels for an item , implementation_dba_data: APPS.MSC_ITEM_SOURCING_LEVELS_V ,
-
Table: MSC_ST_INTERORG_SHIP_METHODS
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_ST_INTERORG_SHIP_METHODS, object_name:MSC_ST_INTERORG_SHIP_METHODS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: The staging table used by the collection program to validate and process data for table MSC_INTERORG_SHIP_METHODS. , implementation_dba_data: MSC.MSC_ST_INTERORG_SHIP_METHODS ,
-
Table: MSC_ST_INTERORG_SHIP_METHODS
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_ST_INTERORG_SHIP_METHODS, object_name:MSC_ST_INTERORG_SHIP_METHODS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: The staging table used by the collection program to validate and process data for table MSC_INTERORG_SHIP_METHODS. , implementation_dba_data: MSC.MSC_ST_INTERORG_SHIP_METHODS ,
-
VIEW: MSC.MSC_INTERORG_SHIP_METHODS#
12.2.2
-
View: MSC_ITEM_SOURCING_LEVELS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ITEM_SOURCING_LEVELS_V, object_name:MSC_ITEM_SOURCING_LEVELS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: this view picks up all the sources at various levels for an item , implementation_dba_data: APPS.MSC_ITEM_SOURCING_LEVELS_V ,
-
VIEW: APPS.MSC_SUPPLIERORG_SHIP_METHODS_V
12.1.1
-
View: MSC_ITEM_SR_LEVELS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ITEM_SR_LEVELS_V, object_name:MSC_ITEM_SR_LEVELS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: Inventory items sources view , implementation_dba_data: APPS.MSC_ITEM_SR_LEVELS_V ,
-
PACKAGE BODY: APPS.MSC_SCATP_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_SCATP_PUB, status:VALID,
-
VIEW: APPS.MSC_SUPPLIERORG_SHIP_METHODS_V
12.2.2
-
View: MSC_ITEM_SR_LEVELS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ITEM_SR_LEVELS_V, object_name:MSC_ITEM_SR_LEVELS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: Inventory items sources view , implementation_dba_data: APPS.MSC_ITEM_SR_LEVELS_V ,
-
PACKAGE BODY: APPS.MSC_SCATP_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_SCATP_PUB, status:VALID,
-
VIEW: APPS.MSC_ORGCUSTOMER_SHIP_METHODS_V
12.1.1
-
VIEW: APPS.MSC_INTERORG_SHIP_METHODS_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_INTERORG_SHIP_METHODS_DFV, status:VALID,
-
VIEW: APPS.MSC_INTERORG_SHIP_METHODS_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:MSC_INTERORG_SHIP_METHODS_DFV, status:VALID,
-
VIEW: APPS.MSC_ORGCUSTOMER_SHIP_METHODS_V
12.2.2
-
View: MSC_LOCATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_LOCATIONS_V, object_name:MSC_LOCATIONS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_LOCATIONS_V ,
-
View: MSC_LOCATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_LOCATIONS_V, object_name:MSC_LOCATIONS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_LOCATIONS_V ,
-
PACKAGE BODY: APPS.MSC_CRP_HORIZONTAL_PLAN
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_CRP_HORIZONTAL_PLAN, status:VALID,
-
PACKAGE BODY: APPS.MSC_ATP_FUNC
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_ATP_FUNC, status:VALID,
-
PACKAGE BODY: APPS.MSC_ATP_FUNC
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_ATP_FUNC, status:VALID,
-
PACKAGE BODY: APPS.MSC_CRP_HORIZONTAL_PLAN
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_CRP_HORIZONTAL_PLAN, status:VALID,
-
PACKAGE BODY: APPS.MSC_ANALYSIS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_ANALYSIS_PKG, status:VALID,
-
PACKAGE BODY: APPS.MSC_ANALYSIS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_ANALYSIS_PKG, status:VALID,
-
PACKAGE BODY: APPS.MSC_DRP_UTIL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_DRP_UTIL, status:VALID,
-
VIEW: APPS.MSC_ITEM_SR_LEVELS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ITEM_SR_LEVELS_V, object_name:MSC_ITEM_SR_LEVELS_V, status:VALID,
-
VIEW: APPS.MSC_ITEM_SR_LEVELS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ITEM_SR_LEVELS_V, object_name:MSC_ITEM_SR_LEVELS_V, status:VALID,
-
Lookup Type: MSC_ODS_TABLE
12.1.1
product: MSC - Advanced Supply Chain Planning , meaning: MSC_ODS_TABLE , description: List of ODS tables used by Collections ,
-
View: MSC_RESOURCES_TREE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_RESOURCES_TREE_V, object_name:MSC_RESOURCES_TREE_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This view shows all the resources in the tree , implementation_dba_data: APPS.MSC_RESOURCES_TREE_V ,
-
PACKAGE BODY: APPS.MSC_DRP_UTIL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_DRP_UTIL, status:VALID,