Search Results oe_ship_methods_v
Overview
OE_SHIP_METHODS_V is a reporting and integration view owned by the APPS schema within the Oracle E-Business Suite Order Management (ONT) module. As documented in the ETRM repository for releases 12.1.1 and 12.2.2, the object type is VIEW and its status is VALID. The view presents a filtered, secured projection of shipping method (carrier/service level) lookup values, exposing the reference data that Order Management uses to classify how ordered goods are dispatched. Rather than maintaining a dedicated ship method entity, Oracle EBS stores shipping methods as lookup codes under the FND lookup type SHIP_METHOD, and OE_SHIP_METHODS_V surfaces those codes in a form suitable for LOVs, reports, concurrent programs, and interface extraction.
Because shipping method values are seeded and maintained as application reference data, the view functions as a read-only window onto the standard lookup infrastructure. It enables report developers and integration architects to query valid, language-aware ship method definitions without needing to reconstruct the underlying FND_LOOKUP_VALUES predicates, thereby enforcing consistent filtering across custom artifacts.
Underlying Base Objects
The view is defined over a single documented base object: FND_LOOKUP_VALUES, accessed through a SYNONYM in the APPS schema. The view text explicitly restricts the result set with the following predicates:
- LANGUAGE = USERENV('LANG') — returns only the lookup rows whose language matches the session language, ensuring translated MEANING and DESCRIPTION values are presented to the user.
- VIEW_APPLICATION_ID = 3 — limits results to lookups owned by application identifier 3 (Oracle Order Management).
- LOOKUP_TYPE = 'SHIP_METHOD' — isolates the shipping method lookup category.
- SECURITY_GROUP_ID = 0 — restricts to the standard, non-secured lookup set.
Consequently, the view inherits its column structure directly from FND_LOOKUP_VALUES while applying the Order Management context. No joins to order, shipping, or inventory tables are performed within the view definition.
Key Columns
- LOOKUP_TYPE — the lookup category; always returns SHIP_METHOD when queried through this view.
- LOOKUP_CODE — the internal code stored on transactional records such as order lines and delivery details; this is the value typically referenced by foreign-key style relationships in OE_ORDER_LINES_ALL and related tables.
- MEANING — the user-facing, language-specific display name for the ship method.
- DESCRIPTION — an optional extended description of the shipping method.
- ENABLED_FLAG — indicates whether the ship method is currently active (Y) or disabled (N) for selection.
- START_DATE_ACTIVE / END_DATE_ACTIVE — the effective date range during which the lookup is valid.
Common Use Cases and Queries
Typical usage includes populating shipping method list of values in custom forms and OAF pages, driving shipping labels and carrier reports, and extracting reference data for data warehouse or integration staging tables. The view also supports validation routines that confirm a submitted ship method code is enabled and effective as of a given date.
A basic query returning only active shipping methods:
SELECT lookup_code, meaning, description FROM oe_ship_methods_v WHERE enabled_flag = 'Y' ORDER BY meaning;
To validate a specific code against its active date range:
SELECT meaning FROM oe_ship_methods_v WHERE lookup_code = :p_code AND enabled_flag = 'Y' AND TRUNC(SYSDATE) BETWEEN NVL(start_date_active, SYSDATE) AND NVL(end_date_active, SYSDATE);
Because the view is language-aware, joining it to order lines by lookup_code yields user-facing descriptions appropriate to the session language, making it suitable for multi-language reporting environments.
-
View: OE_SHIP_METHODS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SHIP_METHODS_V, object_name:OE_SHIP_METHODS_V, status:VALID, product: ONT - Order Management , description: This is a view for ship methods. , implementation_dba_data: APPS.OE_SHIP_METHODS_V ,
-
View: OE_SHIP_METHODS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SHIP_METHODS_V, object_name:OE_SHIP_METHODS_V, status:VALID, product: ONT - Order Management , description: This is a view for ship methods. , implementation_dba_data: APPS.OE_SHIP_METHODS_V ,
-
VIEW: APPS.OE_AK_SHIPPING_METHOD_V
12.2.2
-
VIEW: APPS.OE_AK_SHIPPING_METHOD_V
12.1.1
-
VIEW: APPS.ASO_I_SHIPPING_METHODS_V
12.2.2
-
VIEW: APPS.ASO_I_SHIPPING_METHODS_V
12.1.1
-
VIEW: APPS.IBE_SHIP_DLVY_DTL_V
12.1.1
-
VIEW: APPS.IBE_SHIP_DLVY_DTL_V
12.2.2
-
VIEW: APPS.IBE_SHIP_DETAIL_V
12.2.2
-
VIEW: APPS.IBE_SHIP_DETAIL_V
12.1.1
-
View: IBE_SHIP_DLVY_DTL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_SHIP_DLVY_DTL_V, object_name:IBE_SHIP_DLVY_DTL_V, status:VALID, product: IBE - iStore , description: Store information about delivery details , implementation_dba_data: APPS.IBE_SHIP_DLVY_DTL_V ,
-
VIEW: APPS.IBE_SHIP_DLVY_V
12.2.2
-
View: IBE_SHIP_DLVY_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_SHIP_DLVY_DTL_V, object_name:IBE_SHIP_DLVY_DTL_V, status:VALID, product: IBE - iStore , description: Store information about delivery details , implementation_dba_data: APPS.IBE_SHIP_DLVY_DTL_V ,
-
VIEW: APPS.QPFV_AGREEMENTS
12.2.2
-
VIEW: APPS.IBE_SHIP_DLVY_V
12.1.1
-
VIEW: APPS.QPFV_AGREEMENTS
12.1.1
-
View: OE_AK_SHIPPING_METHOD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SHIPPING_METHOD_V, object_name:OE_AK_SHIPPING_METHOD_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_SHIPPING_METHOD_V ,
-
View: OE_AK_SHIPPING_METHOD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SHIPPING_METHOD_V, object_name:OE_AK_SHIPPING_METHOD_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_SHIPPING_METHOD_V ,
-
View: IBE_SHIP_DETAIL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_SHIP_DETAIL_V, object_name:IBE_SHIP_DETAIL_V, status:VALID, product: IBE - iStore , implementation_dba_data: APPS.IBE_SHIP_DETAIL_V ,
-
View: IBE_SHIP_DETAIL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_SHIP_DETAIL_V, object_name:IBE_SHIP_DETAIL_V, status:VALID, product: IBE - iStore , implementation_dba_data: APPS.IBE_SHIP_DETAIL_V ,
-
VIEW: APPS.QPFV_PRICE_LISTS
12.1.1
-
VIEW: APPS.QPFV_PRICE_LISTS
12.2.2
-
View: ASO_I_SHIPPING_METHODS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_SHIPPING_METHODS_V, object_name:ASO_I_SHIPPING_METHODS_V, status:VALID, product: ASO - Order Capture , description: view used to retrieve all valid shipping methods , implementation_dba_data: APPS.ASO_I_SHIPPING_METHODS_V ,
-
APPS.QP_VALUE_TO_ID SQL Statements
12.1.1
-
View: ASO_I_SHIPPING_METHODS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_SHIPPING_METHODS_V, object_name:ASO_I_SHIPPING_METHODS_V, status:VALID, product: ASO - Order Capture , description: view used to retrieve all valid shipping methods , implementation_dba_data: APPS.ASO_I_SHIPPING_METHODS_V ,
-
APPS.QP_VALUE_TO_ID SQL Statements
12.2.2
-
PACKAGE BODY: APPS.IBE_MSITE_INFORMATION_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_MSITE_INFORMATION_PVT, status:VALID,
-
PACKAGE BODY: APPS.QP_ID_TO_VALUE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:QP_ID_TO_VALUE, status:VALID,
-
PACKAGE BODY: APPS.QP_VALIDATE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:QP_VALIDATE, status:VALID,
-
PACKAGE BODY: APPS.QP_VALUE_TO_ID
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:QP_VALUE_TO_ID, status:VALID,
-
PACKAGE BODY: APPS.QP_ID_TO_VALUE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:QP_ID_TO_VALUE, status:VALID,
-
VIEW: APPS.QPR_SR_OM_QUOTE_LINES_V
12.1.1
-
PACKAGE BODY: APPS.IBE_MSITE_INFORMATION_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_MSITE_INFORMATION_PVT, status:VALID,
-
VIEW: APPS.QPR_SR_OM_QUOTE_LINES_V
12.2.2
-
PACKAGE BODY: APPS.QP_VALUE_TO_ID
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:QP_VALUE_TO_ID, status:VALID,
-
PACKAGE BODY: APPS.QP_VALIDATE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:QP_VALIDATE, status:VALID,
-
PACKAGE BODY: APPS.FUN_RULE_VALIDATE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FUN_RULE_VALIDATE_PKG, status:VALID,
-
PACKAGE BODY: APPS.ASO_WORKFLOW_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_WORKFLOW_PVT, status:VALID,
-
PACKAGE BODY: APPS.ASO_WORKFLOW_QUOTE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_WORKFLOW_QUOTE_PVT, status:VALID,
-
PACKAGE BODY: APPS.ASO_WORKFLOW_QUOTE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_WORKFLOW_QUOTE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OE_CNCL_VALUE_TO_ID
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_CNCL_VALUE_TO_ID, status:VALID,
-
VIEW: APPS.OE_AK_SHIPPING_METHOD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SHIPPING_METHOD_V, object_name:OE_AK_SHIPPING_METHOD_V, status:VALID,
-
VIEW: APPS.OE_AK_SHIPPING_METHOD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SHIPPING_METHOD_V, object_name:OE_AK_SHIPPING_METHOD_V, status:VALID,
-
PACKAGE BODY: APPS.QP_BULK_VALUE_TO_ID
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:QP_BULK_VALUE_TO_ID, status:VALID,
-
PACKAGE BODY: APPS.QP_BULK_VALUE_TO_ID
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:QP_BULK_VALUE_TO_ID, status:VALID,
-
PACKAGE BODY: APPS.FUN_RULE_VALIDATE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FUN_RULE_VALIDATE_PKG, status:VALID,
-
PACKAGE BODY: APPS.ASO_WORKFLOW_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_WORKFLOW_PVT, status:VALID,
-
View: QPFV_PRICE_LISTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPFV_PRICE_LISTS, object_name:QPFV_PRICE_LISTS, status:VALID, product: QP - Advanced Pricing , description: This view gives information about Standard and Agreement Price list headers. , implementation_dba_data: APPS.QPFV_PRICE_LISTS ,
-
PACKAGE BODY: APPS.FUN_RULE_UTILITY_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FUN_RULE_UTILITY_PKG, status:VALID,
-
View: QPFV_PRICE_LISTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPFV_PRICE_LISTS, object_name:QPFV_PRICE_LISTS, status:VALID, product: QP - Advanced Pricing , description: This view gives information about Standard and Agreement Price list headers. , implementation_dba_data: APPS.QPFV_PRICE_LISTS ,