Search Results inl_ship_statuses
Overview
APPS.INL_CHARGE_OVERALL_V is a supplementary database view in the Oracle E-Business Suite ETRM (Enterprise Trade and Transportation Management) module, owned by the APPS schema and registered under FND Design Data as INL.INL_CHARGE_OVERALL_V. Its status is VALID in both 12.1.1 and 12.2.2 environments. Oracle classifies this view as a "supplementary view used to simplify forms coding," which means it was created primarily to consolidate charge, shipment, and party information into a single denormalized structure that Oracle Forms-based ETRM screens can query efficiently without embedding complex joins.
A critical caveat accompanies this classification: Oracle explicitly warns that this is not a supported public interface. Customers are advised not to query or alter data through the view, since its definition may change materially between minor or major releases. In practice, organizations use it for read-only diagnostics, ad-hoc reporting, and data extraction, but production integrations should rely on documented open interfaces or base tables instead.
Underlying Base Objects
The view is defined over a documented set of referenced objects. These include the synonym INL_SHIP_HEADERS, which supplies shipment-level attributes; INL_SHIP_LINE_GROUPS, which provides line group and party associations; INL_ASSOCIATIONS, which links shipments to charge structures; and the nested view INL_ADJ_CHARGE_LINES_V, which contributes charge line detail. Party master data is sourced from the HZ_PARTIES and HZ_PARTY_SITES synonyms, providing group party names, party site names, and identifiers. The join of shipment headers, line groups, associations, party records, and charge lines is what allows the view to present a single row per charge line enriched with both shipment and trading-party context.
Key Columns
- SHIP_HEADER_ID, SHIP_NUM, SHIP_DATE: Identify the shipment and its date; SHIP_NUM is a VARCHAR2(25) business key.
- SHIP_STATUS_CODE: The shipment status, taken from the lookup INL_SHIP_STATUSES — directly relevant to the user's search term. Values are validated against this lookup, so any query filtering or decoding status must reference INL_SHIP_STATUSES.
- ORGANIZATION_ID, ORG_ID, LOCATION_ID: Inventory organization, operating unit, and location identifiers used for multi-org security and reporting scope.
- CHARGE_LINE_ID, CHARGE_LINE_NUM, CHARGE_LINE_TYPE_ID: Identify the individual charge line and its type within the shipment's cost structure.
- CHARGE_AMT, CURRENCY_CODE, CURRENCY_CONVERSION_TYPE, CURRENCY_CONVERSION_RATE, CURRENCY_CONVERSION_DATE: The monetary value of the charge plus full conversion detail for reporting in the functional currency.
- LANDED_COST_FLAG: Indicates whether the charge amount participates in landed cost calculation.
- PENDING_MATCHING_FLAG: Flags lines matched but not yet absorbed by the landed cost calculation — useful for reconciliation.
- PARENT_CHARGE_LINE_ID, ADJUSTMENT_NUM, MATCH_ID: Support charge hierarchies, adjustments, and matching references.
- PARTY_ID, GROUP_PARTY_NAME, PARTY_SITE_ID, GROUP_PARTY_SITE_NAME, TRX_BUSINESS_CATEGORY: Trading partner and site details, including tax categorization of the transaction.
Common Use Cases and Queries
Typical uses include reconciling shipment charges against landed cost, auditing unmatched or pending matches, and extracting charge detail by trading partner. Because SHIP_STATUS_CODE draws from INL_SHIP_STATUSES, analysts frequently join to that lookup for descriptive status text.
SELECT v.ship_num,
v.ship_date,
v.ship_status_code,
f.meaning AS ship_status,
v.charge_line_num,
v.charge_amt,
v.currency_code,
v.landed_cost_flag,
v.group_party_name
FROM apps.inl_charge_overall_v v,
fnd_lookup_values f
WHERE f.lookup_type = 'INL_SHIP_STATUSES'
AND f.lookup_code = v.ship_status_code
AND f.language = USERENV('LANG')
AND v.org_id = :p_org_id
AND v.ship_date BETWEEN :p_from AND :p_to;
This query returns shipment status descriptions alongside charge line amounts, enabling cost audits by operating unit and date range. All access should be read-only given Oracle's support restrictions on the view.
-
Lookup Type: INL_SHIP_STATUSES
12.2.2
product: INL - Oracle Landed Cost Management , meaning: Shipment Statuses , description: Shipment Statuses ,
-
Lookup Type: INL_SHIP_STATUSES
12.1.1
product: INL - Oracle Landed Cost Management , meaning: Shipment Statuses , description: Shipment Statuses ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.INL_CHARGE_OVERALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_CHARGE_OVERALL_V, object_name:INL_CHARGE_OVERALL_V, status:VALID,
-
VIEW: APPS.INL_CHARGE_OVERALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_CHARGE_OVERALL_V, object_name:INL_CHARGE_OVERALL_V, status:VALID,
-
TABLE: INL.INL_SHIP_HEADERS_ALL
12.1.1
owner:INL, object_type:TABLE, fnd_design_data:INL.INL_SHIP_HEADERS_ALL, object_name:INL_SHIP_HEADERS_ALL, status:VALID,
-
TABLE: INL.INL_SHIP_HEADERS_ALL
12.2.2
owner:INL, object_type:TABLE, fnd_design_data:INL.INL_SHIP_HEADERS_ALL, object_name:INL_SHIP_HEADERS_ALL, status:VALID,
-
VIEW: APPS.INL_SHIP_PO_OVERALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_SHIP_PO_OVERALL_V, object_name:INL_SHIP_PO_OVERALL_V, status:VALID,
-
VIEW: APPS.INL_SHIP_OVERALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_SHIP_OVERALL_V, object_name:INL_SHIP_OVERALL_V, status:VALID,
-
VIEW: APPS.INL_SHIP_RMA_OVERALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_SHIP_RMA_OVERALL_V, object_name:INL_SHIP_RMA_OVERALL_V, status:VALID,
-
VIEW: APPS.INL_SHIP_IR_OVERALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_SHIP_IR_OVERALL_V, object_name:INL_SHIP_IR_OVERALL_V, status:VALID,
-
eTRM - INL Tables and Views
12.2.2
description: This table stores information on taxes associated to Shipment components. ,
-
eTRM - INL Tables and Views
12.1.1
description: This table stores information on taxes associated to Shipment components. ,