Search Results ship_line_id
Overview
APPS.INL_ADJ_ASSOCIATIONS_V is a reporting and integration view in the Oracle E-Business Suite (EBS) Logistics and Transportation module (ETRM — formerly Oracle Transportation Management integration, distributed as part of the shipping and trade compliance stack). It exposes association records held in the INL_ASSOCIATIONS base table while resolving the polymorphic parent identifiers into concrete, single-table primary keys. In the EBS 12.1.1 and 12.2.2 data models, associations express relationships between shipping, charge, and tax line entities, and this view collapses those generic association rows into a form that is directly joinable to the adjustment and detail views.
The view is significant because INL_ASSOCIATIONS stores from_parent_table_name and to_parent_table_name as descriptive labels (for example, INL_SHIP_LINES, INL_CHARGE_LINES, INL_TAX_LINES) paired with generic numeric parent IDs. Consumers that need the concrete adjusted line identifier — such as the ship line, charge line, or tax line — rely on this view to perform the DECODE-based resolution, making it the natural access point for reporting on trade compliance tax associations and inter-entity adjustments.
Underlying Base Objects
The view is defined over INL_ASSOCIATIONS, which supplies the association header attributes (association_id, ship_header_id, source and target parent table names and IDs, allocation basis, and allocation UOM). The DECODE logic additionally references the adjustment detail views INL_ADJ_SHIP_LINES_V, INL_ADJ_CHARGE_LINES_V, and INL_ADJ_TAX_LINES_V, and the base tables INL_CHARGE_LINES and INL_SHIP_LINES_ALL (and INL_TAX_LINES), using hierarchical CONNECT BY queries against parent_ship_line_id, parent_charge_line_id, and parent_tax_line_id to resolve leaf/summary relationships.
Documented base objects include the synonyms INL_ASSOCIATIONS, INL_CHARGE_LINES, INL_SHIP_LINES_ALL, and INL_TAX_LINES. The view therefore acts as a semantic bridge: it takes the generic association tuples and returns the concrete line-level keys required by downstream consuming code.
Key Columns
- association_id — Primary identifier of the association record, carried directly from INL_ASSOCIATIONS.
- ship_header_id — The shipment header to which the association belongs, the primary grouping key for reporting.
- from_parent_table_name / to_parent_table_name — Labels identifying the source and target entity type (ship line, charge line, or tax line).
- from_parent_table_id — Resolved source line identifier; the DECODE returns ship_line_id, charge_line_id, or tax_line_id based on the table name, falling back to the original ID.
- to_parent_table_id — Resolved target line identifier, resolved analogously for the source side and, on the target side, through NVL and hierarchy traversal.
- allocation_basis / allocation_uom_code — Describe how amounts are apportioned across associated lines and the unit of measure governing that allocation.
The INL_TAX_LINES branch is the one that surfaces tax_line_id, which is why searches for that column land on this view.
Common Use Cases and Queries
Typical usage includes reconcile reports tracing which tax lines are associated with a given shipment or charge line, trade compliance audits, and integration feeds that must flatten polymorphic associations to concrete keys. A representative query filtering on the tax association is:
SELECT association_id, ship_header_id, from_parent_table_id, to_parent_table_id, allocation_basis FROM apps.inl_adj_associations_v WHERE from_parent_table_name = 'INL_TAX_LINES';
Because the resolution logic embeds scalar subqueries with ROWNUM constraints and CONNECT BY traversal, queries should generally be constrained by association_id, ship_header_id, or table-name filters to avoid unnecessary hierarchy processing.
-
VIEW: APPS.INL_ADJ_ASSOCIATIONS_V
12.1.1
-
VIEW: APPS.INL_SHIPLN_LANDED_COSTS_V
12.1.1
-
VIEW: INL.INL_ALLOCATIONS#
12.2.2
-
View: INL_SHIPLN_LANDED_COSTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_SHIPLN_LANDED_COSTS_V, object_name:INL_SHIPLN_LANDED_COSTS_V, status:VALID, product: INL - Oracle Landed Cost Management , description: This view shows landed cost information for Shipment Lines , implementation_dba_data: APPS.INL_SHIPLN_LANDED_COSTS_V ,
-
View: INL_ADJ_ASSOCIATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ADJ_ASSOCIATIONS_V, object_name:INL_ADJ_ASSOCIATIONS_V, status:VALID, product: INL - Oracle Landed Cost Management , description: This view shows adjusted associations between landed cost components of the same or different Shipments. , implementation_dba_data: APPS.INL_ADJ_ASSOCIATIONS_V ,
-
VIEW: APPS.INL_ADJ_SHIP_LINES_V
12.2.2
-
VIEW: GMF.GMF_LC_ADJ_TRANSACTIONS#
12.2.2
-
TABLE: INL.INL_ALLOCATIONS
12.1.1
owner:INL, object_type:TABLE, fnd_design_data:INL.INL_ALLOCATIONS, object_name:INL_ALLOCATIONS, status:VALID,
-
VIEW: INL.INL_SHIP_HOLDS#
12.2.2
-
VIEW: APPS.INL_ADJ_SHIP_LINES_V
12.1.1
-
TABLE: INL.INL_ALLOCATIONS
12.2.2
owner:INL, object_type:TABLE, fnd_design_data:INL.INL_ALLOCATIONS, object_name:INL_ALLOCATIONS, status:VALID,
-
APPS.INL_LANDEDCOST_PUB SQL Statements
12.1.1
-
View: INL_ADJ_SHIP_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ADJ_SHIP_LINES_V, object_name:INL_ADJ_SHIP_LINES_V, status:VALID, product: INL - Oracle Landed Cost Management , description: This view shows adjusted information on Shipment Lines. , implementation_dba_data: APPS.INL_ADJ_SHIP_LINES_V ,
-
View: INL_ADJ_SHIP_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ADJ_SHIP_LINES_V, object_name:INL_ADJ_SHIP_LINES_V, status:VALID, product: INL - Oracle Landed Cost Management , implementation_dba_data: APPS.INL_ADJ_SHIP_LINES_V ,
-
APPS.INL_LANDEDCOST_PUB SQL Statements
12.2.2
-
VIEW: APPS.INL_EBTAX_LINES_V
12.1.1
-
VIEW: APPS.INL_ALLOCATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ALLOCATIONS_V, object_name:INL_ALLOCATIONS_V, status:VALID,
-
VIEW: APPS.INL_ALLOCATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ALLOCATIONS_V, object_name:INL_ALLOCATIONS_V, status:VALID,
-
VIEW: APPS.INL_EBTAX_LINES_V
12.2.2
-
VIEW: APPS.INL_ALLOCATION_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ALLOCATION_SUMMARY_V, object_name:INL_ALLOCATION_SUMMARY_V, status:VALID,
-
VIEW: INL.INL_SHIP_LINES_ALL#
12.2.2
-
View: INL_EBTAX_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_EBTAX_LINES_V, object_name:INL_EBTAX_LINES_V, status:VALID, product: INL - Oracle Landed Cost Management , description: This view shows EBTAX Line information. , implementation_dba_data: APPS.INL_EBTAX_LINES_V ,
-
VIEW: APPS.INL_ALLOCATION_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ALLOCATION_SUMMARY_V, object_name:INL_ALLOCATION_SUMMARY_V, status:VALID,
-
APPS.INL_LANDEDCOST_PVT SQL Statements
12.1.1
-
View: INL_EBTAX_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_EBTAX_LINES_V, object_name:INL_EBTAX_LINES_V, status:VALID, product: INL - Oracle Landed Cost Management , description: This view shows EBTAX Line information. , implementation_dba_data: APPS.INL_EBTAX_LINES_V ,
-
View: INL_ALLOCATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ALLOCATIONS_V, object_name:INL_ALLOCATIONS_V, status:VALID, product: INL - Oracle Landed Cost Management , description: This view shows all amounts of a Shipment, prorated into its Shipment Lines. , implementation_dba_data: APPS.INL_ALLOCATIONS_V ,
-
VIEW: INL.INL_ALLOCATIONS#
12.2.2
owner:INL, object_type:VIEW, object_name:INL_ALLOCATIONS#, status:VALID,
-
APPS.INL_LANDEDCOST_PVT SQL Statements
12.2.2
-
VIEW: INL.INL_SHIP_LINES_INT#
12.2.2
-
VIEW: INL.INL_SHIP_HOLDS#
12.2.2
owner:INL, object_type:VIEW, object_name:INL_SHIP_HOLDS#, status:VALID,
-
VIEW: APPS.INL_DET_LANDED_COSTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_DET_LANDED_COSTS_V, object_name:INL_DET_LANDED_COSTS_V, status:VALID,
-
VIEW: APPS.INL_ALLOCATION_FLOW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ALLOCATION_FLOW_V, object_name:INL_ALLOCATION_FLOW_V, status:VALID,
-
VIEW: APPS.INL_SHIPLN_LANDED_COSTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_SHIPLN_LANDED_COSTS_V, object_name:INL_SHIPLN_LANDED_COSTS_V, status:VALID,
-
VIEW: APPS.INL_ADJ_ASSOCIATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ADJ_ASSOCIATIONS_V, object_name:INL_ADJ_ASSOCIATIONS_V, status:VALID,
-
View: GMF_LC_ADJ_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_LC_ADJ_DETAILS_V, object_name:GMF_LC_ADJ_DETAILS_V, status:VALID, product: GMF - Process Manufacturing Financials , description: LC Adjustment details view will contain detailed information for each actual LC adjustment , implementation_dba_data: APPS.GMF_LC_ADJ_DETAILS_V ,
-
VIEW: APPS.INL_SHIPLN_LANDED_COSTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_SHIPLN_LANDED_COSTS_V, object_name:INL_SHIPLN_LANDED_COSTS_V, status:VALID,
-
View: GMF_LC_ADJ_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_LC_ADJ_HEADERS_V, object_name:GMF_LC_ADJ_HEADERS_V, status:VALID, product: GMF - Process Manufacturing Financials , description: View used to store LC adjustments will be populated by LCM tables , implementation_dba_data: APPS.GMF_LC_ADJ_HEADERS_V ,
-
TABLE: INL.INL_SHIP_HOLDS
12.2.2
owner:INL, object_type:TABLE, fnd_design_data:INL.INL_SHIP_HOLDS, object_name:INL_SHIP_HOLDS, status:VALID,
-
VIEW: APPS.INL_DET_LANDED_COSTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_DET_LANDED_COSTS_V, object_name:INL_DET_LANDED_COSTS_V, status:VALID,
-
PACKAGE BODY: APPS.INL_LANDEDCOST_PUB
12.1.1
-
VIEW: APPS.INL_ADJ_ASSOCIATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ADJ_ASSOCIATIONS_V, object_name:INL_ADJ_ASSOCIATIONS_V, status:VALID,
-
VIEW: APPS.GMF_LC_ADJ_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_LC_ADJ_DETAILS_V, object_name:GMF_LC_ADJ_DETAILS_V, status:VALID,
-
VIEW: GMF.GMF_LC_ADJ_TRANSACTIONS#
12.2.2
owner:GMF, object_type:VIEW, object_name:GMF_LC_ADJ_TRANSACTIONS#, status:VALID,
-
TABLE: INL.INL_SHIP_HOLDS
12.1.1
owner:INL, object_type:TABLE, fnd_design_data:INL.INL_SHIP_HOLDS, object_name:INL_SHIP_HOLDS, status:VALID,
-
VIEW: APPS.GMF_LC_ADJ_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_LC_ADJ_HEADERS_V, object_name:GMF_LC_ADJ_HEADERS_V, status:VALID,
-
VIEW: APPS.GMF_LC_ADJ_HEADERS_V
12.2.2
-
Table: GMF_LC_ADJ_TRANSACTIONS
12.2.2
owner:GMF, object_type:TABLE, fnd_design_data:GMF.GMF_LC_ADJ_TRANSACTIONS, object_name:GMF_LC_ADJ_TRANSACTIONS, status:VALID, product: GMF - Process Manufacturing Financials , description: This table used to store Estimated and Actual Landed Cost adjustments. This table will be populated in Landed cost adjustment import process for each LC adjustment , implementation_dba_data: GMF.GMF_LC_ADJ_TRANSACTIONS ,
-
TABLE: GMF.GMF_LC_ADJ_TRANSACTIONS
12.2.2
owner:GMF, object_type:TABLE, fnd_design_data:GMF.GMF_LC_ADJ_TRANSACTIONS, object_name:GMF_LC_ADJ_TRANSACTIONS, status:VALID,
-
TABLE: INL.INL_ASSOCIATIONS
12.1.1
owner:INL, object_type:TABLE, fnd_design_data:INL.INL_ASSOCIATIONS, object_name:INL_ASSOCIATIONS, status:VALID,
-
VIEW: INL.INL_SHIP_LINES_ALL#
12.2.2
owner:INL, object_type:VIEW, object_name:INL_SHIP_LINES_ALL#, status:VALID,