Search Results itax_dpnt_ref_type
Overview
The view APPS.PAY_JP_ITAX_WITHHELD_V is a Japanese localization reporting object within the Oracle EBS Payroll module. It consolidates withholding income tax (ITAX) results calculated for employees during a payroll run, together with social insurance premiums, mutual aid contributions, and dependent-related tax reference attributes. In Oracle EBS 12.1.1 and 12.2.2 it is registered as a VIEW owned by the APPS schema, is currently VALID, and is designated Oracle Internal Use Only with a View Type of Internal. Oracle does not support direct access to this object except through standard Oracle Applications programs, so its role is primarily to support seeded Japanese payroll reports, statutory tax extracts, and dependent declarations rather than to serve as a general-purpose integration interface.
Underlying Base Objects
The view is defined over a mix of payroll transactional tables, HR assignment and period-of-service objects, and a localization calculation view. The documented dependencies are:
PAY_JP_PRE_TAX— the Japanese pre-tax calculation view supplying core taxable and tax amount figures.PAY_ASSIGNMENT_ACTIONS— payroll actions at assignment level, linking runs to individual employees.PAY_PAYROLL_ACTIONSandPAY_ACTION_INTERLOCKS— action-level payroll processing metadata and interlock sequencing.PAY_ALL_PAYROLLS_F— the payroll definition used to resolve payroll and period context.PER_ALL_ASSIGNMENTS_F— the dated assignment record providing assignment, person, and organizational context.PER_PERIODS_OF_SERVICE— periods of service supplying hire, termination, and leaving-related data.FND_NUMBER— an Oracle Application Object Library package referenced to support numeric conversion logic.
The view therefore joins payroll tax computation output to assignment and period-of-service context, forming a flattened retention of withholding tax results per assignment, per year, and per ITAX organization.
Key Columns
The view exposes identification, classification, and amount columns:
BUSINESS_GROUP_ID,YEAR,ITAX_ORGANIZATION_ID— legislative and organizational keys scoping the tax record.ASSIGNMENT_ID,PERSON_ID,ASSIGNMENT_ACTION_ID,ACTION_SEQUENCE— identify the employee, the payroll action, and its sequence within the payroll run.SALARY_CATEGORY,ITAX_CATEGORY,ITAX_YEA_CATEGORY,EXECUTIVE_FLAG— classification of the tax treatment, including Year-End Adjustment (YEA) categorization.TAXABLE_AMT,ITAX,SI_PREM,MUTUAL_AID— current-period taxable amount, income tax withheld, social insurance premium, and mutual aid.PREV_SWOT_TAXABLE_AMT,PREV_SWOT_ITAX,PREV_SWOT_SI_PREM,PREV_SWOT_MUTUAL_AID— prior year-to-date figures used for cumulative and year-end reconciliation.EFFECTIVE_DATE,DATE_EARNED,DATE_START,ACTUAL_TERMINATION_DATE,LEAVING_REASON— dating and separation attributes relevant to tax treatment on leaving.LEGISLATIVE_PARAMETERS— a flexible legislative parameter string.ITAX_DPNT_REF_TYPE— a VARCHAR2(150) column describing the dependent reference type for income tax purposes. This column is the object of the search termitax_dpnt_ref_typeand identifies the category of dependent reference used in the withholding tax and dependent deduction calculation, distinguishing how a dependent is classified for Japanese tax reporting.
Common Use Cases and Queries
Typical usage involves validating withholding tax results for a given year or organization, reconciling year-end adjustments, and extracting dependent reference classifications. Although direct querying is unsupported, technical teams frequently query the view for diagnostics.
SELECT person_id,
assignment_id,
year,
itax_category,
taxable_amt,
itax,
itax_dpnt_ref_type
FROM apps.pay_jp_itax_withheld_v
WHERE year = :p_year
AND itax_organization_id = :p_org_id;
To isolate dependent reference types in the tax result:
SELECT itax_dpnt_ref_type, COUNT(*) AS records, SUM(itax) AS total_itax FROM apps.pay_jp_itax_withheld_v WHERE year = :p_year GROUP BY itax_dpnt_ref_type;
Year-over-year comparison of prior figures for reconciliation:
SELECT assignment_id, prev_swot_taxable_amt, prev_swot_itax FROM apps.pay_jp_itax_withheld_v WHERE year = :p_year AND assignment_id = :p_assignment_id;
Because the object is internally designated, any direct SQL should remain read-only and be validated against seeded Japanese payroll reports before use in production reconciliation.
-
VIEW: APPS.PAY_JP_ITAX_WITHHELD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ITAX_WITHHELD_V, object_name:PAY_JP_ITAX_WITHHELD_V, status:VALID,
-
VIEW: APPS.PAY_ALL_PAYROLLS_F_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:PAY_ALL_PAYROLLS_F_DFV, status:VALID,
-
VIEW: APPS.PAY_JP_ITAX_WITHHELD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ITAX_WITHHELD_V, object_name:PAY_JP_ITAX_WITHHELD_V, status:VALID,
-
VIEW: APPS.PAY_ALL_PAYROLLS_F1_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:PAY_ALL_PAYROLLS_F1_DFV, status:VALID,
-
VIEW: APPS.PAY_ALL_PAYROLLS_F_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:PAY_ALL_PAYROLLS_F_DFV, status:VALID,
-
VIEW: APPS.PAY_ALL_PAYROLLS_F1_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:PAY_ALL_PAYROLLS_F1_DFV, status:VALID,
-
View: PAY_JP_ITAX_WITHHELD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ITAX_WITHHELD_V, object_name:PAY_JP_ITAX_WITHHELD_V, status:VALID, product: PAY - Payroll , description: This view is used by Japanese statutory report of GENSEN CHOSYU HYO. , implementation_dba_data: APPS.PAY_JP_ITAX_WITHHELD_V ,
-
View: PAY_JP_ITAX_WITHHELD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ITAX_WITHHELD_V, object_name:PAY_JP_ITAX_WITHHELD_V, status:VALID, product: PAY - Payroll , description: This view is used by Japanese statutory report of GENSEN CHOSYU HYO. , implementation_dba_data: APPS.PAY_JP_ITAX_WITHHELD_V ,
-
VIEW: APPS.PAY_JP_ITAX_WITHHELD_V
12.1.1
-
VIEW: APPS.PAY_JP_ITAX_WITHHELD_V
12.2.2
-
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. ,