Search Results ce_system_parameters_all
Overview
CE_SYSTEM_PARAMETERS_ALL is the Cash Management system options table in Oracle E-Business Suite (Release 12.1.1 and 12.2.2). It stores the configuration parameters that govern how Oracle Cash Management behaves for a given organization and ledger context, including the accounting set of books used for reconciliation accounting and the default receivables transaction type used when bank statement lines are matched and converted into receipt-related transactions. Because Cash Management operates at the boundary between treasury functions and subledger accounting, this table links general ledger accounting configuration to receivables processing.
The ETRM metadata classifies this object heuristically as a link in a Data Vault model. That classification is derived from the foreign key structure: the table does not describe a single business entity but rather associates entities — the general ledger set of books and the receivables transaction type. In Data Vault terms, CE_SYSTEM_PARAMETERS_ALL is best understood as a junction or link record tying together GL and AR reference data within the Cash Management configuration context, rather than a hub or satellite.
Key Information Stored
The physical table includes an internal surrogate primary key and audit columns (creation, update, and related who-columns), but the documented metadata emphasizes two significant business-referencing columns:
- SET_OF_BOOKS_ID — Foreign key to GL_SETS_OF_BOOKS. Identifies the ledger (set of books) to which these Cash Management system options apply, anchoring reconciliation accounting to the correct chart of accounts and calendar.
- RECEIVABLES_TRX_ID — Foreign key to AR_RECEIVABLES_TRX_ALL. Identifies the receivables transaction type used by default when Cash Management creates or matches receipt transactions originating from bank statement processing.
The presence of a conflict-detection or "ALL" designation in the table name indicates that the table is not org-striped at the base-table level; in EBS the "_ALL" convention typically denotes tables whose contents can span multiple operating units and are secured through Row Level Security or analogous access mechanisms. SET_OF_BOOKS_ID is the principal business-key candidate for isolating a single configuration record, since system options are scoped by ledger. The surrogate primary key uniquely identifies each row internally, while the ledger identifier serves as the meaningful external key for lookups and joins.
Common Use Cases and Queries
Typical scenarios include verifying which ledger a Cash Management configuration is tied to, confirming the default receivables transaction type used in reconciliation, and joining system options to GL and AR reference tables for reporting.
- Retrieve system options for a ledger:
SELECT set_of_books_id, receivables_trx_id FROM ce_system_parameters_all WHERE set_of_books_id = :p_sob_id; - Resolve the ledger name:
SELECT csp.*, gsob.name FROM ce_system_parameters_all csp, gl_sets_of_books gsob WHERE csp.set_of_books_id = gsob.set_of_books_id; - Resolve the default receivables transaction type:
SELECT csp.set_of_books_id, art.name, art.type FROM ce_system_parameters_all csp, ar_receivables_trx_all art WHERE csp.receivables_trx_id = art.receivables_trx_id;
These queries support reconciliation setup validation, implementation audits, and configuration migration checks between environments.
Related Objects
- GL_SETS_OF_BOOKS — joined via CE_SYSTEM_PARAMETERS_ALL.SET_OF_BOOKS_ID; supplies ledger name, chart of accounts, and calendar.
- AR_RECEIVABLES_TRX_ALL — joined via CE_SYSTEM_PARAMETERS_ALL.RECEIVABLES_TRX_ID; supplies the receivables transaction type used in reconciliation.
- CE_BANK_ACCOUNTS / CE_BANK_ACCT_USES_ALL — bank account configuration consumed alongside Cash Management system options.
- CE_STATEMENT_HEADERS_ALL / CE_STATEMENT_LINES — bank statement processing objects whose accounting behavior depends on the system options defined here.
These objects collectively form the configuration and transactional backbone of Cash Management reconciliation in Oracle EBS.
-
Table: CE_SYSTEM_PARAMETERS_ALL
12.2.2
product: CE - Cash Management , description: System options , implementation_dba_data: Not implemented in this database ,
-
Table: CE_SYSTEM_PARAMETERS_ALL
12.1.1
product: CE - Cash Management , description: System options , implementation_dba_data: Not implemented in this database ,
-
Table: AR_RECEIVABLES_TRX_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_RECEIVABLES_TRX_ALL, object_name:AR_RECEIVABLES_TRX_ALL, status:VALID, product: AR - Receivables , description: Accounting information for Receivables activities , implementation_dba_data: AR.AR_RECEIVABLES_TRX_ALL ,
-
Table: AR_RECEIVABLES_TRX_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_RECEIVABLES_TRX_ALL, object_name:AR_RECEIVABLES_TRX_ALL, status:VALID, product: AR - Receivables , description: Accounting information for Receivables activities , implementation_dba_data: AR.AR_RECEIVABLES_TRX_ALL ,
-
12.1.1 FND Design Data
12.1.1
-
View: CE_SYSTEM_PARAMETERS
12.2.2
product: CE - Cash Management , implementation_dba_data: Not implemented in this database ,
-
12.2.2 FND Design Data
12.2.2
-
View: CE_SYSTEM_PARAMETERS
12.1.1
product: CE - Cash Management , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.CE_999_PKG
12.2.2
-
APPS.CE_AUTO_BANK_UNREC SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CE_999_PKG
12.1.1
-
APPS.CE_AUTO_BANK_UNREC SQL Statements
12.2.2
-
Table: GL_SETS_OF_BOOKS
12.2.2
product: GL - General Ledger , description: Set of books definitions , implementation_dba_data: Not implemented in this database ,
-
Table: GL_SETS_OF_BOOKS
12.1.1
product: GL - General Ledger , description: Set of books definitions , implementation_dba_data: Not implemented in this database ,
-
TABLE: CE.CE_SYSTEM_PARAMETERS
12.1.1
owner:CE, object_type:TABLE, fnd_design_data:CE.CE_SYSTEM_PARAMETERS, object_name:CE_SYSTEM_PARAMETERS, status:VALID,
-
TABLE: CE.CE_SYSTEM_PARAMETERS
12.2.2
owner:CE, object_type:TABLE, fnd_design_data:CE.CE_SYSTEM_PARAMETERS, object_name:CE_SYSTEM_PARAMETERS, status:VALID,
-
PACKAGE BODY: APPS.ITA_SETUP_GROUPS_PKG
12.1.1
-
PACKAGE BODY: APPS.CE_AUTO_BANK_UNREC
12.1.1
-
PACKAGE BODY: APPS.CE_AUTO_BANK_UNREC
12.2.2
-
APPS.CE_AUTO_BANK_IMPORT SQL Statements
12.1.1
-
APPS.CE_AUTO_BANK_IMPORT SQL Statements
12.2.2
-
APPS.ITA_SETUP_GROUPS_PKG dependencies on FND_APPLICATION
12.1.1
-
APPS.CE_AUTO_BANK_UNREC dependencies on CE_BANK_ACCOUNTS
12.1.1
-
APPS.CE_AUTO_BANK_UNREC dependencies on CE_SYSTEM_PARAMETERS
12.1.1
-
APPS.CE_AUTO_BANK_UNREC dependencies on CE_SYSTEM_PARAMETERS
12.2.2
-
APPS.CE_AUTO_BANK_UNREC dependencies on CE_BANK_ACCOUNTS
12.2.2
-
APPS.ITA_SETUP_GROUPS_PKG dependencies on ITA_SETUP_GROUPS_B
12.1.1
-
APPS.CE_AUTO_BANK_IMPORT dependencies on CE_BANK_ACCTS_GT_V
12.1.1
-
APPS.CE_AUTO_BANK_IMPORT dependencies on CE_BANK_ACCTS_GT_V
12.2.2
-
APPS.CE_AUTO_BANK_IMPORT dependencies on CE_BANK_ACCOUNTS_V
12.2.2
-
APPS.CE_AUTO_BANK_IMPORT dependencies on CE_BANK_ACCOUNTS_V
12.1.1
-
APPS.CE_AUTO_BANK_IMPORT dependencies on CE_BANK_ACCOUNTS
12.1.1
-
PACKAGE BODY: APPS.ITA_RECORD_CURR_STATUS_PKG
12.1.1
-
APPS.CE_AUTO_BANK_IMPORT dependencies on CE_BANK_ACCOUNTS
12.2.2
-
APPS.CE_AUTO_BANK_IMPORT dependencies on CE_AUTO_BANK_REC
12.1.1
-
APPS.CE_AUTO_BANK_IMPORT dependencies on CE_AUTO_BANK_REC
12.2.2
-
PACKAGE BODY: APPS.CE_AUTO_BANK_IMPORT
12.1.1
-
PACKAGE BODY: APPS.CE_AUTO_BANK_IMPORT
12.2.2
-
PACKAGE BODY: APPS.AD_MORG
12.1.1
-
PACKAGE BODY: APPS.AD_MORG
12.2.2
-
APPS.CE_AUTO_BANK_IMPORT dependencies on CE_AUTO_BANK_IMPORT
12.1.1
-
APPS.CE_AUTO_BANK_IMPORT dependencies on CE_AUTO_BANK_IMPORT
12.2.2
-
eTRM - CE Tables and Views
12.1.1
description: This table stores the error or warning messages from ZBA deal creation process ,
-
eTRM - CE Tables and Views
12.2.2
description: This table stores the error or warning messages from ZBA deal creation process ,