Search Results housing_loan_deduction




Overview

APPS.PAY_JP_WL_YEA_INFO_V is a reporting view in the Oracle EBS Payroll (PAY) schema that exposes Japanese Year-End Adjustment (YEA) information. It is registered under FND Design Data as PAY.PAY_JP_WL_YEA_INFO_V and carries a VALID status in the APPS schema. The view surfaces the detailed tax, social insurance, and income figures that Oracle Payroll calculates for each employee during the Japanese year-end adjustment process, giving downstream users a single denormalized structure for reporting, reconciliation, and integration rather than requiring direct joins across the underlying payroll action-information storage.

Because the view is defined over payroll action-information data, its rows are keyed by the assignment action and the associated action context, and they are tied to a specific effective date. This makes it usable for point-in-time reporting on YEA results as well as for feeding external tax filing or interface processes. In Oracle EBS 12.1.1 and 12.2.2 the object behaves consistently as a read-only reporting layer; it is not intended as an update surface.

Underlying Base Objects

The documented metadata identifies two referenced base objects:

  • PAY_ACTION_INFORMATION (SYNONYM) — the payroll action-information entity that stores the YEA result values generated by the Japanese payroll processes. The view reads from this synonym, which resolves to the underlying PAY action-information table in the APPS schema.
  • FND_NUMBER (PACKAGE) — the Oracle Application Object Library numeric utility package. Its inclusion indicates the view uses FND_NUMBER conversion functions to translate stored character representations of numeric values into proper NUMBER datatypes for the columns exposed.

This design mirrors the standard action-information pattern in Oracle Payroll, where detailed results are persisted as key/value pairs against an assignment action and then exposed through views that decode and coerce them into typed columns.

Key Columns

The view exposes identifying keys plus a comprehensive set of YEA financial measures:

Common Use Cases and Queries

Typical usage centers on retrieving YEA results per person or assignment, verifying bonus and salary amounts, and reconciling calculated tax against deductions. A representative query for the BON_AMT search term is:

  • SELECT person_id, assignment_id, effective_date, sal_amt, bon_amt, taxable_income, yea_annual_tax FROM apps.pay_jp_wl_yea_info_v WHERE person_id = :p_person_id;
  • Summarizing bonuses by effective date: SELECT effective_date, SUM(bon_amt) FROM apps.pay_jp_wl_yea_info_v GROUP BY effective_date;
  • Reconciling tax: SELECT assignment_action_id, calculated_tax, sal_tax, bon_tax, over_and_short_tax FROM apps.pay_jp_wl_yea_info_v;

These queries support year-end reporting, audit verification, and downstream tax interfaces.