Skip to content
Fusion Reference

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

Notes

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
master
Data class: what the table holds — master data, transaction documents, control/configuration, interface/staging, or a documented view.
In field listings, K marks a primary-key field.

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.ReceiptHeaderExtractPVO
    OTBI: Receivables - Receipts Details Real Time

    Receipt Header data store — keyed on ArCashReceiptCashReceiptId.

    Oracle data-store documentation →

Fields

15 fields · 1 key

Table fields: position, field name, description, data type, and flags. 15 fields.
#FieldDescriptionTypeFlags
1CASH_RECEIPT_IDSurrogate key of the receiptNUMBER
Key
2ORG_IDThe business unit owning the receiptNUMBER
3RECEIPT_NUMBERReceipt numberVARCHAR2
4RECEIPT_DATEReceipt dateDATE
Filter date
5AMOUNTReceipt amount — denormalized here for query convenienceNUMBER
6CURRENCY_CODEReceipt currencyVARCHAR2
7STATUSAPP, UNAPP, UNID, NSF, REV, or STOP — page-enumerated, no named lookup typeVARCHAR2
8TYPECASH or MISC — the dictionary itself says filter on MISC, not CASHVARCHAR2
9PAY_FROM_CUSTOMERThe paying customer account — an id column without the _ID suffixNUMBER
10CUSTOMER_SITE_USE_IDThe customer site use the receipt is tied toNUMBER
11RECEIPT_METHOD_IDReceipt methodNUMBER
12EXCHANGE_RATEConversion rate to the ledger currencyNUMBER
13REVERSAL_DATEWhen the receipt was reversedDATE
14REVERSAL_CATEGORYSystem category of the reversalVARCHAR2
15LEGAL_ENTITY_IDLegal entity receiving the receiptNUMBER

Field provenance: hand-curated. 1 key field.

Boilerplate SQL

Starting point for reading the BICC-landed copy of AR_CASH_RECEIPTS_ALLon 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.

Query parameters
-- ============================================================
-- 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;

7 parameters not filled: <catalog>, <schema>, <business_unit_id>, <CASH_RECEIPT_ID>, <DATE_FROM>, <DATE_TO>, <watermark>

Relationships

1-hop neighbors — click a table to navigate there. FND lookup decode and translation edges are highlighted; they’re the joins newcomers most often get wrong.

Join details

  • AR_PAYMENT_SCHEDULES_ALLAR_CASH_RECEIPTS_ALLforeign key · N:1
    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_ID
  • AR_CASH_RECEIPTS_ALLHZ_CUST_ACCOUNTSforeign key · N:1
    ON AR_CASH_RECEIPTS_ALL.PAY_FROM_CUSTOMER = HZ_CUST_ACCOUNTS.CUST_ACCOUNT_ID
  • AR_CASH_RECEIPTS_ALLHZ_CUST_SITE_USES_ALLforeign key · N:1
    ON AR_CASH_RECEIPTS_ALL.CUSTOMER_SITE_USE_ID = HZ_CUST_SITE_USES_ALL.SITE_USE_ID

Browse more Financialstables →

Maintained by Summit Analytics, a supply chain analytics practice. The tools and references are free — the consulting is selective.

Part of the Summit Analytics reference library.

Work with the practice →

Not affiliated with or endorsed by Oracle. Oracle and Oracle Fusion Cloud Applications are registered trademarks of Oracle and/or its affiliates.