AR_CASH_RECEIPTS_ALL
Product: ARtransactionBU-striped (ORG_ID)Cash receipts — one row per receipt entered, with receipt number, date, amount, status, and the paying customer account; the cash side that payment schedules apply against
STATUS values are page-enumerated (APP/UNAPP/UNID/NSF/REV/STOP) but carry no named lookup type — shipped undecoded. The paying customer is PAY_FROM_CUSTOMER — an account id without the _ID suffix. TYPE splits CASH from MISC receipts (the dictionary itself says filter on MISC, not CASH). There is NO GL_DATE here — receipt accounting dates live in the receipt-history table (not cataloged).
What the badges mean
- Product: EGP
- Product: the Oracle product family that owns the object — the short code Oracle's Tables and Views documentation lists as the object owner. Fusion is SaaS, so this isn't a database schema; there's no SQL path to the tables at all (see the quirks guide).
- master
- Data class: what the table holds — master data, transaction documents, control/configuration, interface/staging, or a documented view.
- BU-striped (ORG_ID)
- Rows are scoped to a business unit. The column is still named
ORG_ID, but in Fusion it means business unit, not the EBS operating unit — treat any migrated “operating unit” filter as suspect (see the quirks guide). - Per inventory org
- Rows are scoped to an inventory organization via
ORGANIZATION_ID— always pair it withINVENTORY_ITEM_IDon item-level joins (see the quirks guide). - Set / ledger / named-BU striped
- Some tables stripe by a named column instead of
ORG_ID: reference data set (SET_ID— see the quirks guide), ledger (LEDGER_IDon the GL journal tables), or a named business-unit column (PRC_BU_ID/REQ_BU_IDin procurement). The table page’s partition line names the column, and the generated SQL anchors on it — never treat these tables as unpartitioned. - Language-striped
- The table carries a
LANGUAGEcolumn (a _TL translation table or FND_LOOKUP_VALUES) — one row per language. Filter to oneLANGUAGEor a join multiplies rows. - Date-effective
- This is an
_Ftable — one row per entity per effectivity window, withEFFECTIVE_START_DATEandEFFECTIVE_END_DATEpart of the key. Join without a window filter and every fact multiplies by history (see the quirks guide). - View
- This is a documented convenience view, not a physical table. Extract through the BICC data store that fronts its base objects instead of assuming the view lands as-is.
Structural facts — how the table is partitioned, not a trap by itself
Join & extract hazards — verify before you rely on this
Extract access
The delivered surfaces that reach this table — the BICC extract data store (PVO) for bulk extraction and the OTBI subject areas for real-time queries. There is no SQL path to the SaaS database.
- FscmTopModelAM.FinExtractAM.ArBiccExtractAM.ReceiptHeaderExtractPVOOTBI: Receivables - Receipts Details Real Time
Receipt Header data store — keyed on ArCashReceiptCashReceiptId.
Oracle data-store documentation (opens in new tab)
Fields
15 fields · 1 key
15 fields.
| # | Field | Description | Type | Flags |
|---|---|---|---|---|
| 1 | CASH_RECEIPT_ID | Surrogate key of the receipt | NUMBER | Key |
| 2 | ORG_ID | The business unit owning the receipt | NUMBER | |
| 3 | RECEIPT_NUMBER | Receipt number | VARCHAR2 | |
| 4 | RECEIPT_DATE | Receipt date | DATE | Filter date |
| 5 | AMOUNT | Receipt amount — denormalized here for query convenience | NUMBER | |
| 6 | CURRENCY_CODE | Receipt currency | VARCHAR2 | |
| 7 | STATUS | APP, UNAPP, UNID, NSF, REV, or STOP — page-enumerated, no named lookup type | VARCHAR2 | |
| 8 | TYPE | CASH or MISC — the dictionary itself says filter on MISC, not CASH | VARCHAR2 | |
| 9 | PAY_FROM_CUSTOMER | The paying customer account — an id column without the _ID suffix | NUMBER | |
| 10 | CUSTOMER_SITE_USE_ID | The customer site use the receipt is tied to | NUMBER | |
| 11 | RECEIPT_METHOD_ID | Receipt method | NUMBER | |
| 12 | EXCHANGE_RATE | Conversion rate to the ledger currency | NUMBER | |
| 13 | REVERSAL_DATE | When the receipt was reversed | DATE | |
| 14 | REVERSAL_CATEGORY | System category of the reversal | VARCHAR2 | |
| 15 | LEGAL_ENTITY_ID | Legal entity receiving the receipt | NUMBER |
Field provenance: hand-curated. 1 key field.
Boilerplate SQL
Starting point for reading the BICC-landed copy of AR_CASH_RECEIPTS_ALL on Databricks — real DATE columns need no conversion, and the org anchor and the LAST_UPDATE_DATE watermark (the column incremental BICC extracts key on) are already in place. Set your Unity Catalog location, schema, and org values below; they’re substituted into the SQL and the copy button.
7 parameters not filled: <catalog>, <schema>, <business_unit_id>, <CASH_RECEIPT_ID>, <DATE_FROM>, <DATE_TO>, <watermark>
-- ============================================================
-- Table : AR_CASH_RECEIPTS_ALL — Cash receipts — one row per receipt entered, with receipt number, date, amount, status, and the paying customer account; the cash side that payment schedules apply against
-- Purpose: Column-selected read of AR_CASH_RECEIPTS_ALL — auto-generated from field metadata
-- Grain : One row per business unit (ORG_ID) + CASH_RECEIPT_ID
-- Notes : Auto-generated skeleton for Oracle Fusion Cloud data landed in your lakehouse by a BICC extract — there is no SQL path to the SaaS database. Column names follow Oracle's table documentation — if your landed data still carries PVO attribute headers, map names first; see quirks #pvo-drift. Dates are real DATE/TIMESTAMP columns — no conversion needed. WHO audit columns omitted (see the quirks guide); the optional LAST_UPDATE_DATE watermark filter supports incremental extracts.
-- ============================================================
SELECT
t.CASH_RECEIPT_ID AS "Surrogate key of the receipt",
t.ORG_ID AS "The business unit owning the receipt",
t.RECEIPT_NUMBER AS "Receipt number",
t.RECEIPT_DATE AS "Receipt date",
t.AMOUNT AS "Receipt amount — denormalized here for query convenience",
t.CURRENCY_CODE AS "Receipt currency",
t.STATUS AS "APP, UNAPP, UNID, NSF, REV, or STOP — page-enumerated, no named lookup type",
t.TYPE AS "CASH or MISC — the dictionary itself says filter on MISC, not CASH",
t.PAY_FROM_CUSTOMER AS "The paying customer account — an id column without the _ID suffix",
t.CUSTOMER_SITE_USE_ID AS "The customer site use the receipt is tied to",
t.RECEIPT_METHOD_ID AS "Receipt method",
t.EXCHANGE_RATE AS "Conversion rate to the ledger currency",
t.REVERSAL_DATE AS "When the receipt was reversed",
t.REVERSAL_CATEGORY AS "System category of the reversal",
t.LEGAL_ENTITY_ID AS "Legal entity receiving the receipt"
FROM <catalog>.<schema>.AR_CASH_RECEIPTS_ALL t
WHERE
t.ORG_ID = <business_unit_id> -- business unit — Fusion _ALL means BU, not the EBS operating unit; see quirks guide #all-means-bu
-- AND t.CASH_RECEIPT_ID = <CASH_RECEIPT_ID>
-- AND t.RECEIPT_DATE >= DATE '<DATE_FROM>'
-- AND t.RECEIPT_DATE <= DATE '<DATE_TO>'
-- AND t.LAST_UPDATE_DATE >= TIMESTAMP '<watermark>' -- the column incremental BICC extracts key on
ORDER BY t.CASH_RECEIPT_ID;Verified September 2026 · docs release 26C
Column names differ in BICC extracts — see PVO header drift.
Relationships
Diagram of 1-hop neighbors — join details below. FND lookup decode and translation edges are highlighted; they’re the joins newcomers most often get wrong.
Loading relationship diagram…
Join details
ON AR_PAYMENT_SCHEDULES_ALL.CASH_RECEIPT_ID = AR_CASH_RECEIPTS_ALL.CASH_RECEIPT_ID AND AR_PAYMENT_SCHEDULES_ALL.ORG_ID = AR_CASH_RECEIPTS_ALL.ORG_IDON AR_CASH_RECEIPTS_ALL.PAY_FROM_CUSTOMER = HZ_CUST_ACCOUNTS.CUST_ACCOUNT_IDON AR_CASH_RECEIPTS_ALL.CUSTOMER_SITE_USE_ID = HZ_CUST_SITE_USES_ALL.SITE_USE_ID
More Financials tables
- AR_PAYMENT_SCHEDULES_ALLThe open-receivables ledger — one row per installment of every transaction and receipt, restated as amounts due, applied, and remaining; the table AR aging actually reads
- GL_JE_HEADERSGeneral ledger journal headers — one row per journal within a batch, with the ledger, category, source, period, currency, posting status, and running debit/credit totals
- GL_JE_LINESGeneral ledger journal lines — the debit/credit grain: one row per line with the account combination, entered and accounted amounts, effective date, and the drill-back link to subledger accounting
- RA_CUSTOMER_TRX_ALLReceivables transaction headers — one row per invoice, credit memo, debit memo, or bill receivable, with the transaction number, type, dates, customer account and site-use pointers, and currency; business-unit striped
- RA_CUSTOMER_TRX_LINES_ALLReceivables transaction lines — mixed row kinds under each transaction: LINE rows carry the goods/services amounts, TAX and FREIGHT rows attach to their parent line, CB rows carry chargebacks
- AP_INVOICE_DISTRIBUTIONS_ALLPayables invoice distributions — the accounting grain under each line: one row per charged GL account with the amount, accounting date, period, and posted state; where AP spend meets the ledger