Search Results note_receivable_issue_date




Overview

ARBV_CASH_RECEIPTS is a read-only database view owned by the APPS schema in Oracle E-Business Suite Release 12.1.1 and 12.2.2. It belongs to the Oracle Receivables (AR) product family and presents descriptive and transactional information about cash receipts remitted by customers as payment for goods or services. The view exposes a business-friendly projection of receipt data, applying Oracle EBS descriptive flexfield "_LA:" pseudo-column conventions so that lookup-based attributes such as receipt status, reversal reason, and reversal category are surfaced as translated meanings rather than raw codes. The view definition terminates with the WITH READ ONLY clause, confirming that it is intended strictly for query and reporting purposes and cannot be used for DML.

Because the underlying view filters on TYPE = 'CASH', ARBV_CASH_RECEIPTS returns only standard cash receipts, excluding miscellaneous, guaranteed, and other receipt types maintained in the base table. This makes it a convenient, self-filtering source for reporting on customer cash payments, remittances, and bank deposit activity.

Underlying Base Objects

The documented base object referenced by the view is AR_CASH_RECEIPTS, accessed through a synonym. AR_CASH_RECEIPTS is the core Receivables table that stores every receipt created in the system, including its accounting, customer, bank, and remittance attributes. ARBV_CASH_RECEIPTS is defined directly over this table with an explicit column list and a single filter predicate (TYPE = 'CASH'). No joins to lookup, customer, or bank tables are embedded in the view text; instead, descriptive flexfield ("_LA:") references resolve lookup meanings at runtime. Users should therefore expect one row per cash receipt for the organization context, and should be prepared to join to AR_LOOKUPS, AR_CUSTOMERS, and bank account tables when additional descriptive attributes are required.

Key Columns

Common Use Cases and Queries

The view is typically used for receipt status reporting, cash application analysis, deposit and remittance reconciliation, and export to downstream reporting or integration layers. Because the status is exposed as a translated lookup meaning, users can filter on business-readable values without joining AR_LOOKUPS.

Example — list receipts and their status for an organization:

  • SELECT receipt_number, receipt_date, receipt_amount, currency_code, "_LA:RECEIPT_STATUS" receipt_status, customer_receipt_reference FROM arbv_cash_receipts WHERE org_id = :org_id ORDER BY receipt_date DESC;

Example — find reversed receipts with reason and category:

  • SELECT receipt_number, receipt_date, "_LA:RECEIPT_STATUS" status, "_LA:REVERSAL_REASON" reversal_reason, "_LA:REVERSAL_CATEGORY" reversal_category, reversal_date FROM arbv_cash_receipts WHERE "_LA:REVERSAL_REASON" IS NOT NULL;

Example — trace unapplied cash awaiting clearing:

  • SELECT cr.receipt_number, cr.receipt_amount, cr.anticipated_clearing_date, cr.remittance_bank_account_id FROM arbv_cash_receipts cr WHERE cr.anticipated_clearing_date >= SYSDATE AND NOT EXISTS (SELECT 1 FROM ar_receivable_applications_all ara WHERE ara.cash_receipt_id = cr.cash_receipt_id AND ara.status = 'APP');

Because the view is read only and filters to cash receipts only, it is a safe and efficient starting point for custom reports, Oracle BI Publisher data models, and integration extracts that require receipt status and remittance detail.

  • View: ARBV_CASH_RECEIPTS 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:AR.ARBV_CASH_RECEIPTS,  object_name:ARBV_CASH_RECEIPTS,  status:VALID,  product: AR - Receivablesdescription: This shows information about receipts remitted by the customer as payment for goods or services. ,  implementation_dba_data: APPS.ARBV_CASH_RECEIPTS

  • View: ARBV_CASH_RECEIPTS 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:AR.ARBV_CASH_RECEIPTS,  object_name:ARBV_CASH_RECEIPTS,  status:VALID,  product: AR - Receivablesdescription: This shows information about receipts remitted by the customer as payment for goods or services. ,  implementation_dba_data: APPS.ARBV_CASH_RECEIPTS

  • View: ARFV_CASH_RECEIPTS 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:AR.ARFV_CASH_RECEIPTS,  object_name:ARFV_CASH_RECEIPTS,  status:VALID,  product: AR - Receivablesdescription: This shows information about payments remitted by the customer as payment for goods or services. ,  implementation_dba_data: APPS.ARFV_CASH_RECEIPTS

  • View: ARFV_CASH_RECEIPTS 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:AR.ARFV_CASH_RECEIPTS,  object_name:ARFV_CASH_RECEIPTS,  status:VALID,  product: AR - Receivablesdescription: This shows information about payments remitted by the customer as payment for goods or services. ,  implementation_dba_data: APPS.ARFV_CASH_RECEIPTS