Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

3/17/24, 12:39 PM Oracle Apps R12 Help: Query to find Bank information

‫تسجيل الدخول‬ ‫إنشاء مدونة إلكترونية‬ ‫المزيد‬

Oracle Apps R12 Help


Helping Oracle community with Technical and Functional helps on Oracle Applications R12

DEC 12, 2012

Query to find Bank information

Bank, Bank Account, and Bank Branches information from R12.

-------------------------------------------------------------------------------
-- Query to find Bank, Bank Account, and Bank Branches information
-------------------------------------------------------------------------------
SELECT cba.bank_account_name "Bank Account Name",
cba.bank_account_num "Bank Account Number",
cba.multi_currency_allowed_flag "Multi Currency Flag",
cba.zero_amount_allowed "Zero Amount Flag",
cba.account_classification "Account Classification",
bb.bank_name "Bank Name",
bb.bank_branch_type "Bank Branch Type",
bb.bank_branch_name "Bank Branch Name",
bb.bank_branch_number "Bank Branch Number",
bb.eft_swift_code "Swift Code",
-- bb.description "Description",
ou.name "Operating Unit",
gcf.concatenated_segments "GL Code Combination"
FROM ce_bank_accounts cba,
ce_bank_acct_uses_all bau,
cefv_bank_branches bb,
hr_operating_units ou,
gl_code_combinations_kfv gcf
WHERE cba.bank_account_id = bau.bank_account_id SEARCH
AND cba.bank_branch_id = bb.bank_branch_id
Search
AND ou.organization_id = bau.org_id
AND cba.asset_code_combination_id = gcf.code_combination_id
ARCHIVE
AND (cba.end_date IS NULL OR cba.end_date > TRUNC(SYSDATE))
► 2023 (1)
ORDER BY TO_NUMBER(cba.bank_account_num);
► 2022 (3)
► 2018 (2)
Posted by Aopu Mohsin
► 2015 (1)
Labels: AP, Bank Branches, Banks, CE, SQL, Technical
► 2014 (7)
No comments: ► 2013 (9)

Post a Comment ▼ 2012 (26)


▼ Dec (26)
Query to find Concurrent Program
related information
Oracle Applications Modules
Query to find GL to AR Receiving
Transactions
Query to find GL Period-wise
Transaction Summary
Query to find Bank information
Query to find Service Contract, Line,
Subline, Ite...
Oracle Applications Shortcut Keys
Query to find GL Flexfield security
rule assignments
Query to read stored procedure off
the database

https://appsr12help.blogspot.com/2012/12/query-to-find-bank-information.html 1/3
3/17/24, 12:39 PM Oracle Apps R12 Help: Query to find Bank information
Newer Post Home Older Post Query to test if a value is a number
or string
Subscribe to: Post Comments (Atom) Query to validate email address in
Oracle
Query to list Customer (Party),
Account, Site data
Oracle Service Request Escalation
Process Guide
FND_PROFILE and FND_GLOBAL
values
Query to find first and last day of
previous month
Query to find DB_LINK in an Oracle
instance
Query to find Request Group for
concurrent program
Query to change Oracle Applications
password for a...
Query to find concurrent request
status
Query to find Application Short
Name of a module
Query to find all responsibilities of a
user
Query to add any responsibility to a
user
Query to add SysAdmin
responsibility to a user
Query to find runtime of a concurrent
program
Query to find Concurrent Programs
associated with ...
Query to find Parameters and Value
Sets associated...

ABOUT ME
Aopu Mohsin

View my complete profile

LABELS
Alert (1)
AP (4)
AR (1)
Bank Branches (1)
Banks (1)
BI Publisher (1)
CE (1)
Concurrent Program (7)
Customer (1)
Date (1)
DB Links (1)
DBA (1)
DFF (1)
Documentation (1)
Email Address (1)
FND Lookup (2)
FND Profile (2)
Function (1)
GL (3)
Guide (3)
HRMS (2)
Left Outer Join (1)

https://appsr12help.blogspot.com/2012/12/query-to-find-bank-information.html 2/3
3/17/24, 12:39 PM Oracle Apps R12 Help: Query to find Bank information
LISTAGG (1)
Manual (2)
Number (1)
Oracle Applications (1)
Oracle Form (2)
Oracle Report (1)
Package (1)
Parameters (2)
Party (1)
Password (1)
Phone (1)
PL-SQL (7)
Query (4)
Reference (2)
REGEXP (1)
Request Groups (1)
Responsibilities (3)
Service Contracts (1)
Service Request (1)
Settings (3)
Setup (3)
Shell Script (1)
SQL (29)
String (2)
Sub-Ledger (2)
Supplier (1)
Sys Admin (15)
Tax (1)
Technical (23)
UNIX (1)
User (4)
Validation (1)
Value Sets (2)
XLA (2)

© 2021 Abul Mohsin. Powered by Blogger.

https://appsr12help.blogspot.com/2012/12/query-to-find-bank-information.html 3/3

You might also like