Results for “statement_line_amount”
30 results
AI-generated from documented ETRM metadata — verify critical details on the linked pages.
Overview
CE_999_REVERSAL_V is an Oracle E-Business Suite view owned by the APPS schema and delivered as part of the Cash Management (CE) product. Its documented purpose is to expose open interface transactions for unclearing. In practice, the view acts as a presentation and selection layer over the Cash Management open interface, returning bank statement reconciliation lines that are eligible to be reversed, or "uncleared," from a reconciliation workflow.
The object is classified with a status of VALID and is a standard, seeded database view rather than a custom artifact. Its naming convention follows the CE_999_INTERFACE family used by Cash Management for open interface processing, where the "999" prefix denotes interface-stage data rather than posted reconciliation records. The view is therefore a reporting and integration aid: it allows the calling application or a report to identify which transactions currently satisfy the conditions for unclearing without directly replicating the complex join and filter logic embedded in the view text.
Underlying Base Objects
The view is defined over six documented base objects, combining interface, bank, system parameter, and reconciliation data:
- CE_999_INTERFACE_V (VIEW) — the primary driver, supplying the interface transaction rows.
- CE_BANK_ACCTS_GT_V (VIEW) — supplies bank account identifiers, account numbers, names, currencies, and the reconciliation status used in the filter.
- CE_BANK_BRANCHES_V (VIEW) — supplies bank branch and bank name information.
- CE_STATEMENT_RECONCILS_ALL (SYNONYM) — referenced in a NOT EXISTS subquery to exclude transactions already reconciled.
- CE_SYSTEM_PARAMETERS (SYNONYM) — provides the set of books and legal entity context.
- GL_SETS_OF_BOOKS (VIEW) — joined to obtain the functional (set of books) currency for amount conversion decisions.
The view joins these objects on set of books, bank branch, bank account, and legal entity, and it filters records so that only transactions whose status matches the bank account's reconciliation status are returned. The NOT EXISTS clause explicitly removes any transaction that already has a current, matched reconciliation record of reference type 'ROI_LINE', ensuring the result set represents only unclearing candidates.
Key Columns
The view projects a large column list. Notable columns include:
- ROW_ID — the interface row identifier.
- MULTI_SELECT — a literal flag ('N') used by multi-select UI flows.
- BANK_ACCOUNT_ID, TRX_ID — foreign keys to the bank account and transaction.
- TRX_TYPE, TYPE_MEANING — transaction type code and its display meaning.
- TRX_NUMBER, TRX_DATE, CLEARED_DATE — transaction identifiers and dates.
- CURRENCY_CODE, AMOUNT, BANK_ACCOUNT_AMOUNT, AMOUNT_CLEARED — monetary values, with DECODE logic selecting functional, bank, or foreign amounts depending on the transaction currency relative to the set of books and bank account currency.
- GL_DATE, STATUS_DSP, STATUS — accounting date and status indicators.
- BANK_ACCOUNT_NUM, BANK_ACCOUNT_NAME, BANK_NAME — descriptive bank and account attributes.
- MATURITY_DATE, BATCH_NAME, AGENT — additional descriptive fields, included with NULL or placeholder values where not applicable.
Common Use Cases and Queries
The principal use case is identifying transactions that can be uncleared. A typical query filters by bank account and status:
SELECT trx_id, trx_number, trx_type, currency_code,
amount, amount_cleared, cleared_date, status
FROM apps.ce_999_reversal_v
WHERE bank_account_id = :p_bank_account_id
AND status = 'CLEARED';
Reporting use cases include reconciling unclearing candidates against bank statement lines and producing audit extracts of transactions pending reversal. Because the view already enforces the NOT EXISTS exclusion against current matched reconciliations, callers can rely on its output for reversal staging without reimplementing that logic. Queries are typically restricted by BANK_ACCOUNT_ID, TRX_DATE, or STATUS to keep result sets manageable, and access should be granted through the standard APPS synonym rather than the underlying interface views.
-
View: CE_999_REVERSAL_V 12.2.2
Open interface transactions for unclearing
APPS.CE_999_REVERSAL_V·↳ CE_999_INTERFACE_V·↳ CE_BANK_ACCTS_GT_V·↳ CE_BANK_BRANCHES_V·Explore CE module →
-
Reconciled transactions
APPS.CE_RECONCILED_TRANSACTIONS_V·↳ CE_101_RECONCILED_V·↳ CE_200_RECONCILED_V·↳ CE_222_RECONCILED_V·Explore CE module →
-
View: CE_200_RECONCILED_V 12.2.2
Reconciled AP payments for unreconciling
APPS.CE_200_RECONCILED_V·↳ AP_CHECKS_ALL·↳ AP_INVOICE_SELECTION_CRITERIA·↳ AP_LOOKUP_CODES·Explore CE module →
-
View: CE_200_RECONCILED_V 12.1.1
Reconciled AP payments for unreconciling
APPS.CE_200_RECONCILED_V·↳ AP_CHECKS_ALL·↳ AP_INVOICE_SELECTION_CRITERIA·↳ AP_LOOKUP_CODES·Explore CE module →
-
Reconciled transactions
APPS.CE_RECONCILED_TRANSACTIONS_V·↳ CE_101_RECONCILED_V·↳ CE_200_RECONCILED_V·↳ CE_222_RECONCILED_V·Explore CE module →
-
View: CE_999_RECONCILED_V 12.1.1
Reconciled transactions for unreconciling via Open Interface
APPS.CE_999_RECONCILED_V·↳ CE_185_RECONCILED_V·↳ CE_999_INTERFACE_V·↳ CE_BANK_ACCTS_GT_V·Explore CE module →
-
Available transactions for reversal or unclearing
APPS.CE_REVERSAL_TRANSACTIONS_V·↳ CE_200_REVERSAL_V·↳ CE_222_REVERSAL_V·↳ CE_260_CF_REVERSAL_V·Explore CE module →
-
Available transactions for reversal or unclearing
APPS.CE_REVERSAL_TRANSACTIONS_V·↳ CE_200_REVERSAL_V·↳ CE_222_REVERSAL_V·↳ CE_260_CF_REVERSAL_V·Explore CE module →
-
View: CE_260_CF_REVERSAL_V 12.1.1
AR receipts for reversing or unclearing
APPS.CE_260_CF_REVERSAL_V·↳ CE_BANK_ACCTS_GT_V·↳ CE_BANK_BRANCHES_V·↳ CE_CASHFLOWS·Explore CE module →
-
View: CE_999_RECONCILED_V 12.2.2
Reconciled transactions for unreconciling via Open Interface
APPS.CE_999_RECONCILED_V·↳ CE_185_RECONCILED_V·↳ CE_999_INTERFACE_V·↳ CE_BANK_ACCTS_GT_V·Explore CE module →
-
View: CE_222_REVERSAL_V 12.2.2
AR receipts for reversing or unclearing
APPS.CE_222_REVERSAL_V·↳ AR_BATCHES_ALL·↳ AR_CASH_RECEIPTS_ALL·↳ AR_CASH_RECEIPT_HISTORY_ALL·Explore CE module →
-
View: CE_200_REVERSAL_V 12.2.2
AP transactions for unclearing
APPS.CE_200_REVERSAL_V·↳ AP_CHECKS_ALL·↳ AP_INV_SELECTION_CRITERIA_ALL·↳ AP_LOOKUP_CODES·Explore CE module →
-
View: CE_185_RECONCILED_V 12.2.2
Reconciled Treasury transactions for unreconciling via Open Interface
APPS.CE_185_RECONCILED_V·↳ CE_BANK_ACCOUNTS·↳ CE_BANK_ACCT_USES_ALL·↳ CE_LOOKUPS·Explore CE module →
-
View: CE_101_RECONCILED_V 12.1.1
Reconciled GL journals for unreconciling
APPS.CE_101_RECONCILED_V·↳ CE_BANK_ACCTS_GT_V·↳ CE_LOOKUPS·↳ CE_STATEMENT_HEADERS·Explore CE module →
-
View: CE_260_CF_RECONCILED_V 12.1.1
Reconciled cashflow receipts and payments for unreconciling
APPS.CE_260_CF_RECONCILED_V·↳ CE_BANK_ACCTS_GT_V·↳ CE_CASHFLOWS·↳ CE_CASHFLOW_ACCT_H·Explore CE module →
-
View: CE_185_RECONCILED_V 12.1.1
Reconciled Treasury transactions for unreconciling via Open Interface
APPS.CE_185_RECONCILED_V·↳ CE_BANK_ACCOUNTS·↳ CE_BANK_ACCT_USES_ALL·↳ CE_LOOKUPS·Explore CE module →
-
View: CE_200_REVERSAL_V 12.1.1
AP transactions for unclearing
APPS.CE_200_REVERSAL_V·↳ AP_CHECKS_ALL·↳ AP_INV_SELECTION_CRITERIA_ALL·↳ AP_LOOKUP_CODES·Explore CE module →
-
View: CE_222_REVERSAL_V 12.1.1
AR receipts for reversing or unclearing
APPS.CE_222_REVERSAL_V·↳ AR_BATCHES_ALL·↳ AR_CASH_RECEIPTS_ALL·↳ AR_CASH_RECEIPT_HISTORY_ALL·Explore CE module →
-
View: CE_222_RECONCILED_V 12.2.2
Reconciled AR receipts for unreconciling
APPS.CE_222_RECONCILED_V·↳ AR_BATCHES_ALL·↳ AR_CASH_RECEIPTS_ALL·↳ AR_CASH_RECEIPT_HISTORY_ALL·Explore CE module →
-
View: CE_260_CF_RECONCILED_V 12.2.2
Reconciled cashflow receipts and payments for unreconciling
APPS.CE_260_CF_RECONCILED_V·↳ CE_BANK_ACCTS_GT_V·↳ CE_CASHFLOWS·↳ CE_CASHFLOW_ACCT_H·Explore CE module →
-
View: CE_999_REVERSAL_V 12.1.1
Open interface transactions for unclearing
APPS.CE_999_REVERSAL_V·↳ CE_999_INTERFACE_V·↳ CE_BANK_ACCTS_GT_V·↳ CE_BANK_BRANCHES_V·Explore CE module →
-
View: CE_260_RECONCILED_V 12.1.1
Reconciled statement lines for unreconciling
APPS.CE_260_RECONCILED_V·↳ CE_BANK_ACCTS_GT_V·↳ CE_LOOKUPS·↳ CE_STATEMENT_HEADERS·Explore CE module →
-
Reconciled Payroll payments for unreconciling
APPS.CE_801_EFT_RECONCILED_V·↳ CE_BANK_ACCOUNTS·↳ CE_BANK_ACCT_USES_ALL·↳ CE_LOOKUPS·Explore CE module →
-
View: CE_222_RECONCILED_V 12.1.1
Reconciled AR receipts for unreconciling
APPS.CE_222_RECONCILED_V·↳ AR_BATCHES_ALL·↳ AR_CASH_RECEIPTS_ALL·↳ AR_CASH_RECEIPT_HISTORY_ALL·Explore CE module →
-
View: CE_260_CF_REVERSAL_V 12.2.2
AR receipts for reversing or unclearing
APPS.CE_260_CF_REVERSAL_V·↳ CE_BANK_ACCTS_GT_V·↳ CE_BANK_BRANCHES_V·↳ CE_CASHFLOWS·Explore CE module →
-
View: CE_260_RECONCILED_V 12.2.2
Reconciled statement lines for unreconciling
APPS.CE_260_RECONCILED_V·↳ CE_BANK_ACCTS_GT_V·↳ CE_LOOKUPS·↳ CE_STATEMENT_HEADERS·Explore CE module →
-
Reconciled Payroll payments for unreconciling
APPS.CE_801_EFT_RECONCILED_V·↳ CE_BANK_ACCOUNTS·↳ CE_BANK_ACCT_USES_ALL·↳ CE_LOOKUPS·Explore CE module →
-
View: CE_101_RECONCILED_V 12.2.2
Reconciled GL journals for unreconciling
APPS.CE_101_RECONCILED_V·↳ CE_BANK_ACCTS_GT_V·↳ CE_LOOKUPS·↳ CE_STATEMENT_HEADERS·Explore CE module →
-
View: CE_801_RECONCILED_V 12.1.1
Reconciled Payroll payments for unreconciling
APPS.CE_801_RECONCILED_V·↳ CE_BANK_ACCOUNTS·↳ CE_BANK_ACCT_USES_ALL·↳ CE_LOOKUPS·Explore CE module →
-
View: CE_801_RECONCILED_V 12.2.2
Reconciled Payroll payments for unreconciling
APPS.CE_801_RECONCILED_V·↳ CE_BANK_ACCOUNTS·↳ CE_BANK_ACCT_USES_ALL·↳ CE_LOOKUPS·Explore CE module →