Search Results receiving_txn_type
Overview
APPS.CSTBV_RCV_ACQ_COSTS is a Business Intelligence System (BIS) view in Oracle E-Business Suite that presents a periodic acquisition cost summary for receiving transactions. The view aggregates acquisition cost data for each receipt, organized by cost group, cost type, and PAC (Periodic Average Cost) period. It is documented in Oracle's ETRM metadata with the FND Design Data reference BOM.CSTBV_RCV_ACQ_COSTS, indicating that the object originates from the Bills of Material product family and is exposed in the APPS schema as a read-only reporting interface.
Because it is a view rather than a base table, it exists purely for reporting and integration purposes. It provides a denormalized, business-friendly representation of acquisition cost activity that would otherwise require joins across multiple cost management and receiving tables. The view is marked VALID and carries an Oracle Proprietary, Confidential Information designation, consistent with other ETRM-documented dictionary objects.
Underlying Base Objects
According to the documented dependency information, CSTBV_RCV_ACQ_COSTS is defined over the following base objects, all referenced through APPS synonyms:
- CST_RCV_ACQ_COSTS — the core acquisition cost table storing periodic cost details per receipt transaction.
- CST_COST_GROUPS — supplies cost group identifiers and names used to segment acquisition costs.
- CST_COST_TYPES — supplies the costing method context (for example, standard or average) associated with the acquisition cost records.
- CST_PAC_PERIODS — defines the PAC period to which each periodic acquisition cost row belongs.
- RCV_TRANSACTIONS — the receiving transaction table providing receipt type, transaction date, and receipt-level attributes.
The view is not referenced by any other database object, confirming its role as a terminal reporting layer. The joins between CST_RCV_ACQ_COSTS and RCV_TRANSACTIONS supply the RECEIVING_TXN_TYPE and RECEIVING_TXN_DATE columns that users frequently filter on.
Key Columns
The view exposes identifiers, quantities, amounts, and descriptive attributes. Important columns include:
- RCV_TRANSACTION_ID and PO_LINE_LOCATION_ID — link the acquisition cost row to the underlying receipt and purchase order shipment.
- HEADER_ID — correlates the record to the owning cost header or receipt grouping.
- COST_GROUP_ID / COST_GROUP_NAME and COST_TYPE_ID / COST_TYPE_NAME — identify the cost group and cost type context.
- PAC_PERIOD_ID / PAC_PERIOD_NAME — identify the periodic average cost period for which the summary is calculated.
- NET_QUANTITY_RECEIVED, TOTAL_QUANTITY_INVOICED, QUANTITY_AT_PO_PRICE, and COSTED_QUANTITY — quantity measures for reconciliation between receipts, invoices, and costing.
- TOTAL_INVOICE_AMOUNT, AMOUNT_AT_PO_PRICE, TOTAL_AMOUNT, and ACQUISITION_COST — monetary measures representing invoice value, PO price value, and derived acquisition cost.
- PO_UNIT_PRICE, PRIMARY_UOM, and REC_EXCHG_RATE — unit price, unit of measure, and receipt exchange rate used in cost derivation.
- RECEIVING_TXN_TYPE and RECEIVING_TXN_DATE — receipt classification and transaction date, commonly used filters in reporting.
Common Use Cases and Queries
This view is typically used to reconcile acquisition costs against receiving and invoicing activity, analyze cost variances by cost group or cost type, and support period-end close reporting for periodic average costing. Because the user search term was "receiving_txn_type," a typical query filters on that column to isolate specific transaction classes such as RECEIVE or RETURN TO VENDOR:
- Receipt-level acquisition cost detail: SELECT RCV_TRANSACTION_ID, RECEIVING_TXN_TYPE, RECEIVING_TXN_DATE, NET_QUANTITY_RECEIVED, ACQUISITION_COST FROM APPS.CSTBV_RCV_ACQ_COSTS WHERE RECEIVING_TXN_TYPE = 'RECEIVE';
- Period summary by cost group: SELECT COST_GROUP_NAME, COST_TYPE_NAME, PAC_PERIOD_NAME, SUM(ACQUISITION_COST) ACQ_COST FROM APPS.CSTBV_RCV_ACQ_COSTS GROUP BY COST_GROUP_NAME, COST_TYPE_NAME, PAC_PERIOD_NAME ORDER BY PAC_PERIOD_NAME;
- Invoice versus PO price variance: SELECT RCV_TRANSACTION_ID, TOTAL_INVOICE_AMOUNT, AMOUNT_AT_PO_PRICE, (TOTAL_INVOICE_AMOUNT - AMOUNT_AT_PO_PRICE) VARIANCE FROM APPS.CSTBV_RCV_ACQ_COSTS WHERE PAC_PERIOD_NAME = :period;
Because the view exposes COST_GROUP_NAME, COST_TYPE_NAME, and PAC_PERIOD_NAME as VARCHAR2 descriptive columns, it is well suited to ad-hoc reporting tools, BI Publisher data models, and custom concurrent programs that require acquisition cost summaries without writing complex multi-table joins.
-
VIEW: APPS.CSTBV_RCV_ACQ_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_RCV_ACQ_COSTS, object_name:CSTBV_RCV_ACQ_COSTS, status:VALID,
-
VIEW: APPS.CSTBV_RCV_ACQ_COSTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_RCV_ACQ_COSTS, object_name:CSTBV_RCV_ACQ_COSTS, status:VALID,
-
VIEW: APPS.CSTBV_RCV_ACQ_COST_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_RCV_ACQ_COST_DETAILS, object_name:CSTBV_RCV_ACQ_COST_DETAILS, status:VALID,
-
VIEW: APPS.CSTFV_RCV_ACQ_COSTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_RCV_ACQ_COSTS, object_name:CSTFV_RCV_ACQ_COSTS, status:VALID,
-
VIEW: APPS.CSTFV_RCV_ACQ_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_RCV_ACQ_COSTS, object_name:CSTFV_RCV_ACQ_COSTS, status:VALID,
-
VIEW: APPS.CSTFV_RCV_ACQ_COST_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_RCV_ACQ_COST_DETAILS, object_name:CSTFV_RCV_ACQ_COST_DETAILS, status:VALID,
-
VIEW: APPS.CSTBV_RCV_ACQ_COST_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_RCV_ACQ_COST_DETAILS, object_name:CSTBV_RCV_ACQ_COST_DETAILS, status:VALID,
-
VIEW: APPS.CSTFV_RCV_ACQ_COST_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_RCV_ACQ_COST_DETAILS, object_name:CSTFV_RCV_ACQ_COST_DETAILS, status:VALID,
-
View: CSTBV_RCV_ACQ_COSTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_RCV_ACQ_COSTS, object_name:CSTBV_RCV_ACQ_COSTS, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CSTBV_RCV_ACQ_COSTS ,
-
View: CSTBV_RCV_ACQ_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_RCV_ACQ_COSTS, object_name:CSTBV_RCV_ACQ_COSTS, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CSTBV_RCV_ACQ_COSTS ,
-
View: CSTFV_RCV_ACQ_COSTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_RCV_ACQ_COSTS, object_name:CSTFV_RCV_ACQ_COSTS, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CSTFV_RCV_ACQ_COSTS ,
-
View: CSTBV_RCV_ACQ_COST_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_RCV_ACQ_COST_DETAILS, object_name:CSTBV_RCV_ACQ_COST_DETAILS, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CSTBV_RCV_ACQ_COST_DETAILS ,
-
View: CSTFV_RCV_ACQ_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_RCV_ACQ_COSTS, object_name:CSTFV_RCV_ACQ_COSTS, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CSTFV_RCV_ACQ_COSTS ,
-
View: CSTBV_RCV_ACQ_COST_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_RCV_ACQ_COST_DETAILS, object_name:CSTBV_RCV_ACQ_COST_DETAILS, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CSTBV_RCV_ACQ_COST_DETAILS ,
-
View: CSTFV_RCV_ACQ_COST_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_RCV_ACQ_COST_DETAILS, object_name:CSTFV_RCV_ACQ_COST_DETAILS, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CSTFV_RCV_ACQ_COST_DETAILS ,
-
View: CSTFV_RCV_ACQ_COST_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_RCV_ACQ_COST_DETAILS, object_name:CSTFV_RCV_ACQ_COST_DETAILS, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CSTFV_RCV_ACQ_COST_DETAILS ,
-
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. ,