Search Results receipt_line_num
Overview
The CST_LC_ADJ_INTERFACE_V view, owned by the APPS schema, is a reporting and integration construct within the BOM – Bills of Material product family in Oracle E-Business Suite 12.1.1 and 12.2.2. It presents a denormalized, human-readable projection of the landed cost adjustment interface transactions held in the base table CST_LC_ADJ_INTERFACE. Landed cost adjustments represent changes to the acquisition cost of received inventory, typically caused by freight, duty, insurance, or other charges applied after the original receipt. The base interface table stores these adjustments in a raw form keyed by internal identifiers, while the view resolves those identifiers against receipt, purchasing, inventory, and organization tables to expose descriptive attributes such as PO number, line number, receipt number, item description, and organization code.
Because the view exposes the descriptive PO_LINE_NUM column alongside the surrogate PO_LINE_ID, it is frequently used when analysts search for purchasing line references in the context of landed cost processing. The view is read-only and is intended for query and reporting rather than for inserting adjustment records.
Underlying Base Objects
The view is defined over a join of the landed cost interface table and a set of reference objects. The documented base objects are:
CST_LC_ADJ_INTERFACE(synonym) — the driving table holding the adjustment transactions.RCV_TRANSACTIONS,RCV_SHIPMENT_HEADERS,RCV_SHIPMENT_LINES(synonyms) — receiving tables that supply receipt, shipment, and PO reference identifiers.PO_HEADERS_ALL,PO_LINES_ALL(synonyms) — purchasing tables supplying PO number and line number.MTL_SYSTEM_ITEMS_VL(view) — item description, joined by inventory item and organization.MTL_PARAMETERS(synonym) andCST_ORGANIZATION_DEFINITIONS(view) — inventory organization code and name.MFG_LOOKUPS(view) — supplies the decoded meanings for the process phase and process status columns.
All joins are inner joins on the corresponding identifier columns, so an adjustment transaction is only visible when its related receipt, PO, item, and organization rows all exist and match.
Key Columns
The view returns both the raw interface columns and the joined descriptive columns. Important columns include:
TRANSACTION_ID,RCV_TRANSACTION_ID— interface and receiving transaction identifiers.ORGANIZATION_ID,ORGANIZATION_CODE,ORGANIZATION_NAME— inventory organization identifiers and descriptions.INVENTORY_ITEM_ID,ITEM_DESCRIPTION— item identifier and description.PRIOR_LANDED_COST,NEW_LANDED_COST— the landed cost before and after the adjustment.PROCESS_STATUS,PROCESS_STATUS_MEANING,PROCESS_PHASE,PROCESS_PHASE_MEANING— the raw lookup codes and their decoded meanings fromMFG_LOOKUPS.PO_HEADER_ID,PO_NUMBER(SEGMENT1),PO_LINE_ID,PO_LINE_NUM— purchasing header and line references, wherePO_LINE_NUMcorresponds toPOL.LINE_NUM.RECEIPT_NUM,RECEIPT_LINE_NUM,SHIPMENT_HEADER_ID,SHIPMENT_LINE_ID— receiving and shipment references.GROUP_ID,REQUEST_ID,PROGRAM_ID,CREATION_DATE,CREATED_BY, and audit columns — concurrency and audit information.
Common Use Cases and Queries
Typical scenarios include auditing landed cost adjustments by PO line, reconciling prior versus new landed cost by receipt, and monitoring processing phase and status for pending or failed interface records. A representative query locating adjustments for a specific PO line is shown below.
SELECT organization_code,
po_number,
po_line_num,
receipt_num,
item_description,
prior_landed_cost,
new_landed_cost,
process_status_meaning,
process_phase_meaning
FROM apps.cst_lc_adj_interface_v
WHERE po_line_num = :p_line_num
AND organization_code = :p_org_code
ORDER BY transaction_id;
To review adjustments awaiting or pending processing, filter on the decoded status meaning:
SELECT transaction_id, po_number, po_line_num, receipt_num,
process_status_meaning, creation_date
FROM apps.cst_lc_adj_interface_v
WHERE process_status_meaning <> 'Processed'
ORDER BY creation_date DESC;
Because the view joins multiple receiving, purchasing, and inventory objects, queries should be constrained by organization, PO, or date wherever possible to limit the joined result set.
-
View: CST_LC_ADJ_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_LC_ADJ_INTERFACE_V, object_name:CST_LC_ADJ_INTERFACE_V, status:VALID, product: BOM - Bills of Material , description: View on the landed cost adjustment interface transactions , implementation_dba_data: APPS.CST_LC_ADJ_INTERFACE_V ,
-
View: CST_LC_ADJ_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_LC_ADJ_INTERFACE_V, object_name:CST_LC_ADJ_INTERFACE_V, status:VALID, product: BOM - Bills of Material , description: View on the landed cost adjustment transactions' interface table. Selects information related to the landed cost adjustment transaction along with details of the inventory organization, purchase order document, shipment and item involved. , implementation_dba_data: APPS.CST_LC_ADJ_INTERFACE_V ,
-
VIEW: APPS.CST_LC_ADJ_INTERFACE_V
12.1.1
-
VIEW: APPS.CST_LC_ADJ_INTERFACE_V
12.2.2
-
VIEW: APPS.CST_LC_ADJ_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_LC_ADJ_INTERFACE_V, object_name:CST_LC_ADJ_INTERFACE_V, status:VALID,
-
VIEW: APPS.CST_LC_ADJ_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_LC_ADJ_INTERFACE_V, object_name:CST_LC_ADJ_INTERFACE_V, status:VALID,
-
VIEW: APPS.CST_RCV_RAE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_RCV_RAE_V, object_name:CST_RCV_RAE_V, status:VALID,
-
VIEW: APPS.CST_RCV_RAE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_RCV_RAE_V, object_name:CST_RCV_RAE_V, status:VALID,
-
View: CST_RCV_RAE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_RCV_RAE_V, object_name:CST_RCV_RAE_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_RCV_RAE_V ,
-
View: CST_RCV_RAE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_RCV_RAE_V, object_name:CST_RCV_RAE_V, status:VALID, product: BOM - Bills of Material , description: View on the Receiving Accounting events table. Selects information related to the receiving accounting event along with details of the receiving transaction, inventory organization, purchase order document, shipment, vendor etc , implementation_dba_data: APPS.CST_RCV_RAE_V ,
-
APPS.GMD_SAMPLES_GRP dependencies on RCV_SHIPMENT_LINES
12.1.1
-
APPS.GMD_SAMPLES_GRP dependencies on RCV_SHIPMENT_LINES
12.2.2
-
APPS.GMD_SAMPLES_GRP dependencies on RCV_SHIPMENT_HEADERS
12.2.2
-
APPS.GMD_SAMPLES_GRP dependencies on RCV_SHIPMENT_HEADERS
12.1.1
-
APPS.GMD_SAMPLES_GRP SQL Statements
12.1.1
-
APPS.GMD_SAMPLES_GRP SQL Statements
12.2.2
-
PACKAGE BODY: APPS.GMD_SAMPLES_GRP
12.1.1
-
PACKAGE BODY: APPS.GMD_SAMPLES_GRP
12.2.2
-
eTRM - BOM Tables and Views
12.2.2
description: Table to map wip transactions to their corresponding event types. ,
-
eTRM - BOM Tables and Views
12.1.1
description: Table to map wip transactions to their corresponding event types. ,