Search Results bank_account_number
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.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 ,
-
View: CEBV_ECT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CEBV_ECT, object_name:CEBV_ECT, status:VALID, product: CE - Cash Management , description: Business View , implementation_dba_data: APPS.CEBV_ECT ,
-
View: CEBV_ECT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CEBV_ECT, object_name:CEBV_ECT, status:VALID, product: CE - Cash Management , description: Business View , implementation_dba_data: APPS.CEBV_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_BANK_STATEMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CEFV_BANK_STATEMENTS, object_name:CEFV_BANK_STATEMENTS, status:VALID, product: CE - Cash Management , description: Business View , implementation_dba_data: APPS.CEFV_BANK_STATEMENTS ,
-
View: CEFV_BANK_STATEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CEFV_BANK_STATEMENTS, object_name:CEFV_BANK_STATEMENTS, status:VALID, product: CE - Cash Management , description: Business View , implementation_dba_data: APPS.CEFV_BANK_STATEMENTS ,
-
View: CEBV_BANK_ACCOUNTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CEBV_BANK_ACCOUNTS, object_name:CEBV_BANK_ACCOUNTS, status:VALID, product: CE - Cash Management , description: Business view , implementation_dba_data: APPS.CEBV_BANK_ACCOUNTS ,
-
View: CEBV_BANK_ACCOUNTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CEBV_BANK_ACCOUNTS, object_name:CEBV_BANK_ACCOUNTS, status:VALID, product: CE - Cash Management , description: Business view , implementation_dba_data: APPS.CEBV_BANK_ACCOUNTS ,
-
View: CEFV_BANK_ACCOUNTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CEFV_BANK_ACCOUNTS, object_name:CEFV_BANK_ACCOUNTS, status:VALID, product: CE - Cash Management , description: Business view , implementation_dba_data: APPS.CEFV_BANK_ACCOUNTS ,
-
View: CEFV_BANK_ACCOUNTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CEFV_BANK_ACCOUNTS, object_name:CEFV_BANK_ACCOUNTS, status:VALID, product: CE - Cash Management , description: Business view , implementation_dba_data: APPS.CEFV_BANK_ACCOUNTS ,
-
View: CE_P_BA_SIGNATORY_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_P_BA_SIGNATORY_HIST_V, object_name:CE_P_BA_SIGNATORY_HIST_V, status:VALID, product: CE - Cash Management , description: Public view to show consolidated information of the bank account signatory's history for audit purposes , implementation_dba_data: APPS.CE_P_BA_SIGNATORY_HIST_V ,
-
View: CE_P_BA_SIGNATORY_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_P_BA_SIGNATORY_HIST_V, object_name:CE_P_BA_SIGNATORY_HIST_V, status:VALID, product: CE - Cash Management , description: Public view to show consolidated information of the bank account signatory's history for audit purposes , implementation_dba_data: APPS.CE_P_BA_SIGNATORY_HIST_V ,
-
View: CEFV_CASH_FORECAST_CELLS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CEFV_CASH_FORECAST_CELLS, object_name:CEFV_CASH_FORECAST_CELLS, status:VALID, product: CE - Cash Management , description: Business View , implementation_dba_data: APPS.CEFV_CASH_FORECAST_CELLS ,
-
View: CEFV_CASH_FORECAST_CELLS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CEFV_CASH_FORECAST_CELLS, object_name:CEFV_CASH_FORECAST_CELLS, status:VALID, product: CE - Cash Management , description: Business View , implementation_dba_data: APPS.CEFV_CASH_FORECAST_CELLS ,
-
View: CEBV_CASH_FORECAST_CELLS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CEBV_CASH_FORECAST_CELLS, object_name:CEBV_CASH_FORECAST_CELLS, status:VALID, product: CE - Cash Management , description: Business View , implementation_dba_data: APPS.CEBV_CASH_FORECAST_CELLS ,
-
View: CEBV_CASH_FORECAST_CELLS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CEBV_CASH_FORECAST_CELLS, object_name:CEBV_CASH_FORECAST_CELLS, status:VALID, product: CE - Cash Management , description: Business View , implementation_dba_data: APPS.CEBV_CASH_FORECAST_CELLS ,