Search Results bank_charges
Overview
APPS.ARBV_CASH_DISTRIBUTIONS is a read-only Oracle EBS view in the Receivables (AR) module that exposes the accounting distributions generated for cash receipts. It is a Business Intelligence (BI) style view — prefixed "ARBV_" — intended for external reporting, extraction, and integration into data warehouses rather than for transactional processing. The view consolidates general ledger accounting lines derived from the Subledger Accounting (SLA/XLA) engine for cash receipts, exposing both the entered amounts (AMOUNT_DR / AMOUNT_CR) and the accounted amounts (ACCTD_AMOUNT_DR / ACCTD_AMOUNT_CR), along with the associated GL date and transfer status.
The view text carries embedded Lookup attributes (the "_LA:" prefixed columns), which are a convention in EBS BI views that instruct the BI Publisher / EBS reporting layer to display decoded meaning values for coded columns. In this case, the SOURCE_TYPE column is decoded against the AR_LOOKUPS lookup type ACCOUNT_TYPE, and the GL_TRANSFER_STATUS_CODE is decoded against AR_LOOKUPS with type YES/NO. These embedded instructions make the view directly consumable by report definitions without requiring additional lookup joins.
Because the user searched for "bank_charges," it is significant that BANK_CHARGES is one of the explicit SOURCE_TYPE values decoded within the view's SQL. The view therefore surfaces bank charge distributions as a distinct, decodable category of cash receipt accounting lines.
Underlying Base Objects
The view is defined over three documented objects:
- AR_CASH_RECEIPT_HISTORY (SYNONYM) — aliased CRH. Provides the cash receipt history context, including GL_DATE and CASH_RECEIPT_ID, and is joined via CRH.CASH_RECEIPT_HISTORY_ID = DIST.SOURCE_ID where DIST.SOURCE_TABLE = 'CRH'.
- AR_XLA_ARD_LINES_V (VIEW) — aliased DIST. This is the Subledger Accounting distribution extraction view that supplies the accounting line detail: SOURCE_TYPE, AMOUNT_DR, AMOUNT_CR, ACCTD_AMOUNT_DR, ACCTD_AMOUNT_CR, CODE_COMBINATION_ID, AE_HEADER_ID, LINE_ID, and the WHO columns.
- XLA_AE_HEADERS (SYNONYM) — aliased HED. Provides the subledger accounting header, most importantly GL_TRANSFER_STATUS_CODE, joined via DIST.AE_HEADER_ID = HED.AE_HEADER_ID.
The join path is: cash receipt history → SLA distribution lines → SLA accounting entry header. This reflects the standard EBS subledger accounting architecture, where the history table holds the operational receipt record and the XLA tables hold the resulting journal lines.
Key Columns
- LINE_ID — The unique attribute identifying each distribution line.
- ACCOUNT_TYPE (decoded from SOURCE_TYPE) — The accounting line category. Documented decode values include CONFIRMATION, REMITTANCE, CASH, FACTOR, SHORT_TERM_DEBT, and BANK_CHARGES.
- AMOUNT_DR / AMOUNT_CR — Entered debit and credit amounts for the distribution.
- ACCTD_AMOUNT_DR / ACCTD_AMOUNT_CR — Accounted debit and credit amounts after conversion.
- GL_DATE — The general ledger date sourced from the cash receipt history.
- GL_TRANSFER_STATUS (decoded from GL_TRANSFER_STATUS_CODE) — Indicates whether the accounting line has been transferred to the general ledger (Y/N).
- IDS — CASH_RECEIPT_ID, ORG_ID, and CODE_COMBINATION_ID, supporting joins to receipts, operating units, and accounting flexfields.
- WHO columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY for audit and incremental extraction.
Common Use Cases and Queries
The view is commonly used to report cash receipt accounting detail, to reconcile unposted or untransferred distributions, and — given the bank_charges interest — to isolate bank charge lines. For example, to list all bank charge distributions with their amounts and GL transfer status:
- SELECT LINE_ID, ACCOUNT_TYPE, AMOUNT_DR, AMOUNT_CR, ACCTD_AMOUNT_DR, ACCTD_AMOUNT_CR, GL_DATE, GL_TRANSFER_STATUS, CASH_RECEIPT_ID, ORG_ID, CODE_COMBINATION_ID FROM APPS.ARBV_CASH_DISTRIBUTIONS WHERE ACCOUNT_TYPE = 'BANK_CHARGES' ORDER BY GL_DATE;
To audit distributions not yet transferred to the GL for a given period:
- SELECT CASH_RECEIPT_ID, ACCOUNT_TYPE, CODE_COMBINATION_ID, AMOUNT_DR, AMOUNT_CR FROM APPS.ARBV_CASH_DISTRIBUTIONS WHERE GL_TRANSFER_STATUS = 'N' AND GL_DATE BETWEEN :from_date AND :to_date;
Because the view is defined WITH READ ONLY, it supports safe, non-mutative querying for reporting, data extraction, and reconciliation workloads across Oracle EBS 12.1.1 and 12.2.2.
-
VIEW: APPS.ARBV_CASH_DISTRIBUTIONS
12.2.2
-
VIEW: APPS.ARBV_CASH_DISTRIBUTIONS
12.1.1
-
VIEW: APPS.ARFV_CASH_DISTRIBUTIONS
12.1.1
-
VIEW: APPS.ARFV_CASH_DISTRIBUTIONS
12.2.2
-
VIEW: APPS.CE_AVAILABLE_BATCHES_V
12.1.1
-
View: ARBV_CASH_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARBV_CASH_DISTRIBUTIONS, object_name:ARBV_CASH_DISTRIBUTIONS, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.ARBV_CASH_DISTRIBUTIONS ,
-
VIEW: APPS.CE_AVAILABLE_BATCHES_V
12.2.2
-
View: CE_AVAILABLE_BATCHES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_AVAILABLE_BATCHES_V, object_name:CE_AVAILABLE_BATCHES_V, status:VALID, product: CE - Cash Management , description: Available batches for reconciliation , implementation_dba_data: APPS.CE_AVAILABLE_BATCHES_V ,
-
View: ARBV_CASH_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARBV_CASH_DISTRIBUTIONS, object_name:ARBV_CASH_DISTRIBUTIONS, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.ARBV_CASH_DISTRIBUTIONS ,
-
View: CE_AVAILABLE_BATCHES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_AVAILABLE_BATCHES_V, object_name:CE_AVAILABLE_BATCHES_V, status:VALID, product: CE - Cash Management , description: Available batches for reconciliation , implementation_dba_data: APPS.CE_AVAILABLE_BATCHES_V ,
-
View: ARFV_CASH_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_CASH_DISTRIBUTIONS, object_name:ARFV_CASH_DISTRIBUTIONS, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.ARFV_CASH_DISTRIBUTIONS ,
-
View: ARFV_CASH_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_CASH_DISTRIBUTIONS, object_name:ARFV_CASH_DISTRIBUTIONS, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.ARFV_CASH_DISTRIBUTIONS ,
-
VIEW: APPS.CE_AVAILABLE_TRANSACTIONS_V
12.2.2
-
VIEW: APPS.CE_AVAILABLE_TRANSACTIONS_V
12.1.1
-
VIEW: APPS.CE_RECONCILED_TRANSACTIONS_V
12.1.1
-
VIEW: APPS.CE_RECONCILED_TRANSACTIONS_V
12.2.2
-
View: CE_RECONCILED_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_RECONCILED_TRANSACTIONS_V, object_name:CE_RECONCILED_TRANSACTIONS_V, status:VALID, product: CE - Cash Management , description: Reconciled transactions , implementation_dba_data: APPS.CE_RECONCILED_TRANSACTIONS_V ,
-
View: CE_AVAILABLE_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_AVAILABLE_TRANSACTIONS_V, object_name:CE_AVAILABLE_TRANSACTIONS_V, status:VALID, product: CE - Cash Management , description: Available transactions for reconciliation , implementation_dba_data: APPS.CE_AVAILABLE_TRANSACTIONS_V ,
-
View: CE_RECONCILED_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_RECONCILED_TRANSACTIONS_V, object_name:CE_RECONCILED_TRANSACTIONS_V, status:VALID, product: CE - Cash Management , description: Reconciled transactions , implementation_dba_data: APPS.CE_RECONCILED_TRANSACTIONS_V ,
-
View: CE_AVAILABLE_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_AVAILABLE_TRANSACTIONS_V, object_name:CE_AVAILABLE_TRANSACTIONS_V, status:VALID, product: CE - Cash Management , description: Available transactions for reconciliation , implementation_dba_data: APPS.CE_AVAILABLE_TRANSACTIONS_V ,
-
View: AR_BOE_REMIT_RECEIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BOE_REMIT_RECEIPTS_V, object_name:AR_BOE_REMIT_RECEIPTS_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_BOE_REMIT_RECEIPTS_V ,
-
View: AR_BOE_REMIT_RECEIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BOE_REMIT_RECEIPTS_V, object_name:AR_BOE_REMIT_RECEIPTS_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_BOE_REMIT_RECEIPTS_V ,
-
VIEW: APPS.CE_222_TXN_FOR_BATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_222_TXN_FOR_BATCH_V, object_name:CE_222_TXN_FOR_BATCH_V, status:VALID,
-
VIEW: APPS.CE_222_TXN_FOR_BATCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_222_TXN_FOR_BATCH_V, object_name:CE_222_TXN_FOR_BATCH_V, status:VALID,
-
VIEW: APPS.CE_200_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:CE_200_GROUPS_V, status:VALID,
-
View: AR_BOE_REMIT_RECEIPTS_CBUNR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BOE_REMIT_RECEIPTS_CBUNR_V, object_name:AR_BOE_REMIT_RECEIPTS_CBUNR_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_BOE_REMIT_RECEIPTS_CBUNR_V ,
-
VIEW: APPS.AR_BOE_REMIT_RECEIPTS_V
12.2.2
-
VIEW: APPS.CE_200_GROUPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_200_GROUPS_V, object_name:CE_200_GROUPS_V, status:VALID,
-
VIEW: APPS.ARFV_CASH_DISTS_ALC_V
12.2.2
-
View: AR_BOE_REMIT_RECEIPTS_CBUNR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BOE_REMIT_RECEIPTS_CBUNR_V, object_name:AR_BOE_REMIT_RECEIPTS_CBUNR_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_BOE_REMIT_RECEIPTS_CBUNR_V ,
-
View: AR_BOE_REMIT_RECEIPTS_CBR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BOE_REMIT_RECEIPTS_CBR_V, object_name:AR_BOE_REMIT_RECEIPTS_CBR_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_BOE_REMIT_RECEIPTS_CBR_V ,
-
View: AR_BOE_REMIT_RECEIPTS_NONCBR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BOE_REMIT_RECEIPTS_NONCBR_V, object_name:AR_BOE_REMIT_RECEIPTS_NONCBR_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_BOE_REMIT_RECEIPTS_NONCBR_V ,
-
View: AR_BOE_REMIT_RECEIPTS_NONCBR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BOE_REMIT_RECEIPTS_NONCBR_V, object_name:AR_BOE_REMIT_RECEIPTS_NONCBR_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_BOE_REMIT_RECEIPTS_NONCBR_V ,
-
View: AR_BOE_REMIT_RECEIPTS_CBR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BOE_REMIT_RECEIPTS_CBR_V, object_name:AR_BOE_REMIT_RECEIPTS_CBR_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_BOE_REMIT_RECEIPTS_CBR_V ,
-
VIEW: APPS.ARFV_CASH_DISTS_ALC_V
12.1.1
-
VIEW: APPS.AR_BOE_REMIT_RECEIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BOE_REMIT_RECEIPTS_V, object_name:AR_BOE_REMIT_RECEIPTS_V, status:VALID,
-
VIEW: APPS.AR_BOE_REMIT_RECEIPTS_V
12.1.1
-
VIEW: APPS.AR_BOE_REMIT_RECEIPTS_NONCBR_V
12.2.2
-
VIEW: APPS.AR_BOE_REMIT_RECEIPTS_CBR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BOE_REMIT_RECEIPTS_CBR_V, object_name:AR_BOE_REMIT_RECEIPTS_CBR_V, status:VALID,
-
VIEW: APPS.AR_BOE_REMIT_RECEIPTS_NONCBR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BOE_REMIT_RECEIPTS_NONCBR_V, object_name:AR_BOE_REMIT_RECEIPTS_NONCBR_V, status:VALID,
-
VIEW: APPS.AR_BOE_REMIT_RECEIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BOE_REMIT_RECEIPTS_V, object_name:AR_BOE_REMIT_RECEIPTS_V, status:VALID,
-
VIEW: APPS.AR_BOE_REMIT_RECEIPTS_NONCBR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BOE_REMIT_RECEIPTS_NONCBR_V, object_name:AR_BOE_REMIT_RECEIPTS_NONCBR_V, status:VALID,
-
VIEW: APPS.AR_BOE_REMIT_RECEIPTS_CBUNR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BOE_REMIT_RECEIPTS_CBUNR_V, object_name:AR_BOE_REMIT_RECEIPTS_CBUNR_V, status:VALID,
-
VIEW: APPS.AR_BOE_REMIT_RECEIPTS_NONCBR_V
12.1.1
-
VIEW: APPS.AR_BOE_REMIT_RECEIPTS_CBR_V
12.1.1
-
VIEW: APPS.AR_BOE_REMIT_RECEIPTS_CBUNR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BOE_REMIT_RECEIPTS_CBUNR_V, object_name:AR_BOE_REMIT_RECEIPTS_CBUNR_V, status:VALID,
-
Lookup Type: JLBR_AR_RETURN_BANK_OCCURRENCE
12.2.2
product: JL - Latin America Localizations , meaning: JLBR AR RETURN BANK OCCURRENCE , description: Bank Return Occurrence ,
-
VIEW: APPS.AR_BOE_REMIT_RECEIPTS_CBR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BOE_REMIT_RECEIPTS_CBR_V, object_name:AR_BOE_REMIT_RECEIPTS_CBR_V, status:VALID,
-
Lookup Type: JLBR_AR_RETURN_BANK_OCCURRENCE
12.1.1
product: JL - Latin America Localizations , meaning: JLBR AR RETURN BANK OCCURRENCE , description: Bank Return Occurrence ,
-
Lookup Type: ACCOUNT_TYPE
12.1.1
product: AR - Receivables , meaning: The type of the account ,