Search Results pay_jp_itax_other2_v2
Overview
PAY_JP_ITAX_OTHER2_V2 is an APPS-owned database view within the Oracle E-Business Suite Payroll (PAY) product. As documented in the ETRM metadata, its stated purpose is to support the Japanese localization only. The view presents a filtered, denormalized projection of payroll action information records that belong specifically to the JP_ITAX_OTHER2 action information category, restricted to the context type 'AAP'. In Oracle EBS 12.1.1 and 12.2.2, such localization views act as reporting and integration surfaces, allowing concurrent programs, extracts, and downstream interfaces to consume Japanese withholding tax and other statutory deduction data without directly navigating the wide PAY_ACTION_INFORMATION table.
The view is recorded with a status of VALID in the APPS schema. It does not store data of its own; it is a query-layer definition whose rows are materialized at runtime from the underlying payroll action information store. This makes it a read-oriented object suited to inquiry, extraction, and reporting workloads rather than transactional DML.
Underlying Base Objects
The documented referenced base objects are FND_NUMBER (a package) and PAY_ACTION_INFORMATION (exposed through a synonym). The view body selects from PAY_ACTION_INFORMATION with two governing predicates: ACTION_CONTEXT_TYPE = 'AAP' and ACTION_INFORMATION_CATEGORY = 'JP_ITAX_OTHER2'. The 'AAP' context type associates the stored rows with an assignment-level action context, and the JP_ITAX_OTHER2 category segregates the Japanese income tax "other" descriptor set from other localization categories.
The FND_NUMBER package is invoked during row projection: the view calls FND_NUMBER.CANONICAL_TO_NUMBER over ACTION_INFORMATION1, converting the canonical text representation stored in the action information column into a numeric value for consumers. The remaining ACTION_INFORMATIONn columns are both individually projected and concatenated in pairs, producing composite descriptive fields used by Japanese payroll reporting.
Key Columns
- ROW_ID / ROWID — the row identifier projected from the base table, available for addressing purposes.
- ACTION_INFORMATION_ID — primary identifier of the underlying action information record.
- ACTION_CONTEXT_ID and ACTION_CONTEXT_TYPE — the context linkage; the latter is fixed at 'AAP' by the view predicate.
- ASSIGNMENT_ID — the assignment to which the tax/other information pertains.
- EFFECTIVE_DATE — the date from which the stored values apply.
- ACTION_INFORMATION_CATEGORY — fixed at 'JP_ITAX_OTHER2' by the view definition.
- OBJECT_VERSION_NUMBER — optimistic locking / versioning attribute carried from the base table.
- ITW_SYSTEM_DESC1_KANJI, ITW_SYSTEM_DESC2_KANJI, ITW_USER_DESC_KANJI — Kanji system and user descriptions for the income tax withholding descriptor set.
- WTM_SYSTEM_DESC_KANJI / WTM_SYSTEM_DESC_KANA and WTM_USER_DESC_KANJI / WTM_USER_DESC_KANA — Kanji and Kana descriptions used for the corresponding resident/other tax descriptor set.
- Concatenated ACTION_INFORMATIONn pairs and the CANONICAL_TO_NUMBER conversion of ACTION_INFORMATION1 — derived fields supporting numeric and composite display output.
- Audit columns: CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical consumers include Japanese payroll extraction reports, year-end adjustment (Nenmatsu Chousei) data preparation, and interfaces that feed external statutory reporting. A representative query joins the view to the assignment to obtain current tax descriptors for a population of employees.
- Reporting: list the Kanji and Kana descriptions stored for a given assignment and effective date, ordered by EFFECTIVE_DATE.
- Integration: extract numeric values produced by the FND_NUMBER conversion together with the composite concatenated columns for downstream loaders.
- Validation: confirm that records exist for a given ASSIGNMENT_ID before processing a Japanese withholding run.
Sample SQL: SELECT assignment_id, effective_date, itw_system_desc1_kanji, wtm_system_desc_kana FROM apps.pay_jp_itax_other2_v2 WHERE assignment_id = :p_assignment_id ORDER BY effective_date DESC; Because the view enforces the context type and category predicates internally, callers do not need to reproduce those filter conditions in their own statements.
-
View: PAY_JP_ITAX_OTHER2_V2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ITAX_OTHER2_V2, object_name:PAY_JP_ITAX_OTHER2_V2, status:VALID, product: PAY - Payroll , description: This view is used for Japanese localization only. , implementation_dba_data: APPS.PAY_JP_ITAX_OTHER2_V2 ,
-
View: PAY_JP_ITAX_OTHER2_V2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ITAX_OTHER2_V2, object_name:PAY_JP_ITAX_OTHER2_V2, status:VALID, product: PAY - Payroll , description: This view is used for Japanese localization only. , implementation_dba_data: APPS.PAY_JP_ITAX_OTHER2_V2 ,
-
SYNONYM: PUBLIC.PAY_JP_ITAX_OTHER2_V2
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:PAY_JP_ITAX_OTHER2_V2, status:VALID,
-
PACKAGE BODY: APPS.PAY_PAYJPWTM_XMLP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_PAYJPWTM_XMLP_PKG, status:VALID,
-
PACKAGE BODY: APPS.PAY_JP_ITAX_ARCHIVE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_JP_ITAX_ARCHIVE_PKG, status:VALID,
-
PACKAGE BODY: APPS.PAY_JP_ITAX_ARCHIVE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_JP_ITAX_ARCHIVE_PKG, status:VALID,
-
VIEW: APPS.PAY_JP_ITAX_OTHER2_V2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ITAX_OTHER2_V2, object_name:PAY_JP_ITAX_OTHER2_V2, status:VALID,
-
APPS.PAY_PAYJPWTM_XMLP_PKG SQL Statements
12.1.1
-
VIEW: APPS.PAY_JP_ITAX_OTHER2_V2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ITAX_OTHER2_V2, object_name:PAY_JP_ITAX_OTHER2_V2, status:VALID,
-
APPS.PAY_JP_ITAX_ARCHIVE_PKG SQL Statements
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.2.2 FND Design Data
12.2.2
-
APPS.PAY_JP_ITAX_ARCHIVE_PKG SQL Statements
12.1.1
-
APPS.PAY_JP_ITAX_ARCHIVE_PKG dependencies on PAY_JP_ITAX_OTHER2_V2
12.1.1
-
SYNONYM: APPS.PAY_ACTION_INFORMATION
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PAY_ACTION_INFORMATION, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
APPS.PAY_JP_ITAX_ARCHIVE_PKG dependencies on PAY_JP_ITAX_OTHER2_V2
12.2.2
-
APPS.PAY_PAYJPWTM_XMLP_PKG dependencies on PAY_JP_ITAX_OTHER2_V2
12.1.1
-
SYNONYM: APPS.PAY_ACTION_INFORMATION
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PAY_ACTION_INFORMATION, status:VALID,
-
APPS.PAY_JP_SPR_EFILE_PKG dependencies on PAY_JP_ITAX_HOUSING_V
12.2.2
-
APPS.PAY_JP_SPR_EFILE_PKG dependencies on PAY_JP_ITAX_PERSON_V2
12.2.2
-
APPS.PAY_JP_SPR_EFILE_PKG dependencies on PAY_JP_ITAX_DEP_V
12.2.2
-
APPS.PAY_PAYJPWTM_XMLP_PKG dependencies on PAY_JP_ITAX_OTHER_V
12.1.1
-
PACKAGE BODY: APPS.PAY_JP_ITAX_REPORT_PKG
12.1.1
-
PACKAGE BODY: APPS.PAY_JP_ITAX_REPORT_PKG
12.2.2
-
APPS.PAY_PAYJPWTM_XMLP_PKG dependencies on PAY_JP_ITAX_ARCH_V
12.1.1
-
APPS.PAY_PAYJPWTM_XMLP_PKG dependencies on PAY_JP_ITAX_TAX_V
12.1.1
-
APPS.PAY_JP_ITAX_REPORT_PKG dependencies on PAY_JP_ITAX_PERSON_V
12.1.1
-
APPS.PAY_JP_ITAX_REPORT_PKG dependencies on PAY_JP_ITAX_PERSON_V
12.2.2
-
PACKAGE BODY: APPS.PAY_PAYJPWTM_XMLP_PKG
12.1.1
-
PACKAGE: APPS.FND_NUMBER
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_NUMBER, status:VALID,
-
APPS.PAY_JP_ITAX_ARCHIVE_PKG dependencies on PAY_JP_ITAX_ARCH_V2
12.1.1
-
APPS.PAY_JP_ITAX_ARCHIVE_PKG dependencies on PAY_JP_ITAX_PERSON_V2
12.2.2
-
APPS.PAY_JP_ITAX_ARCHIVE_PKG dependencies on PAY_JP_ITAX_PERSON_V2
12.1.1
-
APPS.PAY_JP_ITAX_ARCHIVE_PKG dependencies on PAY_JP_ITAX_ARCH_V2
12.2.2
-
PACKAGE: APPS.FND_NUMBER
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_NUMBER, status:VALID,
-
PACKAGE BODY: APPS.PAY_JP_ITAX_ARCHIVE_PKG
12.1.1
-
PACKAGE BODY: APPS.PAY_JP_ITAX_ARCHIVE_PKG
12.2.2
-
PACKAGE BODY: APPS.PAY_JP_SPR_EFILE_PKG
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
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. ,
-
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. ,