Search Results cefv_ect
Overview
CEFV_ECT is a read-only business view owned by the APPS schema within the Cash Management (CE) product family in Oracle E-Business Suite 12.1.1 and 12.2.2. The view acts as a consolidated reporting layer over cash transaction interface data, joining transaction records to their associated bank account and currency conversion type information. It is registered as a VALID database object and is exposed through the ETRM (E-Business Suite Technical Reference Manual) as a documented business view.
In practice, CEFV_ECT allows external reports, reconciliation extracts, and integration programs to retrieve cash transaction details together with the human-readable bank account number and name in a single query, avoiding the need to manually join the interface and bank account tables. Because the view is created WITH READ ONLY, it is intended exclusively for query and reporting purposes and cannot be used as a DML target.
Underlying Base Objects
The view text is defined over three referenced base objects, each documented in the 12.2.2 metadata:
- CE_999_INTERFACE_V (VIEW) — the primary driver of the query, supplying transaction-level columns such as TRX_ID, TRX_TYPE_DSP, TRX_NUMBER, TRX_DATE, CURRENCY_CODE, STATUS_DSP, and the amount and GL date fields.
- CE_BANK_ACCOUNTS (SYNONYM) — joined on BANK_ACCOUNT_ID to supply BANK_ACCOUNT_NUM and BANK_ACCOUNT_NAME.
- GL_DAILY_CONVERSION_TYPES (SYNONYM) — joined with an outer-join condition (DC.CONVERSION_TYPE (+) = IV.EXCHANGE_RATE_TYPE) so that transactions without a matching conversion type still appear in the result set.
The alias assignment (IV, BA, DC) and the outer-join on GL_DAILY_CONVERSION_TYPES are significant: they indicate the view tolerates missing or unmapped exchange rate types rather than silently filtering those rows.
Key Columns
The view exposes the following columns, renamed where appropriate for readability:
- TRANSACTION_ID (IV.TRX_ID) — surrogate key of the underlying cash transaction.
- BANK_ACCOUNT_NUMBER (BA.BANK_ACCOUNT_NUM) and BANK_ACCOUNT_NAME — the account identification fields most commonly targeted when users search for "bank_account_number".
- TRANSACTION_TYPE, TRANSACTION_NUMBER, TRANSACTION_DATE, STATUS — descriptive transaction attributes.
- CURRENCY_CODE, EXCHANGE_RATE_TYPE, EXCHANGE_RATE_DATE, EXCHANGE_RATE — currency conversion context.
- AMOUNT, CLEARED_AMOUNT, CHARGES, GL_DATE — accounting and reconciliation values.
- CREATED_DATE, CREATED_BY, LAST_UPDATED_DATE, LAST_UPDATED_BY — audit trail columns inherited from the interface view.
Common Use Cases and Queries
Typical uses include bank reconciliation reporting, cash position analysis, and integration extracts that require the bank account number. A representative query returning transactions for a specific account is:
SELECT transaction_id, bank_account_number, bank_account_name,
transaction_number, transaction_date, currency_code,
amount, cleared_amount, status
FROM apps.cefv_ect
WHERE bank_account_number = '1234567890'
ORDER BY transaction_date DESC;
A second common pattern aggregates amounts by currency and account for cash reporting:
SELECT bank_account_number, currency_code,
SUM(amount) total_amount, SUM(cleared_amount) cleared
FROM apps.cefv_ect
GROUP BY bank_account_number, currency_code;
Because the view is read-only and references the interface view, callers should treat the results as query-time snapshots rather than persistent data, and should not attempt INSERT, UPDATE, or DELETE against CEFV_ECT.
-
View: CEFV_ECT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CEFV_ECT, object_name:CEFV_ECT, status:VALID, product: CE - Cash Management , description: Business View , implementation_dba_data: APPS.CEFV_ECT ,
-
View: CEFV_ECT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CEFV_ECT, object_name:CEFV_ECT, status:VALID, product: CE - Cash Management , description: Business View , implementation_dba_data: APPS.CEFV_ECT ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.CEFV_ECT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CEFV_ECT, object_name:CEFV_ECT, status:VALID,
-
VIEW: APPS.CEFV_ECT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CEFV_ECT, object_name:CEFV_ECT, status:VALID,
-
VIEW: APPS.CE_999_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_999_INTERFACE_V, object_name:CE_999_INTERFACE_V, status:VALID,
-
VIEW: APPS.CE_999_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_999_INTERFACE_V, object_name:CE_999_INTERFACE_V, status:VALID,
-
SYNONYM: APPS.CE_BANK_ACCOUNTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CE_BANK_ACCOUNTS, status:VALID,
-
SYNONYM: APPS.GL_DAILY_CONVERSION_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GL_DAILY_CONVERSION_TYPES, status:VALID,
-
SYNONYM: APPS.GL_DAILY_CONVERSION_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GL_DAILY_CONVERSION_TYPES, status:VALID,
-
SYNONYM: APPS.CE_BANK_ACCOUNTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CE_BANK_ACCOUNTS, status:VALID,
-
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 ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
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 ,