Search Results ce_statement_reconciliations
Overview
The CE_STATEMENT_RECONCILIATIONS view is a secured reporting object in the Oracle E-Business Suite Cash Management (CE) module, owned by the APPS schema. It is a synonym-backed interface to the base table CE_STATEMENT_RECONCILS_ALL, exposing the reconciliation records that link bank statement lines to the corresponding accounting, cashflow, and statement entries matched against them during the bank reconciliation process. In Oracle EBS 12.1.1 and 12.2.2 the view is registered as VALID within the ETRM repository.
The object's primary role is to provide data security enforcement at query time. Rather than exposing all reconciliation rows to every user, the view filters records by the active operating unit, legal entity, and security profile assigned to the session. It queries CE_STATEMENT_RECONCILS_ALL and restricts the result set using CE_SECURITY_PROFILES_V, ensuring that users only see reconciliation activity belonging to organizations they are authorized to access. This makes the view suitable for custom reports, embedded analytics, and integrations that must respect Multi-Org Access Control (MOAC) and legal entity security without re-implementing that logic.
Underlying Base Objects
Per the documented ETRM metadata, CE_STATEMENT_RECONCILIATIONS is defined over the following referenced objects:
- CE_STATEMENT_RECONCILS_ALL (SYNONYM) — the base reconciliation table containing statement line matches.
- CE_SECURITY_PROFILES_V (VIEW) — provides the operating unit and legal entity IDs available to the current user session, driving the WHERE-clause filter.
- FND_ACCESS_CONTROL_UTIL, FND_GLOBAL, FND_PROFILE (PACKAGES) — EBS foundation utilities supplying session context such as operating unit, user ID, and responsibility.
- MO_GLOBAL (PACKAGE) — the Multi-Org initialization package used to establish the current org context.
- XTR_USER_ACCESS (PACKAGE) — used for user-level access restrictions, typically involving treasury or cash management role-based security.
The view therefore inherits the column set of the base statement reconciliations table while layering on the security predicate. Any insert, update, or delete against reconciliation data must target the underlying base table, not this view.
Key Columns
The view exposes the full reconciliation structure. Important columns include:
- STATEMENT_LINE_ID — identifier of the bank statement line being reconciled.
- REFERENCE_TYPE and REFERENCE_ID — the type of object matched to the statement line (for example JE_LINE, ROI_LINE, or STATEMENT) and its primary key.
- JE_HEADER_ID — the journal entry header associated with the reconciliation, where applicable.
- ORG_ID and LEGAL_ENTITY_ID — the operating unit and legal entity used for security filtering.
- REFERENCE_STATUS, STATUS_FLAG, ACTION_FLAG, CURRENT_RECORD_FLAG, AUTO_RECONCILED_FLAG — lifecycle and state indicators describing how the reconciliation was created and whether it was automatic or manual.
- AMOUNT — the reconciled amount.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — concurrent program execution context.
- ROWID — the pseudo-column identifier used for row-level addressing.
Common Use Cases and Queries
Typical scenarios include reporting on outstanding versus reconciled statement lines, auditing automatic reconciliations, and building custom cash position dashboards. Because security is enforced inside the view, simple selections require no additional org predicates.
SELECT statement_line_id,
reference_type,
reference_id,
je_header_id,
amount,
status_flag,
auto_reconciled_flag
FROM ce_statement_reconciliations
WHERE statement_line_id = :p_statement_line_id;
To review automatic reconciliation activity within a period:
SELECT csr.statement_line_id,
csr.reference_type,
csr.amount,
csr.creation_date
FROM ce_statement_reconciliations csr
WHERE csr.auto_reconciled_flag = 'Y'
AND csr.creation_date BETWEEN :p_from AND :p_to
ORDER BY csr.creation_date;
Note that the status, action, and current-record flags should be interpreted together with Cash Management reconciliation documentation, as their meaning depends on the reconciliation stage. The view is read-only by design and should be used consistently in custom code to preserve security and multi-org compliance.
-
View: CE_STATEMENT_RECONCILIATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_STATEMENT_RECONCILIATIONS, object_name:CE_STATEMENT_RECONCILIATIONS, status:VALID, product: CE - Cash Management , implementation_dba_data: APPS.CE_STATEMENT_RECONCILIATIONS ,
-
View: CE_STATEMENT_RECONCILIATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_STATEMENT_RECONCILIATIONS, object_name:CE_STATEMENT_RECONCILIATIONS, status:VALID, product: CE - Cash Management , implementation_dba_data: APPS.CE_STATEMENT_RECONCILIATIONS ,
-
PACKAGE: APPS.CE_STATEMENT_RECONS_PKG
12.1.1
-
PACKAGE: APPS.CE_STATEMENT_RECONS_PKG
12.2.2
-
VIEW: APPS.AR_RGW_CASH_MANAGEMENT_V
12.2.2
-
VIEW: APPS.AR_RGW_CASH_MANAGEMENT_V
12.1.1
-
APPS.CE_AUTO_BANK_CLEAR SQL Statements
12.2.2
-
APPS.CE_AUTO_BANK_CLEAR SQL Statements
12.1.1
-
View: AR_RGW_CASH_MANAGEMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_RGW_CASH_MANAGEMENT_V, object_name:AR_RGW_CASH_MANAGEMENT_V, status:VALID, product: AR - Receivables , description: (Release 10SC Only) , implementation_dba_data: APPS.AR_RGW_CASH_MANAGEMENT_V ,
-
View: AR_RGW_CASH_MANAGEMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_RGW_CASH_MANAGEMENT_V, object_name:AR_RGW_CASH_MANAGEMENT_V, status:VALID, product: AR - Receivables , description: (Release 10SC Only) , implementation_dba_data: APPS.AR_RGW_CASH_MANAGEMENT_V ,
-
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,
-
VIEW: APPS.AR_RGW_CASH_MANAGEMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_RGW_CASH_MANAGEMENT_V, object_name:AR_RGW_CASH_MANAGEMENT_V, status:VALID,
-
VIEW: APPS.AR_RGW_CASH_MANAGEMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_RGW_CASH_MANAGEMENT_V, object_name:AR_RGW_CASH_MANAGEMENT_V, status:VALID,
-
PACKAGE BODY: APPS.AR_PURGE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AR_PURGE, status:VALID,
-
PACKAGE BODY: APPS.AR_PURGE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AR_PURGE, status:VALID,
-
VIEW: APPS.CE_SECURITY_PROFILES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_SECURITY_PROFILES_V, object_name:CE_SECURITY_PROFILES_V, status:VALID,
-
VIEW: APPS.CE_SECURITY_PROFILES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_SECURITY_PROFILES_V, object_name:CE_SECURITY_PROFILES_V, status:VALID,
-
PACKAGE: APPS.XTR_USER_ACCESS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:XTR_USER_ACCESS, status:VALID,
-
PACKAGE: APPS.FND_ACCESS_CONTROL_UTIL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_ACCESS_CONTROL_UTIL, status:VALID,
-
PACKAGE: APPS.XTR_USER_ACCESS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:XTR_USER_ACCESS, status:VALID,
-
PACKAGE: APPS.FND_ACCESS_CONTROL_UTIL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_ACCESS_CONTROL_UTIL, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.CE_STATEMENT_RECONCILIATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_STATEMENT_RECONCILIATIONS, object_name:CE_STATEMENT_RECONCILIATIONS, status:VALID,
-
VIEW: APPS.CE_185_TRANSACTIONS_V
12.1.1
-
VIEW: APPS.AP_ENC_GL_PAY_V
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.AP_PURGE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AP_PURGE_PKG, status:VALID,
-
VIEW: APPS.CE_185_TRANSACTIONS_V
12.2.2
-
VIEW: APPS.CE_STATEMENT_RECONCILIATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_STATEMENT_RECONCILIATIONS, object_name:CE_STATEMENT_RECONCILIATIONS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
View: AP_ENC_GL_PAY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_ENC_GL_PAY_V, object_name:AP_ENC_GL_PAY_V, status:VALID, product: AP - Payables , implementation_dba_data: APPS.AP_ENC_GL_PAY_V ,
-
View: CE_185_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_185_TRANSACTIONS_V, object_name:CE_185_TRANSACTIONS_V, status:VALID, product: CE - Cash Management , description: Available Treasury transactions for reconciliation via Open Interface , implementation_dba_data: APPS.CE_185_TRANSACTIONS_V ,
-
View: CE_185_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_185_TRANSACTIONS_V, object_name:CE_185_TRANSACTIONS_V, status:VALID, product: CE - Cash Management , description: Available Treasury transactions for reconciliation via Open Interface , implementation_dba_data: APPS.CE_185_TRANSACTIONS_V ,
-
VIEW: APPS.AP_ENC_GL_PAY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_ENC_GL_PAY_V, object_name:AP_ENC_GL_PAY_V, status:VALID,
-
PACKAGE BODY: APPS.CE_STATEMENT_RECONS_PKG
12.1.1
-
PACKAGE BODY: APPS.CE_STATEMENT_RECONS_PKG
12.2.2
-
VIEW: APPS.CE_185_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_185_TRANSACTIONS_V, object_name:CE_185_TRANSACTIONS_V, status:VALID,
-
VIEW: APPS.CE_185_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_185_TRANSACTIONS_V, object_name:CE_185_TRANSACTIONS_V, status:VALID,
-
APPS.CE_ZBA_DEAL_GENERATION SQL Statements
12.1.1
-
APPS.CE_STATEMENT_RECONS_PKG SQL Statements
12.1.1
-
View: AP_AEL_SL_PAY_V
12.2.2
product: AP - Payables , implementation_dba_data: Not implemented in this database ,
-
APPS.CE_STATEMENT_RECONS_PKG SQL Statements
12.2.2
-
View: AP_AEL_SL_PAY_V
12.1.1
product: AP - Payables , implementation_dba_data: Not implemented in this database ,
-
View: AP_AEL_GL_PAY_V
12.1.1
product: AP - Payables , implementation_dba_data: Not implemented in this database ,
-
View: AP_AEL_GL_PAY_V
12.2.2
product: AP - Payables , implementation_dba_data: Not implemented in this database ,
-
APPS.AP_PURGE_PKG dependencies on CE_STATEMENT_RECONCILIATIONS
12.2.2
-
APPS.AR_PURGE dependencies on CE_STATEMENT_RECONCILIATIONS
12.2.2
-
APPS.AR_PURGE dependencies on CE_STATEMENT_RECONCILIATIONS
12.1.1