Search Results to_location_code
Overview
The APPS.INVFV_INTERORG_LEAD_TIMES view is a read-only reporting object within the Oracle E-Business Suite Inventory (INV) module. It exposes inter-organization shipping method definitions alongside the associated in-transit lead times maintained between pairs of inventory organizations. The view is marked as retrofitted, indicating it was carried forward from earlier release baselines to remain available in Oracle EBS 12.1.1 and 12.2.2. Its primary role is to provide a denormalized, human-readable representation of the MTL_INTERORG_SHIP_METHODS data, resolving internal identifiers into organization codes, organization names, ship method meanings, and location codes so that reporting and integration consumers do not need to join the base tables themselves. Because the view text is defined WITH READ ONLY, it is intended strictly for query and extract purposes and cannot be used as a DML target. The view is owned by the APPS schema and is flagged VALID in the data dictionary.
Underlying Base Objects
The view is defined over a mixture of base tables, synonyms, and supporting packages. The central driving object is the synonym MTL_INTERORG_SHIP_METHODS, aliased as MSM, which stores the from/to organization pairs, ship method, time unit of measure, in-transit time, default flag, and audit columns. Organization codes and names are resolved through the synonym MTL_PARAMETERS (MP1 and MP2) and the synonym HR_ALL_ORGANIZATION_UNITS (HOU1 and HOU2), each joined on the respective from and to organization identifiers. Address information is supplied by the HR_LOCATIONS view (HRL1 and HRL2) using outer joins, so rows remain visible even when no from or to location is defined. The ship method lookup meaning is obtained from the FND_COMMON_LOOKUPS view (FCL) restricted to APPLICATION_ID 401 and LOOKUP_TYPE 'SHIP_METHOD'. The documented referenced objects also include the FND_GLOBAL and HR_GENERAL packages, which supply the security and lookup context evaluated at runtime. Additional internal security predicates are embedded in the view text to enforce organization-level access.
Key Columns
- FROM_ORGANIZATION_ID / FROM_ORGANIZATION_CODE / FROM_ORGANIZATION_NAME — the source inventory organization and its resolved code and name.
- TO_ORGANIZATION_ID / TO_ORGANIZATION_CODE / TO_ORGANIZATION_NAME — the destination inventory organization and its resolved code and name.
- SHIP_METHOD_CODE and SHIP_METHOD — the ship method lookup code and its translated meaning from FND_COMMON_LOOKUPS.
- TIME_UOM_CODE — the unit of measure in which the lead time is expressed.
- INTRANSIT_TIME — the inter-organization in-transit lead time value.
- _LA:DEFAULT_FLAG — a descriptive flexfield lookup column resolving the default flag against the MFG_LOOKUPS SYS_YES_NO lookup.
- FROM_LOCATION_ID / FROM_LOCATION_CODE and TO_LOCATION_ID / TO_LOCATION_CODE — optional ship-from and ship-to location identifiers and their location codes.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — standard audit columns.
Common Use Cases and Queries
Typical uses include validating inter-organization transit times for planning, auditing ship method setups, and feeding downstream planning or logistics extracts. A representative query is:
SELECT from_organization_code, to_organization_code, ship_method, time_uom_code, intransit_time FROM apps.invfv_interorg_lead_times ORDER BY from_organization_code, to_organization_code;
Analysts frequently filter by organization pair or ship method, for example restricting to records where DEFAULT_FLAG is set, or joining the view to MTL_SYSTEM_ITEMS to correlate lead times with item sourcing rules. Because the view resolves codes and names, it is also convenient for reporting tools and BI Publisher extracts that cannot easily replicate the multi-table joins against MTL_PARAMETERS, HR_ALL_ORGANIZATION_UNITS, and FND_COMMON_LOOKUPS.
-
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: 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 ,