Search Results pay_jp_itax_person_v
Overview
PAY_JP_ITAX_PERSON_V is an APPS-owned database view within the Oracle E-Business Suite Payroll (PAY) product family, classified as VALID in the ETRM repository. Its stated purpose is to support the Japanese localization only; it is not a global payroll object. In EBS 12.1.1 and 12.2.2 the view serves as a reporting and integration surface for Japanese individual income tax (ITAX) person-level data, presenting a focused projection of the underlying action-information store rather than a normalized master entity.
The view filters records from PAY_ACTION_INFORMATION to a single semantic slice: rows whose ACTION_INFORMATION_CATEGORY equals 'JP_ITAX_PERSON' and whose ACTION_CONTEXT_TYPE equals 'AAP'. This makes it the canonical read interface for Japanese withholding-tax person records used in localization reporting, tax filing extracts, and downstream interfaces.
Underlying Base Objects
The ETRM metadata documents a single referenced base object: PAY_ACTION_INFORMATION, accessed through a synonym in the APPS schema. The view is a straightforward SELECT over that table, exposing ROWID plus the standard action-information audit columns, the 30 generic ACTION_INFORMATION1..30 flex slots, and LAST_UPDATE_LOGIN, LAST_UPDATED_BY, LAST_UPDATE_DATE, CREATED_BY, and CREATION_DATE.
Because the view is defined directly over PAY_ACTION_INFORMATION with fixed predicates, it inherits the table's DML restrictions and does not add joins to person, assignment, or address tables. Localization-specific attributes such as names in kana/kanji, birth dates in multiple era formats, and tax-organization identifiers are surfaced as columns but are physically stored in the generic action-information flexfield segments.
Key Columns
ACTION_INFORMATION_ID,ACTION_CONTEXT_ID,ACTION_CONTEXT_TYPE— primary identifiers; the context type is constrained to'AAP'.ACTION_INFORMATION_CATEGORY— constrained to'JP_ITAX_PERSON'.EFFECTIVE_DATE,ASSIGNMENT_ID,OBJECT_VERSION_NUMBER— dating, assignment linkage, and optimistic locking.EMPLOYEE_NUMBER,LAST_NAME_KANA,FIRST_NAME_KANA,LAST_NAME_KANJI,FIRST_NAME_KANJI,SEX— person identity in Japanese naming conventions.ADDRESS_ID,ADDRESS_KANA,ADDRESS_KANJI,COUNTRY,JP_DATE_START,LEAVING_REASON— residence and status data.DATE_OF_BIRTHand the era variants (MEIJI,TAISHOU,SHOUWA,HEISEI, plusYEAR,MONTH,DAY) — date of birth expressed for Japanese calendar reporting.EMPLOYMENT_DATE_YEAR/MONTH/DAY,ACTUAL_TERMINATION_DATE— hire and termination components.ITAX_ORGANIZATION_ID,ORG_NAME,PAYROLL_NAME,DISTRICT_CODE— tax filing organization and jurisdiction context.OPEN_DATE,CLOSE_DATE— the validity window of the ITAX person record. The commonly searchedOPEN_DATEmarks when the record becomes effective for tax purposes;CLOSE_DATEmarks its retirement.
Common Use Cases and Queries
Typical consumers include Japanese withholding-tax extracts, localization validation reports, and interfaces to external tax submission systems. A frequent pattern is to retrieve currently open ITAX person records for a payroll or organization:
- Selecting active records:
WHERE OPEN_DATE IS NOT NULL AND (CLOSE_DATE IS NULL OR CLOSE_DATE > SYSDATE). - Filtering by employee or assignment to reconcile with person master data.
- Reporting birth dates using era-specific columns for statutory forms.
Example:
SELECT employee_number, last_name_kanji, first_name_kanji, open_date, close_date, district_code FROM apps.pay_jp_itax_person_v WHERE action_context_type = 'AAP' AND action_information_category = 'JP_ITAX_PERSON' AND (close_date IS NULL OR close_date > SYSDATE) ORDER BY employee_number;
Because the view is read-only in practice and localization-specific, queries should always constrain by the category and context predicates even though the view already applies them, and should be mindful that the flexfield-derived columns are sparsely populated depending on the ITAX record state.
-
View: PAY_JP_ITAX_PERSON_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ITAX_PERSON_V, object_name:PAY_JP_ITAX_PERSON_V, status:VALID, product: PAY - Payroll , description: This view is used for Japanese localization only. , implementation_dba_data: APPS.PAY_JP_ITAX_PERSON_V ,
-
View: PAY_JP_ITAX_PERSON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ITAX_PERSON_V, object_name:PAY_JP_ITAX_PERSON_V, status:VALID, product: PAY - Payroll , description: This view is used for Japanese localization only. , implementation_dba_data: APPS.PAY_JP_ITAX_PERSON_V ,
-
SYNONYM: PUBLIC.PAY_JP_ITAX_PERSON_V
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:PAY_JP_ITAX_PERSON_V, status:VALID,
-
PACKAGE BODY: APPS.PAY_JP_ITAX_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_JP_ITAX_PKG, status:VALID,
-
PACKAGE BODY: APPS.PAY_JP_ITAX_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_JP_ITAX_PKG, status:VALID,
-
PACKAGE BODY: APPS.PAY_JP_ITAX_REPORT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_JP_ITAX_REPORT_PKG, status:VALID,
-
PACKAGE BODY: APPS.PAY_JP_ITAX_REPORT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_JP_ITAX_REPORT_PKG, status:VALID,
-
VIEW: APPS.PAY_JP_ITAX_PERSON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ITAX_PERSON_V, object_name:PAY_JP_ITAX_PERSON_V, status:VALID,
-
APPS.PAY_JP_ITAX_REPORT_PKG SQL Statements
12.2.2
-
APPS.PAY_JP_ITAX_REPORT_PKG SQL Statements
12.1.1
-
VIEW: APPS.PAY_JP_ITAX_PERSON_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ITAX_PERSON_V, object_name:PAY_JP_ITAX_PERSON_V, status:VALID,
-
APPS.PAY_JP_ITAX_PKG SQL Statements
12.1.1
-
APPS.PAY_JP_ITAX_PKG SQL Statements
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.PAY_ACTION_INFORMATION
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PAY_ACTION_INFORMATION, status:VALID,
-
APPS.PAY_JP_ITAX_REPORT_PKG dependencies on PAY_JP_ITAX_PERSON_V
12.2.2
-
APPS.PAY_JP_ITAX_PKG dependencies on PAY_JP_ITAX_PERSON_V
12.1.1
-
PACKAGE BODY: APPS.PAY_JP_ITAX_PKG
12.2.2
-
PACKAGE BODY: APPS.PAY_JP_ITAX_PKG
12.1.1
-
APPS.PAY_JP_ITAX_REPORT_PKG dependencies on PAY_JP_ITAX_PERSON_V
12.1.1
-
APPS.PAY_JP_ITAX_PKG dependencies on PAY_JP_ITAX_PERSON_V
12.2.2
-
PACKAGE BODY: APPS.PAY_JP_ITAX_REPORT_PKG
12.1.1
-
PACKAGE BODY: APPS.PAY_JP_ITAX_REPORT_PKG
12.2.2
-
SYNONYM: APPS.PAY_ACTION_INFORMATION
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PAY_ACTION_INFORMATION, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
eTRM - PAY Tables and Views
12.1.1
description: Temporary table used to hold invalid location addresses. ,
-
12.1.1 DBA Data
12.1.1
-
eTRM - PAY Tables and Views
12.2.2
description: Temporary table used to hold invalid location addresses. ,
-
eTRM - PAY Tables and Views
12.1.1
description: Temporary table used to hold invalid location addresses. ,
-
eTRM - PAY Tables and Views
12.2.2
description: Temporary table used to hold invalid location addresses. ,