Search Results ar_batches_all
Overview
The AR_BATCHES_ALL table is a core transactional table within the Oracle E-Business Suite Receivables (AR) module, specifically designed to store receipt batch information. It serves as the central repository for all metadata and control attributes associated with the grouping of cash receipts and related transactions. This batching mechanism is fundamental to the efficient processing, reconciliation, and reporting of incoming payments. The table supports a multi-organization architecture, as indicated by the '_ALL' suffix, meaning it stores data for all operating units accessible to a user, with security enforced via the MOAC (Multi-Org Access Control) security profile. Its primary role is to provide a controlled audit trail and workflow management for receipt processing, from initial creation through final posting and remittance.
Key Information Stored
The table's structure captures comprehensive batch details. The primary identifier is BATCH_ID. Key descriptive columns include BATCH_NAME, BATCH_DATE, and BATCH_STATUS, which tracks the batch's lifecycle (e.g., NEW, POSTED, REMITTED). Critical control columns link the batch to its source and processing rules: BATCH_SOURCE_ID (foreign key to AR_BATCH_SOURCES_ALL), LOCKBOX_ID (for automated lockbox processing), and TRANSMISSION_REQUEST_ID (for electronic transmissions). Financial control is maintained through CURRENCY_CODE, CONTROL_AMOUNT, and CONTROL_COUNT. The table also stores bank account details for remittance via REMITTANCE_BANK_ACCOUNT_ID and REMIT_BANK_ACCT_USE_ID, linking to the Cash Management and Payables modules. Additional programmatic control columns like AUTO_PRINT_PROGRAM_ID and AUTO_TRANS_PROGRAM_ID facilitate automated batch processing workflows.
Common Use Cases and Queries
This table is central to receipt batch inquiry, reconciliation, and audit reporting. A common use case is identifying batches in a specific status for a given operating unit to manage workflow. For example, to list unposted batches:
- SELECT batch_name, batch_date, control_amount FROM ar_batches_all WHERE batch_status = 'NEW' AND org_id = :org_id;
Another frequent scenario is reconciling batch control totals against the sum of actual receipts. This involves joining with AR_CASH_RECEIPTS_ALL:
- SELECT ab.batch_name, ab.control_amount, SUM(acr.amount) total_receipts FROM ar_batches_all ab JOIN ar_cash_receipts_all acr ON ab.batch_id = acr.batch_id WHERE ab.batch_id = :batch_id GROUP BY ab.batch_name, ab.control_amount;
The table is also essential for tracing the remittance path of receipts, linking through SELECTED_REMITTANCE_BATCH_ID or REMITTANCE_BATCH_ID columns in related transaction tables.
Related Objects
As evidenced by its extensive foreign key relationships, AR_BATCHES_ALL is a hub within the Receivables schema. It is a parent table to core transaction tables including AR_CASH_RECEIPTS_ALL, AR_CASH_RECEIPT_HISTORY_ALL, AR_ADJUSTMENTS_ALL, and AR_INTERIM_CASH_RECEIPTS_ALL. It references master data and control tables such as AR_BATCH_SOURCES_ALL, AR_LOCKBOXES_ALL, AR_TRANSMISSIONS_ALL, FND_CURRENCIES, and CE_BANK_ACCT_USES_ALL. Crucially, the batch identifier propagates to key transactional entities like RA_CUSTOMER_TRX_ALL (for invoices selected for remittance) and AR_PAYMENT_SCHEDULES_ALL, creating a critical audit link between receipts, their applications, and the original invoices. This network of relationships underscores the batch's role as a controlling document for financial sub-ledger integrity.
-
Table: AR_BATCHES_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_BATCHES_ALL, object_name:AR_BATCHES_ALL, status:VALID, product: AR - Receivables , description: Receipt batch information , implementation_dba_data: AR.AR_BATCHES_ALL ,
-
Table: AR_BATCHES_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_BATCHES_ALL, object_name:AR_BATCHES_ALL, status:VALID, product: AR - Receivables , description: Receipt batch information , implementation_dba_data: AR.AR_BATCHES_ALL ,
-
Table: AR_LOCKBOXES_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_LOCKBOXES_ALL, object_name:AR_LOCKBOXES_ALL, status:VALID, product: AR - Receivables , description: Lockbox details used by the AutoLockbox program , implementation_dba_data: AR.AR_LOCKBOXES_ALL ,
-
Table: AR_TRANSMISSIONS_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_TRANSMISSIONS_ALL, object_name:AR_TRANSMISSIONS_ALL, status:VALID, product: AR - Receivables , description: Lockbox transmission information , implementation_dba_data: AR.AR_TRANSMISSIONS_ALL ,
-
Table: AR_MC_BATCHES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_MC_BATCHES, object_name:AR_MC_BATCHES, status:VALID, product: AR - Receivables , description: Currency-related information about receipt batches for each reporting set of books , implementation_dba_data: AR.AR_MC_BATCHES ,
-
Table: AR_MC_BATCHES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_MC_BATCHES, object_name:AR_MC_BATCHES, status:VALID, product: AR - Receivables , description: Currency-related information about receipt batches for each reporting set of books , implementation_dba_data: AR.AR_MC_BATCHES ,
-
Table: AR_INTERIM_CASH_RCPT_LINES_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_INTERIM_CASH_RCPT_LINES_ALL, object_name:AR_INTERIM_CASH_RCPT_LINES_ALL, status:VALID, product: AR - Receivables , description: Temporary table used to store QuickCash payment applications , implementation_dba_data: AR.AR_INTERIM_CASH_RCPT_LINES_ALL ,
-
Table: AR_TRANSMISSIONS_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_TRANSMISSIONS_ALL, object_name:AR_TRANSMISSIONS_ALL, status:VALID, product: AR - Receivables , description: Lockbox transmission information , implementation_dba_data: AR.AR_TRANSMISSIONS_ALL ,
-
Table: AR_LOCKBOXES_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_LOCKBOXES_ALL, object_name:AR_LOCKBOXES_ALL, status:VALID, product: AR - Receivables , description: Lockbox details used by the AutoLockbox program , implementation_dba_data: AR.AR_LOCKBOXES_ALL ,
-
Table: AR_INTERIM_CASH_RCPT_LINES_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_INTERIM_CASH_RCPT_LINES_ALL, object_name:AR_INTERIM_CASH_RCPT_LINES_ALL, status:VALID, product: AR - Receivables , description: Temporary table used to store QuickCash payment applications , implementation_dba_data: AR.AR_INTERIM_CASH_RCPT_LINES_ALL ,
-
Table: AR_BATCH_SOURCES_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_BATCH_SOURCES_ALL, object_name:AR_BATCH_SOURCES_ALL, status:VALID, product: AR - Receivables , description: Accounting, bank account, and numbering information for a batch , implementation_dba_data: AR.AR_BATCH_SOURCES_ALL ,
-
Table: AR_AUTOREC_EXCEPTIONS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_AUTOREC_EXCEPTIONS, object_name:AR_AUTOREC_EXCEPTIONS, status:VALID, product: AR - Receivables , description: Temporary table used to store exceptions found by Automatic Receipts and its related programs , implementation_dba_data: AR.AR_AUTOREC_EXCEPTIONS ,
-
Table: AR_INTERIM_CASH_RECEIPTS_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_INTERIM_CASH_RECEIPTS_ALL, object_name:AR_INTERIM_CASH_RECEIPTS_ALL, status:VALID, product: AR - Receivables , description: QuickCash payments processed by the PostBatch program , implementation_dba_data: AR.AR_INTERIM_CASH_RECEIPTS_ALL ,
-
Table: AR_BATCH_SOURCES_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_BATCH_SOURCES_ALL, object_name:AR_BATCH_SOURCES_ALL, status:VALID, product: AR - Receivables , description: Accounting, bank account, and numbering information for a batch , implementation_dba_data: AR.AR_BATCH_SOURCES_ALL ,
-
Table: AR_AUTOREC_EXCEPTIONS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_AUTOREC_EXCEPTIONS, object_name:AR_AUTOREC_EXCEPTIONS, status:VALID, product: AR - Receivables , description: Temporary table used to store exceptions found by Automatic Receipts and its related programs , implementation_dba_data: AR.AR_AUTOREC_EXCEPTIONS ,
-
Table: AR_INTERIM_CASH_RECEIPTS_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_INTERIM_CASH_RECEIPTS_ALL, object_name:AR_INTERIM_CASH_RECEIPTS_ALL, status:VALID, product: AR - Receivables , description: QuickCash payments processed by the PostBatch program , implementation_dba_data: AR.AR_INTERIM_CASH_RECEIPTS_ALL ,
-
Table: AR_CASH_RECEIPT_HISTORY_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CASH_RECEIPT_HISTORY_ALL, object_name:AR_CASH_RECEIPT_HISTORY_ALL, status:VALID, product: AR - Receivables , description: History of actions and status changes in the life cycle of a receipt , implementation_dba_data: AR.AR_CASH_RECEIPT_HISTORY_ALL ,
-
View: ARFV_RECEIPT_HISTORY
12.2.2
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: ARFV_RECEIPT_HISTORY
12.1.1
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
Table: AR_ADJUSTMENTS_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_ADJUSTMENTS_ALL, object_name:AR_ADJUSTMENTS_ALL, status:VALID, product: AR - Receivables , description: Pending and approved invoice adjustments , implementation_dba_data: AR.AR_ADJUSTMENTS_ALL ,
-
Table: AR_ADJUSTMENTS_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_ADJUSTMENTS_ALL, object_name:AR_ADJUSTMENTS_ALL, status:VALID, product: AR - Receivables , description: Pending and approved invoice adjustments , implementation_dba_data: AR.AR_ADJUSTMENTS_ALL ,
-
Table: AR_CASH_RECEIPT_HISTORY_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CASH_RECEIPT_HISTORY_ALL, object_name:AR_CASH_RECEIPT_HISTORY_ALL, status:VALID, product: AR - Receivables , description: History of actions and status changes in the life cycle of a receipt , implementation_dba_data: AR.AR_CASH_RECEIPT_HISTORY_ALL ,
-
View: AR_BATCHES_ALL_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BATCHES_ALL_MRC_V, object_name:AR_BATCHES_ALL_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_BATCHES_ALL_MRC_V ,
-
Table: AR_PAYMENT_SCHEDULES_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_ALL, object_name:AR_PAYMENT_SCHEDULES_ALL, status:VALID, product: AR - Receivables , description: All transactions except adjustments and miscellaneous cash receipts , implementation_dba_data: AR.AR_PAYMENT_SCHEDULES_ALL ,
-
Table: AR_CASH_RECEIPTS_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CASH_RECEIPTS_ALL, object_name:AR_CASH_RECEIPTS_ALL, status:VALID, product: AR - Receivables , description: Detailed receipt information , implementation_dba_data: AR.AR_CASH_RECEIPTS_ALL ,
-
Table: AR_CASH_RECEIPTS_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CASH_RECEIPTS_ALL, object_name:AR_CASH_RECEIPTS_ALL, status:VALID, product: AR - Receivables , description: Detailed receipt information , implementation_dba_data: AR.AR_CASH_RECEIPTS_ALL ,
-
View: AR_BATCHES_ALL_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BATCHES_ALL_MRC_V, object_name:AR_BATCHES_ALL_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_BATCHES_ALL_MRC_V ,
-
View: AR_CASH_RECEIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CASH_RECEIPTS_V, object_name:AR_CASH_RECEIPTS_V, status:VALID, product: AR - Receivables , description: This is the base table view for the Receipts window. , implementation_dba_data: APPS.AR_CASH_RECEIPTS_V ,
-
View: AR_CASH_RECEIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CASH_RECEIPTS_V, object_name:AR_CASH_RECEIPTS_V, status:VALID, product: AR - Receivables , description: This is the base table view for the Receipts window. , implementation_dba_data: APPS.AR_CASH_RECEIPTS_V ,
-
View: AR_BATCHES_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BATCHES_MRC_V, object_name:AR_BATCHES_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_BATCHES_MRC_V ,
-
View: AR_BATCHES_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BATCHES_MRC_V, object_name:AR_BATCHES_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_BATCHES_MRC_V ,
-
View: AR_OEX_RECEIPTS_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_OEX_RECEIPTS_VIEW, object_name:AR_OEX_RECEIPTS_VIEW, status:VALID, product: AR - Receivables , description: This is the view for the Oracle Exchange Bill Presentment Payments page. , implementation_dba_data: APPS.AR_OEX_RECEIPTS_VIEW ,
-
View: AR_OEX_RECEIPTS_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_OEX_RECEIPTS_VIEW, object_name:AR_OEX_RECEIPTS_VIEW, status:VALID, product: AR - Receivables , description: This is the view for the Oracle Exchange Bill Presentment Payments page. , implementation_dba_data: APPS.AR_OEX_RECEIPTS_VIEW ,
-
View: AR_PAYMENT_SCHEDULES_PMT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_PMT_V, object_name:AR_PAYMENT_SCHEDULES_PMT_V, status:VALID, product: AR - Receivables , description: (Release 115 Only ) , implementation_dba_data: APPS.AR_PAYMENT_SCHEDULES_PMT_V ,
-
View: AR_PAYMENT_SCHEDULES_PMT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_PMT_V, object_name:AR_PAYMENT_SCHEDULES_PMT_V, status:VALID, product: AR - Receivables , description: (Release 115 Only ) , implementation_dba_data: APPS.AR_PAYMENT_SCHEDULES_PMT_V ,
-
Table: RA_CUSTOMER_TRX_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.RA_CUSTOMER_TRX_ALL, object_name:RA_CUSTOMER_TRX_ALL, status:VALID, product: AR - Receivables , description: Header-level information about invoices, debit memos, chargebacks, commitments and credit memos , implementation_dba_data: AR.RA_CUSTOMER_TRX_ALL ,
-
Table: RA_CUSTOMER_TRX_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.RA_CUSTOMER_TRX_ALL, object_name:RA_CUSTOMER_TRX_ALL, status:VALID, product: AR - Receivables , description: Header-level information about invoices, debit memos, chargebacks, commitments and credit memos , implementation_dba_data: AR.RA_CUSTOMER_TRX_ALL ,
-
View: AR_PAYMENT_SCHEDULES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_V, object_name:AR_PAYMENT_SCHEDULES_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_PAYMENT_SCHEDULES_V ,
-
View: AR_PAYMENT_SCHEDULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_V, object_name:AR_PAYMENT_SCHEDULES_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_PAYMENT_SCHEDULES_V ,