Search Results ce_line_interface_errors
Overview
CE_LINE_INTERFACE_ERRORS is a Cash Management (CE) interface error table in Oracle E-Business Suite 12.1.1 and 12.2.2. It stores validation errors encountered when bank statement lines loaded into the open interface table CE_STATEMENT_LINES_INTERFACE fail validation before they can be processed into the production statement tables (CE_STATEMENT_HEADERS and CE_STATEMENT_LINES). The table acts as a diagnostic repository: each row identifies the offending statement line together with a message name describing the specific validation failure, allowing users to query, correct, and resubmit rejected records.
From a Data Vault modeling perspective, the ETRM metadata classifies this object heuristically as a link. That classification reflects its structure: rather than storing a durable business entity, the table records an association between a statement interface line (identified by statement number, bank account number, and line number) and an error message. The heuristic should be treated as a modeling suggestion only; in relational terms the table is a transactional error log whose rows are meaningful only in the context of the interface line they reference.
Key Information Stored
The documented physical schema in 12.2.2 contains seven columns. The most significant are:
- STATEMENT_NUMBER — the bank statement number of the interface line that failed validation; part of the foreign key to CE_STATEMENT_LINES_INTERFACE.
- BANK_ACCOUNT_NUM — the bank account number to which the statement line belongs; together with STATEMENT_NUMBER and LINE_NUMBER it forms the composite reference to the source interface row.
- LINE_NUMBER — the line number within the statement, completing the composite business key that links the error back to the specific interface record.
- MESSAGE_NAME — the name of the validation or error message raised during processing, indicating why the line was rejected.
- APPLICATION_SHORT_NAME — the short name of the application owning the message, with a foreign key to FND_APPLICATION.
- CREATION_DATE — timestamp when the error row was inserted, useful for audit and aging analysis.
- CREATED_BY — the application user or process that created the error record.
The documented metadata does not identify a single-column surrogate primary key. The effective business key candidates are the composite of STATEMENT_NUMBER, BANK_ACCOUNT_NUM, and LINE_NUMBER, which also constitute the foreign key relationship to CE_STATEMENT_LINES_INTERFACE. MESSAGE_NAME and APPLICATION_SHORT_NAME qualify the error.
Common Use Cases and Queries
Typical scenarios include diagnosing rejected bank statement loads, monitoring interface health, and generating error reports for reconciliation staff. A common query joins errors to the interface table to retrieve the full rejected line:
- List all errors for a bank account:
SELECT statement_number, line_number, message_name FROM ce_line_interface_errors WHERE bank_account_num = :acct; - Resolve the error message text: join APPLICATION_SHORT_NAME and MESSAGE_NAME to FND_APPLICATION and the message tables to obtain the descriptive text.
- Aging analysis: group by TRUNC(CREATION_DATE) to trend error volumes after each statement load.
- Identify problem statements:
SELECT statement_number, COUNT(*) FROM ce_line_interface_errors GROUP BY statement_number ORDER BY 2 DESC;
Related Objects
CE_LINE_INTERFACE_ERRORS sits within the Cash Management bank statement interface flow. The most significant related objects are:
- CE_STATEMENT_LINES_INTERFACE — the interface table holding unvalidated statement lines; joined on STATEMENT_NUMBER, BANK_ACCOUNT_NUM, and LINE_NUMBER.
- FND_APPLICATION — supplies the application owning the error message; joined on APPLICATION_SHORT_NAME.
- FND_NEW_MESSAGES / FND_MESSAGES — message repository supplying MESSAGE_NAME text.
- CE_STATEMENT_HEADERS and CE_STATEMENT_LINES — final production tables receiving successfully validated interface rows.
- CE_STATEMENT_HEADERS_INTERFACE — the header-level interface counterpart to the line interface.
- Bank Statement Import concurrent programs — the processing that populates CE_STATEMENT_LINES_INTERFACE and writes validation errors to this table.
-
Table: CE_LINE_INTERFACE_ERRORS
12.2.2
owner:CE, object_type:TABLE, fnd_design_data:CE.CE_LINE_INTERFACE_ERRORS, object_name:CE_LINE_INTERFACE_ERRORS, status:VALID, product: CE - Cash Management , description: CE_STATEMENT_LINES_INTERFACE validation errors , implementation_dba_data: CE.CE_LINE_INTERFACE_ERRORS ,
-
Table: CE_LINE_INTERFACE_ERRORS
12.1.1
owner:CE, object_type:TABLE, fnd_design_data:CE.CE_LINE_INTERFACE_ERRORS, object_name:CE_LINE_INTERFACE_ERRORS, status:VALID, product: CE - Cash Management , description: CE_STATEMENT_LINES_INTERFACE validation errors , implementation_dba_data: CE.CE_LINE_INTERFACE_ERRORS ,
-
APPS.CE_LINE_INTERFACE_ERRORS_PKG SQL Statements
12.2.2
-
VIEW: CE.CE_LINE_INTERFACE_ERRORS#
12.2.2
owner:CE, object_type:VIEW, object_name:CE_LINE_INTERFACE_ERRORS#, status:VALID,
-
APPS.CE_LINE_INTERFACE_ERRORS_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CE_LINE_INTERFACE_ERRORS_PKG
12.2.2
-
SYNONYM: APPS.CE_LINE_INTERFACE_ERRORS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CE_LINE_INTERFACE_ERRORS, status:VALID,
-
TABLE: CE.CE_LINE_INTERFACE_ERRORS
12.1.1
owner:CE, object_type:TABLE, fnd_design_data:CE.CE_LINE_INTERFACE_ERRORS, object_name:CE_LINE_INTERFACE_ERRORS, status:VALID,
-
PACKAGE BODY: APPS.CE_LINE_INTERFACE_ERRORS_PKG
12.1.1
-
SYNONYM: APPS.CE_LINE_INTERFACE_ERRORS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CE_LINE_INTERFACE_ERRORS, status:VALID,
-
VIEW: CE.CE_LINE_INTERFACE_ERRORS#
12.2.2
-
TABLE: CE.CE_LINE_INTERFACE_ERRORS
12.2.2
owner:CE, object_type:TABLE, fnd_design_data:CE.CE_LINE_INTERFACE_ERRORS, object_name:CE_LINE_INTERFACE_ERRORS, status:VALID,
-
Table: CE_STATEMENT_LINES_INTERFACE
12.2.2
owner:CE, object_type:TABLE, fnd_design_data:CE.CE_STATEMENT_LINES_INTERFACE, object_name:CE_STATEMENT_LINES_INTERFACE, status:VALID, product: CE - Cash Management , description: Open interface for bank statement lines , implementation_dba_data: CE.CE_STATEMENT_LINES_INTERFACE ,
-
PACKAGE BODY: APPS.CE_LINE_INTERFACE_ERRORS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CE_LINE_INTERFACE_ERRORS_PKG, status:VALID,
-
PACKAGE BODY: APPS.CE_LINE_INTERFACE_ERRORS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CE_LINE_INTERFACE_ERRORS_PKG, status:VALID,
-
Table: CE_STATEMENT_LINES_INTERFACE
12.1.1
owner:CE, object_type:TABLE, fnd_design_data:CE.CE_STATEMENT_LINES_INTERFACE, object_name:CE_STATEMENT_LINES_INTERFACE, status:VALID, product: CE - Cash Management , description: Open interface for bank statement lines , implementation_dba_data: CE.CE_STATEMENT_LINES_INTERFACE ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
Table: FND_APPLICATION
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_APPLICATION, object_name:FND_APPLICATION, status:VALID, product: FND - Application Object Library , description: Applications registered with Oracle Application Object Library , implementation_dba_data: APPLSYS.FND_APPLICATION ,
-
Table: FND_APPLICATION
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_APPLICATION, object_name:FND_APPLICATION, status:VALID, product: FND - Application Object Library , description: Applications registered with Oracle Application Object Library , implementation_dba_data: APPLSYS.FND_APPLICATION ,
-
APPS.CE_LINE_INTERFACE_ERRORS_PKG dependencies on CE_LINE_INTERFACE_ERRORS
12.2.2
-
APPS.CE_LINE_INTERFACE_ERRORS_PKG dependencies on CE_LINE_INTERFACE_ERRORS
12.1.1
-
eTRM - CE Tables and Views
12.2.2
description: This table stores the error or warning messages from ZBA deal creation process ,
-
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 ,
-
eTRM - CE Tables and Views
12.1.1
description: This table stores the error or warning messages from ZBA deal creation process ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1