Search Results process_status_meaning
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: APPS.WIP_SCHEDULING_ERRORS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_SCHEDULING_ERRORS_V, object_name:WIP_SCHEDULING_ERRORS_V, status:VALID,
-
View: WIP_MOVE_TXN_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_MOVE_TXN_INTERFACE_V, object_name:WIP_MOVE_TXN_INTERFACE_V, status:VALID, product: WIP - Work in Process , description: Foreign-key data WIP_MOVE_TXN_INTERFACE , implementation_dba_data: APPS.WIP_MOVE_TXN_INTERFACE_V ,
-
View: EAM_METER_READINGS_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_METER_READINGS_INTERFACE_V, object_name:EAM_METER_READINGS_INTERFACE_V, status:VALID, product: EAM - Enterprise Asset Management , description: View used to get meter and meter reading interface details. , implementation_dba_data: APPS.EAM_METER_READINGS_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.WIP_SCHEDULING_ERRORS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_SCHEDULING_ERRORS_V, object_name:WIP_SCHEDULING_ERRORS_V, status:VALID,
-
View: EAM_METER_READINGS_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_METER_READINGS_INTERFACE_V, object_name:EAM_METER_READINGS_INTERFACE_V, status:VALID, product: EAM - Enterprise Asset Management , description: View used to get meter and meter reading interface details. , implementation_dba_data: APPS.EAM_METER_READINGS_INTERFACE_V ,
-
VIEW: APPS.CSP_PLANNING_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PLANNING_HEADERS_V, object_name:CSP_PLANNING_HEADERS_V, status:VALID,
-
VIEW: APPS.CSP_PLANNING_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PLANNING_HEADERS_V, object_name:CSP_PLANNING_HEADERS_V, status:VALID,
-
View: WIP_MOVE_TXN_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_MOVE_TXN_INTERFACE_V, object_name:WIP_MOVE_TXN_INTERFACE_V, status:VALID, product: WIP - Work in Process , description: Foreign-key data WIP_MOVE_TXN_INTERFACE , implementation_dba_data: APPS.WIP_MOVE_TXN_INTERFACE_V ,
-
VIEW: APPS.CST_LC_ADJ_INTERFACE_V
12.2.2
-
VIEW: APPS.CST_LC_ADJ_INTERFACE_V
12.1.1
-
VIEW: APPS.EAM_METER_READINGS_INTERFACE_V
12.2.2
-
VIEW: APPS.EAM_METER_READINGS_INTERFACE_V
12.1.1
-
VIEW: APPS.WIP_MOVE_TXN_INTERFACE_V
12.1.1
-
VIEW: APPS.WIP_MOVE_TXN_INTERFACE_V
12.2.2
-
View: CSP_PLANNING_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PLANNING_HEADERS_V, object_name:CSP_PLANNING_HEADERS_V, status:VALID, product: CSP - Spares Management , implementation_dba_data: APPS.CSP_PLANNING_HEADERS_V ,
-
View: CSP_PLANNING_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PLANNING_HEADERS_V, object_name:CSP_PLANNING_HEADERS_V, status:VALID, product: CSP - Spares Management , implementation_dba_data: APPS.CSP_PLANNING_HEADERS_V ,
-
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: WIP_COST_TXN_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_COST_TXN_INTERFACE_V, object_name:WIP_COST_TXN_INTERFACE_V, status:VALID, product: WIP - Work in Process , description: Foreign-key data for WIP_COST_TXN_INTERFACE , implementation_dba_data: APPS.WIP_COST_TXN_INTERFACE_V ,
-
View: WIP_JOB_SCHEDULE_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_JOB_SCHEDULE_INTERFACE_V, object_name:WIP_JOB_SCHEDULE_INTERFACE_V, status:VALID, product: WIP - Work in Process , description: Foreign-key data for WIP_JOB_SCHEDULE_INTERFACE , implementation_dba_data: APPS.WIP_JOB_SCHEDULE_INTERFACE_V ,
-
View: WIP_COST_TXN_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_COST_TXN_INTERFACE_V, object_name:WIP_COST_TXN_INTERFACE_V, status:VALID, product: WIP - Work in Process , description: Foreign-key data for WIP_COST_TXN_INTERFACE , implementation_dba_data: APPS.WIP_COST_TXN_INTERFACE_V ,
-
View: WIP_JOB_SCHEDULE_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_JOB_SCHEDULE_INTERFACE_V, object_name:WIP_JOB_SCHEDULE_INTERFACE_V, status:VALID, product: WIP - Work in Process , description: Foreign-key data for WIP_JOB_SCHEDULE_INTERFACE , implementation_dba_data: APPS.WIP_JOB_SCHEDULE_INTERFACE_V ,
-
View: WIP_SCHEDULING_ERRORS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_SCHEDULING_ERRORS_V, object_name:WIP_SCHEDULING_ERRORS_V, status:VALID, product: WIP - Work in Process , description: Errors encountered while processing Open Scheduling Interface requests , implementation_dba_data: APPS.WIP_SCHEDULING_ERRORS_V ,
-
View: WIP_SCHEDULING_ERRORS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_SCHEDULING_ERRORS_V, object_name:WIP_SCHEDULING_ERRORS_V, status:VALID, product: WIP - Work in Process , description: Errors encountered while processing Open Scheduling Interface requests , implementation_dba_data: APPS.WIP_SCHEDULING_ERRORS_V ,
-
VIEW: APPS.EAM_METER_READINGS_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_METER_READINGS_INTERFACE_V, object_name:EAM_METER_READINGS_INTERFACE_V, status:VALID,
-
VIEW: APPS.EAM_METER_READINGS_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_METER_READINGS_INTERFACE_V, object_name:EAM_METER_READINGS_INTERFACE_V, status:VALID,
-
VIEW: APPS.WIP_JOB_SCHEDULE_INTERFACE_V
12.1.1
-
VIEW: APPS.WIP_JOB_SCHEDULE_INTERFACE_V
12.2.2
-
VIEW: APPS.WIP_COST_TXN_INTERFACE_V
12.2.2
-
VIEW: APPS.WIP_COST_TXN_INTERFACE_V
12.1.1
-
VIEW: APPS.WIP_MOVE_TXN_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_MOVE_TXN_INTERFACE_V, object_name:WIP_MOVE_TXN_INTERFACE_V, status:VALID,
-
VIEW: APPS.WIP_MOVE_TXN_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_MOVE_TXN_INTERFACE_V, object_name:WIP_MOVE_TXN_INTERFACE_V, status:VALID,
-
VIEW: APPS.WIP_JOB_SCHEDULE_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_JOB_SCHEDULE_INTERFACE_V, object_name:WIP_JOB_SCHEDULE_INTERFACE_V, status:VALID,
-
VIEW: APPS.WIP_JOB_SCHEDULE_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_JOB_SCHEDULE_INTERFACE_V, object_name:WIP_JOB_SCHEDULE_INTERFACE_V, status:VALID,
-
VIEW: APPS.WIP_COST_TXN_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_COST_TXN_INTERFACE_V, object_name:WIP_COST_TXN_INTERFACE_V, status:VALID,
-
VIEW: APPS.WIP_COST_TXN_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_COST_TXN_INTERFACE_V, object_name:WIP_COST_TXN_INTERFACE_V, status:VALID,
-
VIEW: APPS.CSP_PLANNING_HEADERS_V
12.2.2
-
VIEW: APPS.CSP_PLANNING_HEADERS_V
12.1.1
-
APPS.WIP_DIAG_DATA_COLL SQL Statements
12.2.2
-
APPS.WIP_DIAG_DATA_COLL SQL Statements
12.1.1
-
PACKAGE BODY: APPS.WIP_DIAG_DATA_COLL
12.1.1
-
PACKAGE BODY: APPS.WIP_DIAG_DATA_COLL
12.2.2
-
eTRM - WIP Tables and Views
12.1.1
-
eTRM - WIP Tables and Views
12.2.2
-
eTRM - EAM Tables and Views
12.1.1
description: Table for storing workflow item type and keys corresponding to a work order ,
-
eTRM - CSP Tables and Views
12.1.1
description: Summarized usage history information ,
-
eTRM - CSP Tables and Views
12.2.2
description: Summarized usage history information ,
-
eTRM - EAM Tables and Views
12.2.2
description: Table for storing workflow item type and keys corresponding to a work order ,