Search Results bic_number
Overview
IBY_PAYEE_ASSIGNED_BANKACCT_V is an Oracle E-Business Suite view owned by the APPS schema within the IBY (Payments) product. It presents the association between external payees and the bank accounts assigned to them for disbursement purposes. In payment processing terminology, an "instrument assignment" links a payee to a specific payment instrument — in this case a bank account — and defines ordering, validity dates, and payment function. This view therefore exposes the effective set of bank account assignments that a payee may use when funds are disbursed.
Because the view joins payee header information with instrument assignment records and the corresponding external bank account details, it serves as a consolidated reporting surface for payables and payments integration. It is commonly referenced by reporting tools, custom concurrent programs, and interfaces that need to resolve which bank account, branch, and related identifiers belong to a given payee party. The availability of the BRANCH_NAME column makes it directly relevant to searches involving payee bank branch details.
Underlying Base Objects
The documented view definition references three base objects joined together. IBY_PMT_INSTR_USES_ALL supplies the instrument assignment rows; IBY_EXTERNAL_PAYEES_ALL supplies the payee party, site, and organization context; and IBY_PAYEE_ALL_BANKACCT_V supplies the external bank account attributes. The ETRM metadata further identifies the underlying base objects as CE_BANK_BRANCHES_V, IBY_EXTERNAL_PAYEES_ALL, IBY_EXT_BANK_ACCOUNTS, and IBY_PMT_INSTR_USES_ALL. The branch name and branch number attributes ultimately trace to the bank branch definition, exposed via CE_BANK_BRANCHES_V, while the account-level attributes are drawn from IBY_EXT_BANK_ACCOUNTS through the IBY_PAYEE_ALL_BANKACCT_V layer.
The join conditions are restrictive by design. Instrument assignments are joined to bank accounts on INSTRUMENT_ID = EXT_BANK_ACCOUNT_ID and to payees on EXT_PMT_PARTY_ID = EXT_PAYEE_ID. Only rows where INSTRUMENT_TYPE is 'BANKACCOUNT' and PAYMENT_FLOW is 'DISBURSEMENT' are returned, so the view reflects outbound payment assignments exclusively.
Key Columns
- INSTR_ASSIGNMENT_ID — the instrument assignment identifier from IBY_PMT_INSTR_USES_ALL, uniquely identifying the payee-to-account link.
- PAYMENT_FUNCTION — the function the assignment serves for the payee.
- PARTY_ID, PARTY_SITE_ID, SUPPLIER_SITE_ID, ORG_ID, ORG_TYPE — payee party and site identifiers, providing the organizational context of the assignment.
- ORDER_OF_PREFERENCE, START_DATE, END_DATE — assignment ordering and effective dating, used to determine which account applies at a given point in time.
- EXT_BANK_ACCOUNT_ID, ACCOUNT_NUMBER, IBAN — the external bank account identifier and its account number and IBAN.
- BANK_NAME, BANK_NUMBER, BRANCH_NAME, BRANCH_NUMBER — the bank and branch attributes, with BRANCH_NAME being the searched column.
- BIC_NUMBER — mapped from the IBAN attribute in the view text, carrying the BIC value.
- CURRENCY_CODE, DESCRIPTION — account currency and descriptive text.
- Audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) — standard who-columns derived from the instrument assignment.
Common Use Cases and Queries
A frequent requirement is identifying the bank and branch assigned to a payee for disbursement. The following query returns payee assignments together with their branch details:
SELECT party_id, supplier_site_id, account_number, bank_name, branch_name, branch_number, currency_code FROM apps.iby_payee_assigned_bankacct_v WHERE branch_name IS NOT NULL;
To resolve the currently effective assignment for a payee, filter on the validity dates and order of preference:
SELECT party_id, instr_assignment_id, account_number, branch_name FROM apps.iby_payee_assigned_bankacct_v WHERE party_id = :p_party_id AND TRUNC(SYSDATE) BETWEEN start_date AND NVL(end_date, TRUNC(SYSDATE)) ORDER BY order_of_preference;
For reporting on bank branch distribution, aggregate by branch name and number. Because the view is restricted to the disbursement flow and bank account instruments, results reflect only outbound payment assignments and exclude other instrument types. Queries should therefore not be assumed to represent all payee instruments; they represent the disbursement bank account subset defined by the view predicate.
-
View: IBY_PAYEE_ASSIGNED_BANKACCT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_PAYEE_ASSIGNED_BANKACCT_V, object_name:IBY_PAYEE_ASSIGNED_BANKACCT_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_PAYEE_ASSIGNED_BANKACCT_V ,
-
VIEW: APPS.IBY_PAYEE_ASSIGNED_BANKACCT_V
12.2.2
-
View: IBY_PAYEE_ASSIGNED_BANKACCT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_PAYEE_ASSIGNED_BANKACCT_V, object_name:IBY_PAYEE_ASSIGNED_BANKACCT_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_PAYEE_ASSIGNED_BANKACCT_V ,
-
VIEW: APPS.IBY_PAYEE_ASSIGNED_BANKACCT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_PAYEE_ASSIGNED_BANKACCT_V, object_name:IBY_PAYEE_ASSIGNED_BANKACCT_V, status:VALID,
-
View: IBY_PAYEE_ALL_BANKACCT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_PAYEE_ALL_BANKACCT_V, object_name:IBY_PAYEE_ALL_BANKACCT_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_PAYEE_ALL_BANKACCT_V ,
-
VIEW: APPS.IBY_FNDCPT_PAYER_ASSGN_BA_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IBY_FNDCPT_PAYER_ASSGN_BA_V, status:VALID,
-
VIEW: APPS.IBY_PAYEE_ASSIGNED_BANKACCT_V
12.1.1
-
View: IBY_PAYEE_ALL_BANKACCT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_PAYEE_ALL_BANKACCT_V, object_name:IBY_PAYEE_ALL_BANKACCT_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_PAYEE_ALL_BANKACCT_V ,
-
VIEW: APPS.IBY_PAYEE_ALL_BANKACCT_V
12.1.1
-
VIEW: APPS.IBY_PAYEE_ASSIGNED_BANKACCT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_PAYEE_ASSIGNED_BANKACCT_V, object_name:IBY_PAYEE_ASSIGNED_BANKACCT_V, status:VALID,
-
VIEW: APPS.IBY_FNDCPT_PAYER_ALL_INSTRS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_FNDCPT_PAYER_ALL_INSTRS_V, object_name:IBY_FNDCPT_PAYER_ALL_INSTRS_V, status:VALID,
-
VIEW: APPS.IBY_FNDCPT_PAYER_ALL_INSTRS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_FNDCPT_PAYER_ALL_INSTRS_V, object_name:IBY_FNDCPT_PAYER_ALL_INSTRS_V, status:VALID,
-
VIEW: APPS.IBY_PAYEE_ALL_BANKACCT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_PAYEE_ALL_BANKACCT_V, object_name:IBY_PAYEE_ALL_BANKACCT_V, status:VALID,
-
View: IBY_FNDCPT_PAYER_ALL_INSTRS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_FNDCPT_PAYER_ALL_INSTRS_V, object_name:IBY_FNDCPT_PAYER_ALL_INSTRS_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_FNDCPT_PAYER_ALL_INSTRS_V ,
-
VIEW: APPS.IBY_PAYEE_ALL_BANKACCT_V
12.2.2
-
VIEW: APPS.IBY_FNDCPT_PAYER_ASSGN_INSTR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_FNDCPT_PAYER_ASSGN_INSTR_V, object_name:IBY_FNDCPT_PAYER_ASSGN_INSTR_V, status:VALID,
-
VIEW: APPS.IBY_PAYEE_ALL_BANKACCT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_PAYEE_ALL_BANKACCT_V, object_name:IBY_PAYEE_ALL_BANKACCT_V, status:VALID,
-
VIEW: APPS.IBY_FNDCPT_PAYER_ASSGN_INSTR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_FNDCPT_PAYER_ASSGN_INSTR_V, object_name:IBY_FNDCPT_PAYER_ASSGN_INSTR_V, status:VALID,
-
View: IBY_FNDCPT_PAYER_ALL_INSTRS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_FNDCPT_PAYER_ALL_INSTRS_V, object_name:IBY_FNDCPT_PAYER_ALL_INSTRS_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_FNDCPT_PAYER_ALL_INSTRS_V ,
-
View: IBY_FNDCPT_PAYER_ASSGN_INSTR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_FNDCPT_PAYER_ASSGN_INSTR_V, object_name:IBY_FNDCPT_PAYER_ASSGN_INSTR_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_FNDCPT_PAYER_ASSGN_INSTR_V ,
-
View: IBY_FNDCPT_PAYER_ASSGN_INSTR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_FNDCPT_PAYER_ASSGN_INSTR_V, object_name:IBY_FNDCPT_PAYER_ASSGN_INSTR_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_FNDCPT_PAYER_ASSGN_INSTR_V ,
-
eTRM - IBY Tables and Views
12.1.1
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,
-
eTRM - IBY Tables and Views
12.2.2
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,