Search Results connect_by_isleaf
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.2.2
-
View: 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, 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_ASSOCIATIONS_V
12.1.1
-
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_TAX_LINES_V
12.1.1
-
VIEW: APPS.INL_ADJ_CHARGE_LINES_V
12.1.1
-
View: INL_ADJ_CHARGE_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ADJ_CHARGE_LINES_V, object_name:INL_ADJ_CHARGE_LINES_V, status:VALID, product: INL - Oracle Landed Cost Management , description: This view shows adjusted information on Charge Lines. , implementation_dba_data: APPS.INL_ADJ_CHARGE_LINES_V ,
-
View: INL_ADJ_TAX_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ADJ_TAX_LINES_V, object_name:INL_ADJ_TAX_LINES_V, status:VALID, product: INL - Oracle Landed Cost Management , description: This view shows adjusted information on Tax Lines. , implementation_dba_data: APPS.INL_ADJ_TAX_LINES_V ,
-
APPS.INL_SHIPMENT_PVT SQL Statements
12.2.2
-
APPS.GME_CREATE_STEP_PVT SQL Statements
12.2.2
-
APPS.HZ_BES_BO_GEN_PKG SQL Statements
12.2.2
-
APPS.HZ_BES_BO_GEN_PKG SQL Statements
12.1.1
-
APPS.GME_CREATE_STEP_PVT SQL Statements
12.1.1
-
APPS.PA_PPR_ROLLUP_PVT SQL Statements
12.2.2
-
APPS.PA_PPR_ROLLUP_ACTUAL_PVT SQL Statements
12.2.2
-
APPS.PA_PROGRESS_PVT dependencies on PA_PROJ_ELEMENTS_TMP
12.2.2
-
APPS.HZ_BES_BO_GEN_PKG dependencies on HZ_BUS_OBJ_DEFINITIONS
12.2.2
-
APPS.HZ_BES_BO_UTIL_PKG dependencies on HZ_BUS_OBJ_DEFINITIONS
12.1.1
-
APPS.HZ_BES_BO_UTIL_PKG dependencies on HZ_BUS_OBJ_DEFINITIONS
12.2.2
-
APPS.HZ_BES_BO_GEN_PKG dependencies on HZ_BUS_OBJ_DEFINITIONS
12.1.1
-
APPS.INL_SHIPMENT_PVT dependencies on INL_CHARGE_LINES
12.2.2
-
APPS.PJI_REP_UTIL dependencies on PA_PPR_OBJ_TMP_VIEW
12.2.2
-
APPS.INL_INTERFACE_PVT dependencies on INL_ASSOCIATIONS
12.2.2
-
APPS.INL_INTERFACE_PVT SQL Statements
12.2.2
-
APPS.PJI_FM_XBS_ACCUM_UTILS dependencies on PA_PPR_OBJ_TMP_VIEW
12.2.2
-
PACKAGE BODY: APPS.INL_SHIPMENT_PVT
12.2.2
-
APPS.PJI_REP_UTIL SQL Statements
12.2.2
-
APPS.PA_PROGRESS_PVT dependencies on PA_PROJ_ELEMENTS
12.2.2
-
APPS.PA_PROJECT_STRUCTURE_PVT1 dependencies on PA_PROJ_ELEMENTS_TMP
12.2.2
-
APPS.INL_INTERFACE_PVT dependencies on INL_CHARGE_LINES
12.2.2
-
APPS.PA_PROGRESS_PVT dependencies on DUAL
12.2.2
-
APPS.PA_PPR_ROLLUP_ACTUAL_PVT dependencies on PA_PPR_OBJ_TMP
12.2.2
-
APPS.INL_SHIPMENT_PVT dependencies on INL_TAX_LINES
12.2.2
-
APPS.PA_PPR_ROLLUP_PVT dependencies on PA_PPR_OBJ_TMP
12.2.2
-
PACKAGE BODY: APPS.PA_PPR_ROLLUP_PVT
12.2.2
-
PACKAGE BODY: APPS.PA_PPR_ROLLUP_ACTUAL_PVT
12.2.2
-
APPS.GME_CREATE_STEP_PVT dependencies on GME_BATCH_STEPS
12.2.2
-
PACKAGE BODY: APPS.GME_CREATE_STEP_PVT
12.2.2
-
APPS.PA_PROGRESS_PVT SQL Statements
12.2.2
-
APPS.GME_CREATE_STEP_PVT dependencies on GME_BATCH_STEPS
12.1.1
-
APPS.HZ_BES_BO_UTIL_PKG SQL Statements
12.2.2
-
APPS.PA_PROJECT_STRUCTURE_PVT1 SQL Statements
12.2.2
-
APPS.HZ_BES_BO_UTIL_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.HZ_BES_BO_GEN_PKG
12.2.2
-
PACKAGE BODY: APPS.HZ_BES_BO_GEN_PKG
12.1.1
-
PACKAGE BODY: APPS.GME_CREATE_STEP_PVT
12.1.1
-
APPS.PJI_FM_XBS_ACCUM_UTILS SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PJI_FM_XBS_ACCUM_UTILS
12.2.2
-
PACKAGE BODY: APPS.PJI_REP_UTIL
12.2.2
-
APPS.PA_PROJECT_STRUCTURE_PVT1 dependencies on PA_PROJ_ELEMENTS
12.2.2