Search Results branch_code
Overview
APPS.PAY_JP_SS_BANK_BRANCH_BRANCH_LOV_V is a reporting and list-of-values (LOV) view within the Oracle E-Business Suite Payroll (PAY) module, specifically scoped to Japanese localization functionality. The view exposes the set of enabled bank branch records used by Oracle Payroll for Japan, presenting each branch together with its owning bank code, branch code, branch name, phonetic (Kana) branch name, and effective date ranges. Because the view filters to ENABLED_FLAG = 'Y', it returns only currently active branches suitable for selection in forms, concurrent programs, and integration interfaces.
The name suffix "_LOV_V" indicates the object is intended to back an LOV region in an Oracle Forms-based EBS screen, most likely within a Japanese bank or payroll setup form where an end user must pick a valid branch. The view is owned by APPS and is treated as an Oracle proprietary, confidential object documented in ETRM 12.2.2. Its behavior is consistent across Oracle EBS 12.1.1 and 12.2.2 because the underlying definition relies on a synonym to a base table that remains stable in both releases.
Underlying Base Objects
The view is defined over a single referenced base object, PAY_JP_BANK_BRANCHES, accessed through a synonym. The view performs no joins; it is a projection and filter over that table. The documented view text is:
SELECT BANK_CODE, BRANCH_CODE, BRANCH_NAME, BRANCH_NAME_KANA, NVL(START_DATE_ACTIVE, TO_DATE('01010001','DDMMYYYY')) START_DATE_ACTIVE, NVL(END_DATE_ACTIVE, TO_DATE('31124712','DDMMYYYY')) END_DATE_ACTIVE FROM PAY_JP_BANK_BRANCHES WHERE ENABLED_FLAG = 'Y' ORDER BY BANK_CODE, BRANCH_CODE
Two implementation details are significant. First, the ENABLED_FLAG = 'Y' predicate restricts the result set to enabled branches only, so disabled or obsolete entries in the base table are invisible to consumers of the view. Second, the NVL expressions substitute default sentinel dates for null effective dates: 01010001 (1 January, year 1) for a missing start date and 31124712 (31 December, year 4712) for a missing end date. This guarantees that every row returns a bounded date range, which is important for date-driven LOV validation logic.
Key Columns
BANK_CODE— Identifier of the parent bank. Together withBRANCH_CODEit forms the logical key used for ordering and lookup.BRANCH_CODE— The branch identifier, and the field the user searched for. This is the value typically captured into payroll or payment setup when a branch is selected.BRANCH_NAME— The display name of the branch, normally presented in the LOV list to the end user.BRANCH_NAME_KANA— The phonetic Kana rendering of the branch name, supporting Japanese-language matching and sorting conventions.START_DATE_ACTIVE— Beginning of the branch's active period, defaulted to01010001when null.END_DATE_ACTIVE— End of the branch's active period, defaulted to31124712when null.
Common Use Cases and Queries
The primary use case is populating an LOV that allows a user to select a valid Japanese bank branch. A typical lookup by branch code is:
SELECT bank_code, branch_code, branch_name FROM apps.pay_jp_ss_bank_branch_lov_v WHERE branch_code = :branch_code;SELECT branch_code, branch_name, branch_name_kana FROM apps.pay_jp_ss_bank_branch_lov_v WHERE bank_code = :bank_code ORDER BY branch_code;SELECT COUNT(*) FROM apps.pay_jp_ss_bank_branch_lov_v WHERE bank_code = :bank_code;
Integration and reporting scenarios include validating that a stored branch code still corresponds to an enabled branch, extracting a branch reference list for a payment file, and driving date-effective checks using the defaulted START_DATE_ACTIVE and END_DATE_ACTIVE columns. Because only enabled branches are exposed, the view is appropriate wherever downstream logic must exclude inactive branches without adding its own filter.
-
VIEW: APPS.PAY_JP_SS_BANK_BRANCH_LOV_V
12.1.1
-
VIEW: APPS.PAY_JP_SS_BANK_BRANCH_LOV_V
12.2.2
-
VIEW: HR.PER_JP_BANK_LOOKUPS_ALL#
12.2.2
-
APPS.FEM_BRANCHES_PKG SQL Statements
12.1.1
-
VIEW: HR.PAY_ZA_CDV_PARAMETERS#
12.2.2
-
VIEW: HR.PAY_JP_BANK_BRANCHES#
12.2.2
-
View: PAY_JP_SS_BANK_BRANCH_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_SS_BANK_BRANCH_LOV_V, object_name:PAY_JP_SS_BANK_BRANCH_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_BRANCH_LOV_V ,
-
VIEW: HR.PAY_BANK_BRANCHES#
12.2.2
-
VIEW: HR.PAY_ZA_BRANCH_CDV_DETAILS#
12.2.2
-
View: PAY_JP_SS_BANK_BRANCH_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_SS_BANK_BRANCH_LOV_V, object_name:PAY_JP_SS_BANK_BRANCH_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_BRANCH_LOV_V ,
-
TABLE: HR.PER_JP_BANK_LOOKUPS_ALL
12.1.1
owner:HR, object_type:TABLE, object_name:PER_JP_BANK_LOOKUPS_ALL, status:VALID,
-
TABLE: HR.PER_JP_BANK_LOOKUPS_ALL
12.2.2
owner:HR, object_type:TABLE, object_name:PER_JP_BANK_LOOKUPS_ALL, status:VALID,
-
PACKAGE BODY: APPS.FEM_BRANCHES_PKG
12.1.1
-
VIEW: CE.CE_UPG_BANK_REC#
12.2.2
-
TRIGGER: APPS.PAY_ZA_TEMP_BRANCH_DETAILS_ARI
12.1.1
-
APPS.PAY_BANK_BRANCHES_PKG SQL Statements
12.2.2
-
VIEW: APPS.PERBV_JP_BANK_LOOKUPS_V
12.1.1
-
VIEW: CE.CE_UPGA_BANK_REC#
12.2.2
-
TABLE: HR.PAY_ZA_BRANCH_CDV_DETAILS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_ZA_BRANCH_CDV_DETAILS, object_name:PAY_ZA_BRANCH_CDV_DETAILS, status:VALID,
-
TABLE: HR.PAY_ZA_BRANCH_CDV_DETAILS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_ZA_BRANCH_CDV_DETAILS, object_name:PAY_ZA_BRANCH_CDV_DETAILS, 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,
-
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,
-
TRIGGER: APPS.PAY_ZA_TEMP_BRANCH_DETAILS_ARI
12.2.2
-
APPS.PAY_BANK_BRANCHES_PKG SQL Statements
12.1.1
-
VIEW: APPS.PERBV_JP_BANK_LOOKUPS_V
12.2.2
-
VIEW: HR.PAY_ZA_TEMP_BRANCH_DETAILS#
12.2.2
-
TABLE: FEM.FEM_BRANCHES_PRIV
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_BRANCHES_PRIV, status:VALID,
-
VIEW: APPS.PAYBV_JP_BANK_BRANCHES_V
12.1.1
-
VIEW: APPS.PAYBV_JP_BANK_BRANCHES_V
12.2.2
-
TABLE: FEM.FEM_BRANCHES_TL
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_BRANCHES_TL, status:VALID,
-
View: PAY_ZA_EXTERNAL_ACCOUNTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_ZA_EXTERNAL_ACCOUNTS_V, object_name:PAY_ZA_EXTERNAL_ACCOUNTS_V, status:VALID, product: PAY - Payroll , description: List of payments with their associated bank details. , implementation_dba_data: APPS.PAY_ZA_EXTERNAL_ACCOUNTS_V ,
-
TABLE: MSC.MSC_INT_SOURCE1
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_INT_SOURCE1, object_name:MSC_INT_SOURCE1, status:VALID,
-
VIEW: HR.PAY_BANK_BRANCHES#
12.2.2
owner:HR, object_type:VIEW, object_name:PAY_BANK_BRANCHES#, status:VALID,
-
TABLE: MSC.MSC_INT_SOURCE2
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_INT_SOURCE2, object_name:MSC_INT_SOURCE2, status:VALID,
-
VIEW: APPS.PAY_ZA_EXTERNAL_ACCOUNTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_ZA_EXTERNAL_ACCOUNTS_V, object_name:PAY_ZA_EXTERNAL_ACCOUNTS_V, status:VALID,
-
VIEW: APPS.PAY_ZA_EXTERNAL_ACCOUNTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_ZA_EXTERNAL_ACCOUNTS_V, object_name:PAY_ZA_EXTERNAL_ACCOUNTS_V, status:VALID,
-
TABLE: FEM.FEM_BRANCHES_B
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_BRANCHES_B, status:VALID,
-
VIEW: HR.PER_JP_BANK_LOOKUPS_ALL#
12.2.2
owner:HR, object_type:VIEW, object_name:PER_JP_BANK_LOOKUPS_ALL#, status:VALID,
-
VIEW: HR.PAY_JP_BANK_BRANCHES#
12.2.2
owner:HR, object_type:VIEW, object_name:PAY_JP_BANK_BRANCHES#, status:VALID,
-
VIEW: HR.PAY_ZA_BRANCH_CDV_DETAILS#
12.2.2
owner:HR, object_type:VIEW, object_name:PAY_ZA_BRANCH_CDV_DETAILS#, status:VALID,
-
TABLE: AR.HZ_BANK_VAL_GT
12.1.1
owner:AR, object_type:TABLE, object_name:HZ_BANK_VAL_GT, status:VALID,
-
VIEW: APPS.PAY_JP_SS_BANK_BRANCH_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_SS_BANK_BRANCH_LOV_V, object_name:PAY_JP_SS_BANK_BRANCH_LOV_V, status:VALID,
-
View: PAY_ZA_EXTERNAL_ACCOUNTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_ZA_EXTERNAL_ACCOUNTS_V, object_name:PAY_ZA_EXTERNAL_ACCOUNTS_V, status:VALID, product: PAY - Payroll , description: List of payments with their associated bank details. , implementation_dba_data: APPS.PAY_ZA_EXTERNAL_ACCOUNTS_V ,
-
TABLE: HR.PAY_BANK_BRANCHES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_BANK_BRANCHES, object_name:PAY_BANK_BRANCHES, status:VALID,
-
TABLE: MSC.MSC_INT_SOURCE1
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_INT_SOURCE1, object_name:MSC_INT_SOURCE1, status:VALID,
-
TABLE: HR.PAY_BANK_BRANCHES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_BANK_BRANCHES, object_name:PAY_BANK_BRANCHES, status:VALID,
-
TABLE: MSC.MSC_INT_SOURCE2
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_INT_SOURCE2, object_name:MSC_INT_SOURCE2, status:VALID,
-
VIEW: APPS.PAY_ZA_EXTERNAL_ACCOUNTS_V
12.2.2
-
VIEW: HR.PAY_ZA_CDV_PARAMETERS#
12.2.2
owner:HR, object_type:VIEW, object_name:PAY_ZA_CDV_PARAMETERS#, status:VALID,
-
VIEW: APPS.PERBV_JP_BANK_LOOKUPS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:PERBV_JP_BANK_LOOKUPS_V, status:VALID,