Search Results inl_adj_charge_lines_v
Overview
The INL_ADJ_CHARGE_LINES_V view is a reporting and integration object within Oracle Landed Cost Management (product code INL), an E-Business Suite module used to capture, allocate, and settle landed costs associated with inbound shipments and receipts. The view is owned by the APPS schema and carries a VALID status in both EBS 12.1.1 and 12.2.2. Its documented purpose is to present adjusted information on charge lines, exposing the terminal nodes of the parent-child hierarchy maintained on landed cost charge lines.
Landed cost charge lines may be organized into hierarchical structures, where a parent charge line is subdivided into child lines that represent individual allocations, adjustments, or detail breakdowns. The view applies a hierarchical (connect-by) filter to return only the leaf-level records, providing a flattened, reporting-friendly projection of the charge line data. This makes it suitable for cost analysis, reconciliation, and downstream integration where the grain of interest is the final, most granular charge line rather than intermediate parent nodes.
Underlying Base Objects
The view is defined over a single base object, INL_CHARGE_LINES, referenced through a synonym. The defining query selects the listed columns from INL_CHARGE_LINES (aliased CL1) and restricts the result set using an Oracle hierarchical query:
START WITH PARENT_CHARGE_LINE_ID IS NULLestablishes the root charge lines (those with no parent) as the starting point of the hierarchy traversal.CONNECT BY PRIOR CHARGE_LINE_ID = PARENT_CHARGE_LINE_IDwalks from each parent charge line to its children.WHERE CONNECT_BY_ISLEAF = 1retains only the leaf rows — charge lines that have no children of their own.
Because the view is a read-only projection over INL_CHARGE_LINES, it does not modify data. All insert, update, and delete operations must target the base table directly; the view is intended solely for query, reporting, and integration consumption.
Key Columns
The view exposes the full documented column set of INL_CHARGE_LINES. The most significant columns include:
CHARGE_LINE_IDandCHARGE_LINE_NUM— the surrogate key and user-facing number identifying the charge line.PARENT_CHARGE_LINE_ID— the self-referencing key that establishes the hierarchy. Leaf rows returned by the view may still retain a non-null parent value.CHARGE_LINE_TYPE_IDandLANDED_COST_FLAG— classify the line and indicate whether it participates in landed cost processing.ADJUSTMENT_NUM,MATCH_ID, andMATCH_AMOUNT_ID— tie the charge line to adjustment and matching activity, which is central to the "adjusted" semantics of the view.CHARGE_AMTandCURRENCY_CODE, together withCURRENCY_CONVERSION_TYPE,CURRENCY_CONVERSION_DATE, andCURRENCY_CONVERSION_RATE— provide the monetary value and the conversion attributes required for multi-currency reporting.PARTY_ID,PARTY_SITE_ID, and the ship-from, ship-to, bill-from, bill-to, POA, and POO identifiers — supply the trading-partner and location context used in tax and cost determination.- Tax-related attributes such as
TAX_CLASSIFICATION_CODE,ASSESSABLE_VALUE,TAX_ALREADY_CALCULATED_FLAG,TRX_BUSINESS_CATEGORY,INTENDED_USE,PRODUCT_FISCAL_CLASS,PRODUCT_CATEGORY,PRODUCT_TYPE, andUSER_DEF_FISCAL_CLASS— support tax calculation and fiscal classification.
Common Use Cases and Queries
Typical uses include reconciling adjusted landed cost charge lines, reporting the final allocated cost per receipt, and feeding downstream integrations that expect a flattened leaf-level charge line set.
To list all leaf charge lines with their amounts and currencies:
SELECT charge_line_id, charge_line_num, charge_amt, currency_code FROM inl_adj_charge_lines_v;
To retrieve adjusted lines tied to a specific adjustment number:
SELECT charge_line_id, adjustment_num, charge_amt FROM inl_adj_charge_lines_v WHERE adjustment_num = :adjustment_num;
To join to the base table for parent context, note that INL_ADJ_CHARGE_LINES_V is defined directly over INL_CHARGE_LINES; parent rows are filtered out by the CONNECT_BY_ISLEAF = 1 predicate, so use the base table when ancestor information is required.
-
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_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: APPS.INL_ADJ_ASSOCIATIONS_V
12.1.1
-
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: APPS.INL_CHARGE_OVERALL_V
12.1.1
-
VIEW: APPS.INL_CHARGE_OVERALL_V
12.2.2
-
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 ,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.INL_CHARGE_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:INL_CHARGE_LINES, status:VALID,
-
SYNONYM: APPS.INL_CHARGE_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:INL_CHARGE_LINES, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE: APPS.INL_TAX_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:INL_TAX_PVT, status:VALID,
-
VIEW: APPS.INL_EBTAX_LINES_V
12.2.2
-
VIEW: APPS.INL_EBTAX_LINES_V
12.1.1
-
PACKAGE BODY: APPS.INL_LANDEDCOST_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:INL_LANDEDCOST_PVT, status:VALID,
-
PACKAGE BODY: APPS.INL_SHIPMENT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:INL_SHIPMENT_PVT, status:VALID,
-
APPS.INL_SHIPMENT_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.INL_INTERFACE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:INL_INTERFACE_PVT, 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 ,
-
PACKAGE BODY: APPS.INL_SHIPMENT_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:INL_SHIPMENT_PVT, 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: 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: 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 ,
-
APPS.INL_LANDEDCOST_PVT SQL Statements
12.1.1
-
APPS.INL_SHIPMENT_PVT SQL Statements
12.2.2
-
eTRM - INL Tables and Views
12.1.1
description: This table stores information on taxes associated to Shipment components. ,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
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: 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,
-
PACKAGE: APPS.INL_TAX_PVT
12.2.2
-
eTRM - INL Tables and Views
12.2.2
description: This table stores information on taxes associated to Shipment components. ,
-
APPS.INL_TAX_PVT dependencies on INL_ADJ_CHARGE_LINES_V
12.2.2
-
APPS.INL_SHIPMENT_PVT dependencies on INL_ADJ_CHARGE_LINES_V
12.1.1
-
APPS.INL_LANDEDCOST_PVT dependencies on INL_ADJ_CHARGE_LINES_V
12.1.1
-
APPS.INL_INTERFACE_PVT dependencies on INL_ADJ_CHARGE_LINES_V
12.2.2
-
APPS.INL_SHIPMENT_PVT dependencies on INL_ADJ_CHARGE_LINES_V
12.2.2
-
PACKAGE BODY: APPS.INL_LANDEDCOST_PVT
12.1.1
-
PACKAGE BODY: APPS.INL_SHIPMENT_PVT
12.1.1
-
PACKAGE BODY: APPS.INL_SHIPMENT_PVT
12.2.2
-
APPS.INL_SHIPMENT_PVT dependencies on INL_ADJ_ASSOCIATIONS_V
12.2.2
-
APPS.INL_TAX_PVT dependencies on INL_ASSOCIATIONS
12.2.2
-
APPS.INL_SHIPMENT_PVT dependencies on INL_CHARGE_LINE_TYPES_VL
12.1.1
-
APPS.INL_SHIPMENT_PVT dependencies on INL_ASSOCIATIONS
12.2.2
-
APPS.INL_INTERFACE_PVT SQL Statements
12.2.2
-
APPS.INL_INTERFACE_PVT dependencies on INL_SHIP_LINES_ALL_S
12.2.2