CAC Receiving Activity Summary – Oracle EBS SQL Report
Oracle E-Business Suite SQL report from the Enginatics Library powered by Blitz Report™.
Overview
Especially for companies who do not use separate inspection receipt processes, this report nets the initial purchase order receipt into receiving against the delivery into stock and WIP outside processing (OSP), for the entered transaction date range. By comparing the Purchasing Receipt transactions with the Purchasing Delivery transactions (for the purchasing receipts, material deliveries and WIP OSP deliveries). Enter the date range you wish to compare, typically a monthly date range. Differences may be due to the initial receipt occurring in the prior month, not running Create Accounting in the current month (as this report uses the Subledger Accounting rules to report your Receiving Valuation Activity), the goods never delivered into stock or OSP or perhaps the delivery into stock or into WIP OSP was not processed by Create Accounting.
Parameters:
Transaction Date From: enter the starting transaction date (mandatory). Defaults to the current period starting date. Transaction Date To: enter the ending transaction date (mandatory). Defaults to the current period ending date. Organization Code: enter the specific inventory organization(s) you wish to report (optional). Defaults to your session’s organization code. Operating Unit: enter the specific operating unit(s) you wish to report (optional). Ledger: enter the specific ledger(s) you wish to report (optional).
/* +=============================================================================+ – | Copyright 2010 - 2024 Douglas Volz Consulting, Inc. – | All rights reserved. – | Permission to use this code is granted provided the original author is – | acknowledged. No warranties, express or otherwise is included in this permission. | – +=============================================================================+ – | – | Original Author: Douglas Volz (doug@volzconsulting.com) – | – | Program Name: xxx_rcv_activity_rept.sql – | – | Version Modified on Modified by Description – | ======= =========== ============== ========================================= – | 1.0 6 Jan 2010 Douglas Volz Initial Coding – | 1.1 05 Apr 2010 Douglas Volz Added PO number, PO Distribution id to query – | 1.2 25 Oct 2017 Douglas Volz Now use the receiving parameter Receiving ccid – | and added transaction source. – | 1.3 13 Mar 2018 Douglas Volz Added Ledger parameter – | 1.4 08 Jul 2022 Douglas Volz Multi-language tables for item master. – | 1.5 24 Jun 2024 Douglas Volz Remove tabs, reinstall parameters and inventory org access controls. – +=============================================================================+*/
Report Parameters
Transaction Date From, Transaction Date To, Organization Code, Operating Unit, Ledger
Oracle EBS Tables Used
gl_code_combinations_kfv, fnd_common_lookups, wip_entities, rcv_receiving_sub_ledger, rcv_transactions, po_headers_all, po_lines_all, rcv_shipment_lines, po_distributions_all, fnd_lookup_values, mtl_system_items_vl, org_acct_periods, mtl_parameters, hr_organization_information, hr_all_organization_units_vl, gl_ledgers, xla_distribution_links, xla_ae_headers, xla_ae_lines, org_access_view, rcv_parameters, wip_transaction_accounts, wip_transactions, wip_accounting_classes, wip_discrete_jobs, mfg_lookups, mtl_transaction_accounts, mtl_material_transactions, mtl_transaction_types
Report Categories
Running This SQL Without Blitz Report
Some Oracle EBS SQL reports in this library require functions from the utility package xxen_util. Install it before running the SQL directly against your Oracle EBS database.
Download & Import Options
| Resource | Link |
|---|---|
| Excel Example Output | CAC Receiving Activity Summary 26-Jun-2023 170719.xlsx |
| Blitz Report™ XML Import | CAC_Receiving_Activity_Summary.xml |
| Full SQL on Enginatics | www.enginatics.com/reports/cac-receiving-activity-summary/ |
Case Study & Technical Analysis: CAC Receiving Activity Summary
Executive Summary
The CAC Receiving Activity Summary report analyzes the operational flow within the Receiving Dock. It compares “Receipts” (Goods arriving) against “Deliveries” (Goods moving to Stock or WIP). The net difference represents goods sitting in “Receiving Inspection”—physically on the dock but not yet available for use.
Business Challenge
- Bottlenecks: “We received the raw materials 3 days ago, why can’t production use them?” (Answer: They haven’t been Delivered/Inspected).
- Period-End Cutoff: Goods received at 11 PM on the last day of the month might not get delivered until the 1st of the next month. This creates a valid balance in the Receiving Inspection account.
- Orphaned Receipts: Items that were received but forgotten and never delivered.
Solution
This report performs a “Netting” logic.
- Inflow: Sum of
RECEIVEtransactions. - Outflow: Sum of
DELIVERandRETURN TO VENDORtransactions. - Balance:
Receive - Deliver - Return= Remaining in Receiving.
Technical Architecture
- Tables:
rcv_transactions,rcv_shipment_lines. - Logic: It matches transactions by
shipment_line_idto ensure the flow is traced correctly for the specific shipment.
Parameters
- Transaction Date From/To: (Mandatory) The period to analyze.
Performance
- Fast: Queries the operational
rcv_transactionstable which is indexed by date.
FAQ
Q: Does this match the GL? A: It should. The “Remaining in Receiving” value should equal the balance of the Receiving Inspection account for that period.
Useful Links
- Blitz Report™ – World’s Fastest Oracle EBS Reporting Tool
- Oracle Discoverer Replacement – Import Worksheets into Blitz Report™
- Oracle EBS Reporting Toolkits by Blitz Report™
- Blitz Report™ FAQ & Community Q&A
- Supply Chain Hub by Blitz Report™
- Blitz Report™ Customer Case Studies
- Oracle EBS Reporting Blog
- Oracle EBS Reporting Resource Centre
© 2026 Enginatics