Search Results reversal_category
Overview
APPS.CE_REVERSAL_TRANSACTIONS_V is a reporting and integration view in the Oracle E-Business Suite Cash Management (CE) module. It presents a consolidated, user-facing projection of payment and receipt reversal transactions, exposing transaction-level attributes alongside reversal-specific context such as the reversal category, reversal reason, and reversal comments. The view is defined as a UNION ALL over a family of version-specific reversal views — CE_200_REVERSAL_V, CE_222_REVERSAL_V, CE_260_CF_REVERSAL_V, and CE_999_REVERSAL_V — each corresponding to a distinct bank statement or reconciliation format supported by the Cash Management auto-reconciliation engine.
Because the underlying reversal views are gated by calls into the CE_AUTO_BANK_MATCH and CE_AUTO_BANK_CLEAR packages (through the CE_AUTO_BANK_MATCH.GET_200 = 1 predicate visible in the documented view text), the view effectively surfaces only the reversal population relevant to the currently active reconciliation format. This makes it a stable integration point for external reporting tools, custom concurrent programs, and reconciliation dashboards that must remain unaware of the versioned internals.
Underlying Base Objects
The view is defined over multiple objects rather than a single base table. The documented referenced objects are:
- CE_200_REVERSAL_V, CE_222_REVERSAL_V, CE_260_CF_REVERSAL_V, CE_999_REVERSAL_V — the version-specific reversal views UNIONed to form the consolidated result set.
- CE_AUTO_BANK_MATCH — supplies the
GET_200style format-selection predicates that filter which branch contributes rows. - CE_AUTO_BANK_CLEAR — participates in the reconciliation/clearing logic exposed through the reversal views.
- ARP_CASHBOOK — provides receipt-related context (bank account and currency information).
- FND_GLOBAL — supplies session context such as
ORG_IDand user identity, enforcing multi-org and security filtering. - IBY_FD_EXTRACT_GEN_PVT — supports payment instruction extraction and payment-method attributes.
Functionally, the view therefore sits on top of CE payment/receipt reversal data, the bank account model, and the auto-reconciliation engine, rather than on a single physical table.
Key Columns
The projection exposes 48+ columns. The most significant include:
- TRX_ID, TRX_NUMBER, TRX_TYPE, TYPE_MEANING — transaction identity and type classification.
- BANK_ACCOUNT_ID, BANK_ACCOUNT_NUM, BANK_ACCOUNT_NAME, BANK_NAME, BANK_CURRENCY_CODE — the banking context of the reversed item.
- CURRENCY_CODE, AMOUNT, BANK_ACCOUNT_AMOUNT, AMOUNT_CLEARED, BASE_AMOUNT — monetary values in transaction and bank currency.
- REVERSAL_CATEGORY, REVERSAL_CATEGORY_ID — the category that classifies why the transaction was reversed; this is the attribute most frequently searched by users.
- REVERSAL_REASON, REVERSAL_REASON_ID, REVERSAL_COMMENTS — free-text and coded justification for the reversal.
- STATUS, STATUS_DSP, TRX_RECONCILED_FLAG — reconciliation state and display status.
- GL_DATE, TRX_DATE, CLEARED_DATE, MATURITY_DATE, VALUE_DATE — accounting and value dating.
- PAYMENT_METHOD, PAYMENT_METHOD_ID, BATCH_ID, BATCH_NAME — payment and batch grouping.
- CASH_RECEIPT_ID, CUSTOMER_ID, SUPPLIER_ID, APPLICATION_ID — trading partner and application linkage.
- STATEMENT_LINE_ID, STATEMENT_NUMBER, STATEMENT_LINE_AMOUNT, REMITTANCE_NUMBER — bank statement reconciliation references.
- ORG_ID — the operating unit, enforcing multi-org access.
Common Use Cases and Queries
Typical scenarios include reconciliation exception reporting, audit of reversals by category or reason, and feeding reversal data into downstream accounting or treasury extracts. A representative query filtering on the searched attribute is:
SELECT trx_number, trx_type, currency_code, amount, reversal_category, reversal_reason, reversal_comments, status FROM apps.ce_reversal_transactions_v WHERE reversal_category = '&category' AND org_id = :org_id;- Reversal volume by bank account:
SELECT bank_account_num, reversal_category, COUNT(*) FROM apps.ce_reversal_transactions_v GROUP BY bank_account_num, reversal_category; - Statement reconciliation review:
SELECT statement_number, trx_number, statement_line_amount, cleared_date FROM apps.ce_reversal_transactions_v WHERE statement_line_id IS NOT NULL;
Queries should always constrain by ORG_ID to respect multi-org security, and results reflect only the reversal population enabled by the currently active reconciliation format through the auto-bank-match predicates.
-
VIEW: APPS.CE_REVERSAL_TRANSACTIONS_V
12.1.1
-
VIEW: APPS.CE_REVERSAL_TRANSACTIONS_V
12.2.2
-
View: CE_REVERSAL_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_REVERSAL_TRANSACTIONS_V, object_name:CE_REVERSAL_TRANSACTIONS_V, status:VALID, product: CE - Cash Management , description: Available transactions for reversal or unclearing , implementation_dba_data: APPS.CE_REVERSAL_TRANSACTIONS_V ,
-
View: CE_REVERSAL_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_REVERSAL_TRANSACTIONS_V, object_name:CE_REVERSAL_TRANSACTIONS_V, status:VALID, product: CE - Cash Management , description: Available transactions for reversal or unclearing , implementation_dba_data: APPS.CE_REVERSAL_TRANSACTIONS_V ,
-
VIEW: AR.AR_ARCHIVE_HEADER#
12.2.2
-
VIEW: AR.AR_CASH_RECEIPTS_ALL#
12.2.2
-
View: AR_CASH_RECEIPTS_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CASH_RECEIPTS_MRC_V, object_name:AR_CASH_RECEIPTS_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_CASH_RECEIPTS_MRC_V ,
-
VIEW: APPS.AR_CASH_RECEIPTS_MRC_V
12.1.1
-
VIEW: APPS.AR_CASH_RECEIPTS_MRC_V
12.2.2
-
View: AR_CASH_RECEIPTS_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CASH_RECEIPTS_MRC_V, object_name:AR_CASH_RECEIPTS_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_CASH_RECEIPTS_MRC_V ,
-
View: AR_CASH_RECEIPTS_ALL_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CASH_RECEIPTS_ALL_MRC_V, object_name:AR_CASH_RECEIPTS_ALL_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_CASH_RECEIPTS_ALL_MRC_V ,
-
View: AR_CASH_RECEIPTS_ALL_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CASH_RECEIPTS_ALL_MRC_V, object_name:AR_CASH_RECEIPTS_ALL_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_CASH_RECEIPTS_ALL_MRC_V ,
-
VIEW: APPS.AR_CASH_RECEIPTS_ALL_MRC_V
12.1.1
-
VIEW: APPS.AR_CASH_RECEIPTS_ALL_MRC_V
12.2.2
-
PACKAGE BODY: APPS.AR_ARXREV_XMLP_PKG
12.1.1
-
PACKAGE BODY: APPS.AR_ARXREV_XMLP_PKG
12.2.2
-
VIEW: APPS.CE_200_REVERSAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_200_REVERSAL_V, object_name:CE_200_REVERSAL_V, status:VALID,
-
View: ICX_AR_CASH_RECEIPTS_V
12.1.1
product: ICX - Oracle iProcurement , description: Cash Receipts View , implementation_dba_data: Not implemented in this database ,
-
View: ICX_AR_CASH_RECEIPTS_V
12.2.2
product: ICX - Oracle iProcurement , description: Cash Receipts View , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.CE_999_REVERSAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_999_REVERSAL_V, object_name:CE_999_REVERSAL_V, status:VALID,
-
VIEW: APPS.CE_222_REVERSAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_222_REVERSAL_V, object_name:CE_222_REVERSAL_V, status:VALID,
-
VIEW: APPS.CE_REVERSAL_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_REVERSAL_TRANSACTIONS_V, object_name:CE_REVERSAL_TRANSACTIONS_V, status:VALID,
-
VIEW: APPS.CE_222_REVERSAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_222_REVERSAL_V, object_name:CE_222_REVERSAL_V, status:VALID,
-
VIEW: APPS.CE_REVERSAL_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_REVERSAL_TRANSACTIONS_V, object_name:CE_REVERSAL_TRANSACTIONS_V, status:VALID,
-
VIEW: APPS.CE_260_CF_REVERSAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_260_CF_REVERSAL_V, object_name:CE_260_CF_REVERSAL_V, status:VALID,
-
VIEW: APPS.CE_200_REVERSAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_200_REVERSAL_V, object_name:CE_200_REVERSAL_V, status:VALID,
-
VIEW: APPS.CE_260_CF_REVERSAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_260_CF_REVERSAL_V, object_name:CE_260_CF_REVERSAL_V, status:VALID,
-
VIEW: AR.AR_ARCHIVE_HEADER#
12.2.2
owner:AR, object_type:VIEW, object_name:AR_ARCHIVE_HEADER#, status:VALID,
-
VIEW: APPS.CE_999_REVERSAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_999_REVERSAL_V, object_name:CE_999_REVERSAL_V, status:VALID,
-
VIEW: APPS.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,
-
View: CE_999_REVERSAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_999_REVERSAL_V, object_name:CE_999_REVERSAL_V, status:VALID, product: CE - Cash Management , description: Open interface transactions for unclearing , implementation_dba_data: APPS.CE_999_REVERSAL_V ,
-
VIEW: APPS.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,
-
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: CE_999_REVERSAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_999_REVERSAL_V, object_name:CE_999_REVERSAL_V, status:VALID, product: CE - Cash Management , description: Open interface transactions for unclearing , implementation_dba_data: APPS.CE_999_REVERSAL_V ,
-
APPS.AR_ARXSOC2_XMLP_PKG SQL Statements
12.1.1
-
APPS.AR_ARXSOC2_XMLP_PKG SQL Statements
12.2.2
-
APPS.AR_ARXSOC_XMLP_PKG SQL Statements
12.1.1
-
APPS.AR_ARXSOC_XMLP_PKG SQL Statements
12.2.2
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
View: CE_260_CF_REVERSAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_260_CF_REVERSAL_V, object_name:CE_260_CF_REVERSAL_V, status:VALID, product: CE - Cash Management , description: AR receipts for reversing or unclearing , implementation_dba_data: APPS.CE_260_CF_REVERSAL_V ,
-
VIEW: APPS.AR_CASH_RECEIPTS_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CASH_RECEIPTS_MRC_V, object_name:AR_CASH_RECEIPTS_MRC_V, status:VALID,
-
VIEW: APPS.AR_CASH_RECEIPTS_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CASH_RECEIPTS_MRC_V, object_name:AR_CASH_RECEIPTS_MRC_V, status:VALID,
-
VIEW: APPS.AR_OEX_RECEIPTS_VIEW
12.1.1
-
VIEW: APPS.AR_OEX_RECEIPTS_VIEW
12.2.2
-
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 ,
-
PACKAGE BODY: APPS.AR_ARXSOC2_XMLP_PKG
12.2.2
-
View: CE_260_CF_REVERSAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_260_CF_REVERSAL_V, object_name:CE_260_CF_REVERSAL_V, status:VALID, product: CE - Cash Management , description: AR receipts for reversing or unclearing , implementation_dba_data: APPS.CE_260_CF_REVERSAL_V ,