Search Results parent_charge_line_id
Overview
APPS.INL_ADJ_CHARGE_LINES_V is a reporting view in Oracle E-Business Suite Release 12.1.1 and 12.2.2 that exposes the leaf-level adjustment charge lines recorded in the Oracle Landed Cost Management (LCM) module. The view is defined over the INL_CHARGE_LINES synonym and applies a hierarchical filter using Oracle's CONNECT BY clause. Specifically, it starts with rows where PARENT_CHARGE_LINE_ID IS NULL (the root charge lines) and traverses downward through the relationship PRIOR charge_line_id = parent_charge_line_id, returning only rows where CONNECT_BY_ISLEAF = 1. The result is a flattened set of terminal (leaf) charge lines, which represent the most granular adjustment records associated with a landed cost charge structure.
Because adjustment charge lines are frequently inserted as child records beneath a parent charge line, this view serves as the canonical source for retrieving only those lines that have no further descendants. It is used extensively in LCM reporting, landed cost reconciliation, and integration extracts where downstream systems require a single row per final adjustment rather than an intermediate node.
Underlying Base Objects
The view is defined exclusively over INL_CHARGE_LINES, referenced through a synonym in the APPS schema. INL_CHARGE_LINES is the core transactional table that stores all charge lines generated during landed cost processing, including both parent (header-level) and child (adjustment) entries. The self-referential PARENT_CHARGE_LINE_ID column establishes the hierarchical link back to CHARGE_LINE_ID, enabling the CONNECT BY traversal. No joins to other tables appear in the view definition; all attributes are projected directly from the base synonym.
Key Columns
- CHARGE_LINE_ID — Primary identifier of the charge line.
- CHARGE_LINE_NUM — User-visible line number.
- PARENT_CHARGE_LINE_ID — Self-referencing key that links a child adjustment line to its parent; null for root lines. This is the column the user searched for and the pivot of the CONNECT BY logic.
- CHARGE_LINE_TYPE_ID — Classifies the charge line type.
- LANDED_COST_FLAG — Indicates participation in landed cost calculation.
- ADJUSTMENT_NUM — Sequence number of the adjustment.
- MATCH_ID / MATCH_AMOUNT_ID — Links to receipt matching and matched amount records.
- CHARGE_AMT — Monetary value of the charge line.
- CURRENCY_CODE, CURRENCY_CONVERSION_TYPE, CURRENCY_CONVERSION_DATE, CURRENCY_CONVERSION_RATE — Currency and conversion attributes.
- PARTY_ID, PARTY_SITE_ID — Trading partner references.
- TAX_CLASSIFICATION_CODE, ASSESSABLE_VALUE, TAX_ALREADY_CALCULATED_FLAG — Tax determination attributes.
- SHIP_FROM / SHIP_TO / BILL_FROM / BILL_TO organization and location identifiers — Geographic and organizational context.
- POA_PARTY_ID, POA_PARTY_SITE_ID, POO_ORGANIZATION_ID, POO_LOCATION_ID — Point-of-acceptance and point-of-origin references.
Common Use Cases and Queries
Typical usage includes reconciling final adjustment charges, extracting tax-relevant charge lines, and feeding landed cost data into financial or analytical systems. Because the view pre-filters to leaves, queries need not repeat the CONNECT BY predicate.
Retrieve all leaf adjustment lines for a given currency:
SELECT charge_line_id, charge_line_num, parent_charge_line_id, charge_amt, currency_code FROM apps.inl_adj_charge_lines_v WHERE currency_code = 'USD';
Identify orphaned leaves or verify hierarchy depth via the parent column:
SELECT charge_line_id, parent_charge_line_id FROM apps.inl_adj_charge_lines_v WHERE parent_charge_line_id IS NOT NULL;
Aggregate assessable values by tax classification:
SELECT tax_classification_code, SUM(assessable_value) FROM apps.inl_adj_charge_lines_v GROUP BY tax_classification_code;
-
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: APPS.INL_ADJ_CHARGE_LINES_V
12.2.2
-
VIEW: INL.INL_CHARGE_LINES#
12.2.2
-
View: INL_ADJ_CHARGE_LINES_V
12.2.2
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.INL_CHARGE_LINES#
12.2.2
owner:INL, object_type:VIEW, object_name:INL_CHARGE_LINES#, status:VALID,
-
TABLE: INL.INL_CHARGE_LINES
12.2.2
owner:INL, object_type:TABLE, fnd_design_data:INL.INL_CHARGE_LINES, object_name:INL_CHARGE_LINES, status:VALID,
-
TABLE: INL.INL_CHARGE_LINES
12.1.1
owner:INL, object_type:TABLE, fnd_design_data:INL.INL_CHARGE_LINES, object_name:INL_CHARGE_LINES, status:VALID,
-
VIEW: APPS.INL_ADJ_ASSOCIATIONS_V
12.1.1
-
VIEW: APPS.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,
-
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,
-
View: 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, product: INL - Oracle Landed Cost Management , description: This view shows overall information on Charges. , implementation_dba_data: APPS.INL_CHARGE_OVERALL_V ,
-
VIEW: APPS.INL_ADJ_CHARGE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ADJ_CHARGE_LINES_V, object_name:INL_ADJ_CHARGE_LINES_V, status:VALID,
-
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: 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, product: INL - Oracle Landed Cost Management , description: This view shows overall information on Charges. , implementation_dba_data: APPS.INL_CHARGE_OVERALL_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 ,
-
APPS.INL_SHIPMENT_PVT SQL Statements
12.2.2
-
APPS.INL_SIMULATION_PVT SQL Statements
12.2.2
-
PACKAGE: APPS.INL_SHIPMENT_PVT
12.1.1
-
APPS.INL_TAX_PVT SQL Statements
12.1.1
-
APPS.INL_TAX_PVT SQL Statements
12.2.2
-
PACKAGE: APPS.INL_SHIPMENT_PVT
12.2.2
-
PACKAGE BODY: APPS.INL_SHIPMENT_PVT
12.2.2
-
APPS.INL_TAX_PVT dependencies on INL_CHARGE_LINES
12.2.2
-
APPS.INL_TAX_PVT dependencies on INL_CHARGE_LINES
12.1.1
-
APPS.INL_SHIPMENT_PVT dependencies on INL_CHARGE_LINES
12.2.2
-
APPS.INL_SHIPMENT_PVT SQL Statements
12.1.1
-
eTRM - INL Tables and Views
12.1.1
description: This table stores information on taxes associated to Shipment components. ,
-
eTRM - INL Tables and Views
12.2.2
description: This table stores information on taxes associated to Shipment components. ,
-
PACKAGE BODY: APPS.INL_SIMULATION_PVT
12.2.2
-
APPS.INL_TAX_PVT dependencies on FND_GLOBAL
12.2.2
-
PACKAGE BODY: APPS.INL_SHIPMENT_PVT
12.1.1
-
APPS.INL_TAX_PVT dependencies on INL_ASSOCIATIONS
12.1.1
-
APPS.INL_TAX_PVT dependencies on FND_GLOBAL
12.1.1
-
APPS.INL_TAX_PVT dependencies on INL_ASSOCIATIONS
12.2.2
-
APPS.INL_SHIPMENT_PVT dependencies on INL_SHIP_LINE_GROUPS
12.2.2
-
APPS.INL_INTERFACE_PVT dependencies on INL_CHARGE_LINES
12.2.2
-
APPS.INL_INTERFACE_PVT SQL Statements
12.2.2
-
APPS.INL_SHIPMENT_PVT dependencies on INL_ASSOCIATIONS
12.2.2
-
PACKAGE BODY: APPS.INL_TAX_PVT
12.1.1
-
PACKAGE BODY: APPS.INL_TAX_PVT
12.2.2
-
APPS.INL_SHIPMENT_PVT dependencies on INL_SHIP_LINES
12.2.2
-
APPS.INL_SHIPMENT_PVT dependencies on INL_LOGGING_PVT
12.1.1
-
APPS.INL_SHIPMENT_PVT dependencies on INL_LOGGING_PVT
12.2.2
-
PACKAGE BODY: APPS.INL_INTERFACE_PVT
12.2.2