Search Results ce_200_transactions_v
Overview
CE_200_TRANSACTIONS_V is a Cash Management (CE) view owned by the APPS schema in Oracle E-Business Suite. Its documented purpose is to expose available AP payments for reconciliation or clearing. In practical terms, the view presents a bank-centric, reconciliation-ready extract of Oracle Payables payment records — checks, electronic payments, and related disbursements — that have not yet been fully reconciled against a bank statement line. Cash Management's manual and automatic reconciliation programs, as well as the AutoBank Reconciliation engine, consume rows from this view as candidate payment transactions.
Because the object is a view rather than a table, it does not store data itself. Instead it derives a normalized, presentation-oriented result set that blends payment header data, bank account context, currency conversion logic, lookup meanings, and reconciliation audit columns. The result set has a consistent shape that the reconciliation user interface and the Cash Management reconciliation workbench expect, allowing AP payments to be displayed side by side with statement lines irrespective of the underlying Payables tables. The view carries Status VALID and is shipped with 12.1.1 and 12.2.2, where the underlying Payables data model (notably AP_CHECKS_ALL) is unchanged in the areas used here.
Underlying Base Objects
The view is defined over a documented set of base objects, which follow a consistent pattern of joining Payables payment data to Cash Management bank account, lookup, and system-parameter infrastructure:
- AP_CHECKS_ALL / AP_PAYMENT_HISTORY / AP_PAYMENT_HISTORY_ALL — the primary source of payment rows, statuses, cleared amounts, exchange information, and check-level attributes.
- CE_BANK_ACCOUNTS / CE_BANK_ACCT_USES_ALL / CE_GL_ACCOUNTS_CCID — supply the internal bank account name, number, and accounting context against which the payment will be reconciled.
- HZ_PARTIES — provides the bank and branch party names used to label the bank account.
- CE_LOOKUPS / AP_LOOKUP_CODES — resolve status and transaction type codes into display meanings.
- GL_SETS_OF_BOOKS / CE_SYSTEM_PARAMETERS — determine the ledger currency, enabling the view to decide whether a payment amount is already in the ledger currency or requires conversion via the exchange rate stored on the payment.
- GL_DAILY_CONVERSION_TYPES — resolves the conversion rate type used for cleared versus uncleared payments.
- AP_INV_SELECTION_CRITERIA_ALL / CE_STATEMENT_RECONCILS_ALL — link payment batches and statement reconciliation records.
- CE_AUTO_BANK_CLEAR and FND_GLOBAL — package calls supplying automatic clearing behavior and the runtime session context (org, user) that drives security filtering.
The view therefore behaves as an integration layer: it flattens many-to-one joins across Payables and Cash Management into a single row per payment candidate, with currency-normalized amounts ready for display.
Key Columns
The documented view text exposes several important columns, often through DECODE and TO_CHAR expressions. Notable items include the row identifier (based on the AP_CHECKS rowid), a hard-coded indicator column, bank account identifiers and descriptive name/number, the bank and branch party names, CHECK_ID, a literal 'PAYMENT' transaction category, payment method or status meaning, check number in both character and numeric form, currency code, transaction amount, and a currency-normalized amount. The view also produces cleared amount and cleared base amount columns with DECODE logic that maps the status 'CLEARED BUT UNACCOUNTED' to 'CLEARED', accounting date, status lookup code, check date, cleared date, future pay due date, cleared exchange date, exchange rate type, and user conversion type. Timestamp columns and the session/security columns derived from FND_GLOBAL and CE_SECURITY_PROFILES_GT complete the reconciliation context.
Common Use Cases and Queries
Typical usage centers on reconciliation reporting and integration extract. A basic query lists unreconciled payments for a bank account:
- List available payments for a bank account:
SELECT check_id, check_number, amount, currency_code, status_lookup_code FROM ce_200_transactions_v WHERE bank_account_id = :p_bank_account_id; - Filter by status: add
AND status_lookup_code = 'CLEARED'to isolate already-cleared items. - Currency-normalized totals:
SELECT currency_code, SUM(amount) FROM ce_200_transactions_v GROUP BY currency_code; - Join to statement reconciliation: join on check_id to AP or CE reconciliation tables to trace which payments remain outstanding.
Because the view is secured by Cash Management security profiles, results returned to an end user are automatically restricted to the bank accounts and organizations the user is authorized to access. This makes the view suitable both for ad hoc reporting and for feeding downstream reconciliation processes.
-
View: CE_200_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_200_TRANSACTIONS_V, object_name:CE_200_TRANSACTIONS_V, status:VALID, product: CE - Cash Management , description: Available AP payments for reconciliation or clearing , implementation_dba_data: APPS.CE_200_TRANSACTIONS_V ,
-
View: CE_200_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_200_TRANSACTIONS_V, object_name:CE_200_TRANSACTIONS_V, status:VALID, product: CE - Cash Management , description: Available AP payments for reconciliation or clearing , implementation_dba_data: APPS.CE_200_TRANSACTIONS_V ,
-
APPS.CE_CEXAVBCH_XMLP_PKG SQL Statements
12.2.2
-
APPS.CE_CEXAVBCH_XMLP_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.CE_GL_ACCOUNTS_CCID
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CE_GL_ACCOUNTS_CCID, status:VALID,
-
PACKAGE: APPS.CE_AUTO_BANK_CLEAR
12.2.2
owner:APPS, object_type:PACKAGE, object_name:CE_AUTO_BANK_CLEAR, status:VALID,
-
SYNONYM: APPS.AP_PAYMENT_HISTORY
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AP_PAYMENT_HISTORY, status:VALID,
-
PACKAGE: APPS.CE_AUTO_BANK_CLEAR
12.1.1
owner:APPS, object_type:PACKAGE, object_name:CE_AUTO_BANK_CLEAR, status:VALID,
-
PACKAGE BODY: APPS.CE_CEXAVBCH_XMLP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CE_CEXAVBCH_XMLP_PKG, status:VALID,
-
PACKAGE BODY: APPS.CE_CEXAVBCH_XMLP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CE_CEXAVBCH_XMLP_PKG, status:VALID,
-
SYNONYM: APPS.CE_SECURITY_PROFILES_GT
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CE_SECURITY_PROFILES_GT, status:VALID,
-
SYNONYM: APPS.CE_GL_ACCOUNTS_CCID
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CE_GL_ACCOUNTS_CCID, status:VALID,
-
SYNONYM: APPS.AP_PAYMENT_HISTORY
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AP_PAYMENT_HISTORY, status:VALID,
-
SYNONYM: APPS.CE_SECURITY_PROFILES_GT
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CE_SECURITY_PROFILES_GT, status:VALID,
-
SYNONYM: APPS.AP_INV_SELECTION_CRITERIA_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AP_INV_SELECTION_CRITERIA_ALL, status:VALID,
-
SYNONYM: APPS.CE_STATEMENT_RECONCILS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CE_STATEMENT_RECONCILS_ALL, status:VALID,
-
SYNONYM: APPS.CE_STATEMENT_RECONCILS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CE_STATEMENT_RECONCILS_ALL, status:VALID,
-
SYNONYM: APPS.AP_INV_SELECTION_CRITERIA_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AP_INV_SELECTION_CRITERIA_ALL, status:VALID,
-
PACKAGE BODY: APPS.CE_AUTO_BANK_CLEAR1
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CE_AUTO_BANK_CLEAR1, status:VALID,
-
SYNONYM: APPS.CE_SYSTEM_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CE_SYSTEM_PARAMETERS, status:VALID,
-
SYNONYM: APPS.AP_PAYMENT_HISTORY_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AP_PAYMENT_HISTORY_ALL, status:VALID,
-
SYNONYM: APPS.CE_SYSTEM_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CE_SYSTEM_PARAMETERS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.AP_PAYMENT_HISTORY_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AP_PAYMENT_HISTORY_ALL, status:VALID,
-
PACKAGE BODY: APPS.CE_AUTO_BANK_CLEAR1
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CE_AUTO_BANK_CLEAR1, status:VALID,
-
PACKAGE BODY: APPS.CE_AUTO_BANK_MATCH
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CE_AUTO_BANK_MATCH, status:VALID,
-
PACKAGE BODY: APPS.CE_AUTO_BANK_MATCH
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CE_AUTO_BANK_MATCH, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.CE_BANK_ACCT_USES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CE_BANK_ACCT_USES_ALL, status:VALID,
-
SYNONYM: APPS.CE_BANK_ACCT_USES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CE_BANK_ACCT_USES_ALL, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.CE_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_LOOKUPS, object_name:CE_LOOKUPS, status:VALID,
-
VIEW: APPS.CE_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_LOOKUPS, object_name:CE_LOOKUPS, status:VALID,
-
SYNONYM: APPS.AP_CHECKS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AP_CHECKS_ALL, status:VALID,
-
SYNONYM: APPS.AP_CHECKS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AP_CHECKS_ALL, status:VALID,
-
SYNONYM: APPS.CE_BANK_ACCOUNTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CE_BANK_ACCOUNTS, status:VALID,
-
VIEW: APPS.CE_200_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_200_TRANSACTIONS_V, object_name:CE_200_TRANSACTIONS_V, status:VALID,
-
SYNONYM: APPS.CE_BANK_ACCOUNTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CE_BANK_ACCOUNTS, status:VALID,
-
VIEW: APPS.CE_200_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_200_TRANSACTIONS_V, object_name:CE_200_TRANSACTIONS_V, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
SYNONYM: APPS.GL_DAILY_CONVERSION_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GL_DAILY_CONVERSION_TYPES, status:VALID,
-
PACKAGE BODY: APPS.CE_CEXAVBCH_XMLP_PKG
12.1.1
-
SYNONYM: APPS.GL_DAILY_CONVERSION_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GL_DAILY_CONVERSION_TYPES, status:VALID,
-
PACKAGE BODY: APPS.CE_CEXAVBCH_XMLP_PKG
12.2.2
-
APPS.CE_AUTO_BANK_MATCH SQL Statements
12.2.2
-
VIEW: APPS.AP_LOOKUP_CODES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_LOOKUP_CODES, object_name:AP_LOOKUP_CODES, status:VALID,
-
VIEW: APPS.AP_LOOKUP_CODES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_LOOKUP_CODES, object_name:AP_LOOKUP_CODES, status:VALID,
-
APPS.CE_AUTO_BANK_CLEAR1 SQL Statements
12.2.2