Search Results pay_jp_banks
Overview
PAY_JP_BANKS is a Payroll (PAY) module table owned by the HR schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It stores master reference information for Japanese financial institutions (banks) used within Japanese payroll and banking processes. The table acts as the bank-level parent in a two-tier hierarchy: banks are defined in PAY_JP_BANKS, and their individual branches are defined in the child table PAY_JP_BANK_BRANCHES. This structure supports Japanese payroll disbursements, employee bank account maintenance, and regulatory bank-master reporting.
Under the heuristic Data Vault classification mined from the documented foreign key structure, PAY_JP_BANKS is hub-leaning. In Data Vault modeling terms, it behaves as a hub: its primary key (BANK_CODE) is the stable business key that anchors the bank entity, while descriptive attributes such as BANK_NAME and BANK_NAME_KANA would typically be modeled as satellite attributes. The absence of incoming foreign keys other than from the branch table reinforces this hub interpretation.
Key Information Stored
The documented physical schema for 12.2.2 contains 11 columns. The most significant are:
BANK_CODE— The primary key and sole documented unique index (PAY_JP_BANKS_PK). It is the business-key candidate that uniquely identifies each Japanese bank and is the column referenced by the branch table.BANK_NAME— The display name of the bank. Documented as a unique index candidate (PAY_JP_BANKS_U1).BANK_NAME_KANA— The phonetic (kana) rendering of the bank name. Also documented as a unique index candidate (PAY_JP_BANKS_U2), reflecting common Japanese searching and sorting on phonetic spelling.ENABLED_FLAG— Controls whether the bank record is active and selectable in payroll processing.START_DATE_ACTIVEandEND_DATE_ACTIVE— Date-effective bounds that govern when the bank definition is valid for use.CREATION_DATE,CREATED_BY— Standard audit columns recording record creation.LAST_UPDATE_DATE,LAST_UPDATED_BY,LAST_UPDATE_LOGIN— Standard audit columns recording the most recent modification and the login session responsible.
Notably, BANK_CODE serves as both the surrogate/primary key and the business key; unlike many EBS tables, there is no separate numeric BANK_ID surrogate documented here.
Common Use Cases and Queries
Typical scenarios include validating bank codes during employee bank-account entry, generating bank master listings for payroll reporting, and joining to branch data to resolve full bank/branch references.
A basic lookup of active banks:
SELECT bank_code, bank_name, bank_name_kana FROM pay_jp_banks WHERE enabled_flag = 'Y' AND SYSDATE BETWEEN NVL(start_date_active, SYSDATE) AND NVL(end_date_active, SYSDATE + 1);
Resolving banks with their branches:
SELECT b.bank_code, b.bank_name, br.branch_name FROM pay_jp_banks b JOIN pay_jp_bank_branches br ON br.bank_code = b.bank_code;
Phonetic search is common in Japanese reporting, so queries filtering on BANK_NAME_KANA support kana-based lookups and sorting.
Related Objects
The following objects are most significant in relation to PAY_JP_BANKS:
PAY_JP_BANK_BRANCHES— The primary dependent table. It referencesPAY_JP_BANKSthrough the foreign key columnPAY_JP_BANK_BRANCHES.BANK_CODE → PAY_JP_BANKS. Any bank must exist here before its branches can be defined.- The
PAY_JP_BANKS_PKprimary key index and the unique indexesPAY_JP_BANKS_U1(BANK_NAME) andPAY_JP_BANKS_U2(BANK_NAME_KANA) — enforce uniqueness at the database level. - Japanese payroll bank-processing and disbursement logic in the PAY module, which consumes bank and branch master data to validate employee bank details.
The FK relationship confirms a hub-to-child dependency, where PAY_JP_BANKS is the parent reference and PAY_JP_BANK_BRANCHES carries the qualifying branch detail.
-
Table: PAY_JP_BANKS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_JP_BANKS, object_name:PAY_JP_BANKS, status:VALID, product: PAY - Payroll , description: This table is used for Japanese bank information. , implementation_dba_data: HR.PAY_JP_BANKS ,
-
Table: PAY_JP_BANKS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_JP_BANKS, object_name:PAY_JP_BANKS, status:VALID, product: PAY - Payroll , description: This table is used for Japanese bank information. , implementation_dba_data: HR.PAY_JP_BANKS ,
-
TABLE: HR.PAY_JP_BANKS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_JP_BANKS, object_name:PAY_JP_BANKS, status:VALID,
-
View: PER_JP_BANK_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_JP_BANK_LOOKUPS, object_name:PER_JP_BANK_LOOKUPS, status:VALID, product: PER - Human Resources , description: Concatenated view of PAY_JP_BANKS and PAY_JP_BANK_BRANCHES. , implementation_dba_data: APPS.PER_JP_BANK_LOOKUPS ,
-
VIEW: HR.PAY_JP_BANKS#
12.2.2
owner:HR, object_type:VIEW, object_name:PAY_JP_BANKS#, status:VALID,
-
VIEW: APPS.PAY_JP_SS_BANK_LOV_V
12.2.2
-
VIEW: HR.PAY_JP_BANKS#
12.2.2
-
VIEW: APPS.PER_JP_BANK_LOOKUP_V
12.2.2
-
SYNONYM: PUBLIC.PAY_JP_BANKS
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:PAY_JP_BANKS, status:VALID,
-
VIEW: APPS.PER_JP_BANK_LOOKUPS
12.1.1
-
VIEW: APPS.PER_JP_BANK_LOOKUPS
12.2.2
-
VIEW: APPS.PAYBV_JP_BANKS_V
12.2.2
-
VIEW: APPS.PAYBV_JP_BANKS_V
12.1.1
-
VIEW: APPS.PAY_JP_SS_BANK_LOV_V
12.1.1
-
SYNONYM: APPS.PAY_JP_BANKS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PAY_JP_BANKS, status:VALID,
-
TABLE: HR.PAY_JP_BANKS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_JP_BANKS, object_name:PAY_JP_BANKS, status:VALID,
-
View: PER_JP_BANK_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_JP_BANK_LOOKUPS, object_name:PER_JP_BANK_LOOKUPS, status:VALID, product: PER - Human Resources , description: Concatenated view of PAY_JP_BANKS and PAY_JP_BANK_BRANCHES. , implementation_dba_data: APPS.PER_JP_BANK_LOOKUPS ,
-
SYNONYM: APPS.PAY_JP_BANKS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PAY_JP_BANKS, status:VALID,
-
VIEW: APPS.PER_JP_BANK_LOOKUP_V
12.1.1
-
PACKAGE: APPS.PAY_JP_ZENGIN_TAPE
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PAY_JP_ZENGIN_TAPE, status:VALID,
-
Table: PAY_JP_BANK_BRANCHES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_JP_BANK_BRANCHES, object_name:PAY_JP_BANK_BRANCHES, status:VALID, product: PAY - Payroll , description: This table is used for Japanese bank branch information. , implementation_dba_data: HR.PAY_JP_BANK_BRANCHES ,
-
View: PER_JP_BANK_LOOKUP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_JP_BANK_LOOKUP_V, object_name:PER_JP_BANK_LOOKUP_V, status:VALID, product: PER - Human Resources , description: JP specific , implementation_dba_data: APPS.PER_JP_BANK_LOOKUP_V ,
-
Table: PAY_JP_BANK_BRANCHES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_JP_BANK_BRANCHES, object_name:PAY_JP_BANK_BRANCHES, status:VALID, product: PAY - Payroll , description: This table is used for Japanese bank branch information. , implementation_dba_data: HR.PAY_JP_BANK_BRANCHES ,
-
View: PER_JP_BANK_LOOKUP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_JP_BANK_LOOKUP_V, object_name:PER_JP_BANK_LOOKUP_V, status:VALID, product: PER - Human Resources , description: JP specific , implementation_dba_data: APPS.PER_JP_BANK_LOOKUP_V ,
-
View: PAY_JP_SS_BANK_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_SS_BANK_LOV_V, object_name:PAY_JP_SS_BANK_LOV_V, status:VALID, product: PAY - Payroll , description: This view is only used for the Japanese localisation. , implementation_dba_data: APPS.PAY_JP_SS_BANK_LOV_V ,
-
View: PAY_JP_SS_BANK_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_SS_BANK_LOV_V, object_name:PAY_JP_SS_BANK_LOV_V, status:VALID, product: PAY - Payroll , description: This view is only used for the Japanese localisation. , implementation_dba_data: APPS.PAY_JP_SS_BANK_LOV_V ,
-
PACKAGE BODY: APPS.PAY_JP_MAGTAPE_FORMAT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_JP_MAGTAPE_FORMAT_PKG, status:VALID,
-
TABLE: HR.PAY_JP_BANK_BRANCHES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_JP_BANK_BRANCHES, object_name:PAY_JP_BANK_BRANCHES, status:VALID,
-
TABLE: HR.PAY_JP_BANK_BRANCHES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_JP_BANK_BRANCHES, object_name:PAY_JP_BANK_BRANCHES, status:VALID,
-
PACKAGE: APPS.PAY_JP_ZENGIN_TAPE
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PAY_JP_ZENGIN_TAPE, status:VALID,
-
PACKAGE BODY: APPS.PAY_JP_MAGTAPE_FORMAT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_JP_MAGTAPE_FORMAT_PKG, status:VALID,
-
PACKAGE: APPS.PAY_JP_MAGTAPE_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PAY_JP_MAGTAPE_PKG, status:VALID,
-
PACKAGE: APPS.PAY_JP_MAGTAPE_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PAY_JP_MAGTAPE_PKG, status:VALID,
-
TRIGGER: APPS.PAY_JP_BANKS_WHO
12.2.2
owner:APPS, object_type:TRIGGER, object_name:PAY_JP_BANKS_WHO, status:VALID,
-
TRIGGER: APPS.PAY_JP_BANKS_WHO
12.1.1
owner:APPS, object_type:TRIGGER, object_name:PAY_JP_BANKS_WHO, status:VALID,
-
TRIGGER: APPS.PAY_JP_BANKS_WHO
12.1.1
-
PACKAGE BODY: APPS.PAY_PAYJPMAG_XMLP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_PAYJPMAG_XMLP_PKG, status:VALID,
-
APPS.PAY_PAYJPMAG_XMLP_PKG SQL Statements
12.1.1
-
TRIGGER: APPS.PAY_JP_BANKS_WHO
12.2.2
-
VIEW: APPS.PER_JP_BANK_LOOKUP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_JP_BANK_LOOKUP_V, object_name:PER_JP_BANK_LOOKUP_V, status:VALID,
-
VIEW: APPS.PER_JP_BANK_LOOKUP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_JP_BANK_LOOKUP_V, object_name:PER_JP_BANK_LOOKUP_V, status:VALID,
-
VIEW: APPS.PAY_JP_SS_BANK_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_SS_BANK_LOV_V, object_name:PAY_JP_SS_BANK_LOV_V, status:VALID,
-
PACKAGE BODY: APPS.PAY_JP_PAYSLIP_ARCHIVE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_JP_PAYSLIP_ARCHIVE, status:VALID,
-
PACKAGE BODY: APPS.PAY_JP_PAYSLIP_ARCHIVE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_JP_PAYSLIP_ARCHIVE, status:VALID,
-
VIEW: APPS.PAY_JP_SS_BANK_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_SS_BANK_LOV_V, object_name:PAY_JP_SS_BANK_LOV_V, status:VALID,
-
VIEW: APPS.CE_BU_PAY_EXTERNAL_ACCTS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:CE_BU_PAY_EXTERNAL_ACCTS_V, status:VALID,
-
VIEW: APPS.CE_BU_PAY_EXTERNAL_ACCTS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:CE_BU_PAY_EXTERNAL_ACCTS_V, status:VALID,
-
VIEW: APPS.PER_JP_BANK_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_JP_BANK_LOOKUPS, object_name:PER_JP_BANK_LOOKUPS, status:VALID,
-
VIEW: APPS.PER_JP_BANK_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_JP_BANK_LOOKUPS, object_name:PER_JP_BANK_LOOKUPS, status:VALID,
-
VIEW: APPS.PAYBV_JP_BANKS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:PAYBV_JP_BANKS_V, status:VALID,