Search Results unemployed_issue




Overview

APPS.PAY_JP_UI_V is a database view owned by the APPS schema and registered under the FND Design Data identifier PAY.PAY_JP_UI_V. Its status is VALID across Oracle EBS 12.1.1 and 12.2.2. The object is documented as Internal, and the ETRM register carries the standard Oracle warning that access is unsupported except from standard Oracle Applications programs. The view presents a consolidated projection of Japanese payroll and social-insurance style reporting attributes drawn from Oracle Payroll and Oracle Human Resources. It exposes assignment, person, business group, effective date, target date, qualification and disqualification statuses, unemployment-related issue flags, two organization identifiers (ORGANIZATION_ID and ORGANIZATION_ID_FROM), and a report type discriminator. Because the naming follows the "UI" convention, the view is primarily intended to feed a user-facing inquiry or concurrent program screen rather than to serve as a general-purpose data warehouse source.

Underlying Base Objects

The documented dependency list identifies the following base objects: FND_DATE (package), HR_JP_ID_PKG (package), PAY_ELEMENT_ENTRIES_F and PAY_ELEMENT_ENTRY_VALUES_F (synonyms over Oracle Payroll element entry tables), PAY_JP_BALANCE_PKG (package), PER_ALL_ASSIGNMENTS_F and PER_ALL_PEOPLE_F (synonyms over the HR person and assignment date-tracked tables), and PER_BUSINESS_GROUPS_PERF (view). The design pattern is therefore a join across the payroll element-entry model and the HR assignment/person model, with the Japanese localization packages supplying business logic. PAY_JP_BALANCE_PKG likely derives qualifying and disqualifying balance outcomes, HR_JP_ID_PKG supplies Japanese statutory identifier handling, and FND_DATE provides canonical date conversion. The two organization columns mirror the source structure: ORGANIZATION_ID_FROM is captured from the originating organization context, while ORGANIZATION_ID reflects the current/target organization, which is precisely why users search for "organization_id_from" against this object. No database object references PAY_JP_UI_V, confirming it is a terminal (leaf) view.

Key Columns

  • ASSIGNMENT_ID / PERSON_ID — HR identifiers linking the row to a specific assignment and person; these are the primary filter keys.
  • BUSINESS_GROUP_ID — the business group (typically the Japanese legal employer) governing the record.
  • EFFECTIVE_DATE / TARGET_DATE — the effective context of the assignment and the reference date used for evaluation.
  • QUALIFIED_STATUS / DISQUALIFIED_STATUS — derived outcome flags indicating whether the assignment meets or fails the statutory qualification test.
  • UNEMPLOYED_ISSUE — flag relating to unemployment insurance issue processing.
  • ORGANIZATION_ID / ORGANIZATION_ID_FROM — the current and originating organization identifiers, enabling transfer/from-organization reporting.
  • REPORT_TYPE — discriminator indicating which report or filing the row is prepared for.

Common Use Cases and Queries

Typical usage covers Japanese qualification screening, transfer tracking, and regulatory reporting extracts. The following example retrieves rows for a specific organization origin and effective range:

SELECT assignment_id, person_id, business_group_id, organization_id, organization_id_from, qualified_status, report_type FROM apps.pay_jp_ui_v WHERE organization_id_from = :p_org_id AND effective_date BETWEEN :p_start AND :p_end;

A second pattern aggregates qualification outcomes by organization for audit review:

SELECT organization_id, qualified_status, COUNT(*) FROM apps.pay_jp_ui_v WHERE business_group_id = :p_bg_id GROUP BY organization_id, qualified_status;

Because the object is Internal and unsupported for direct customer access, any such query should be validated against Oracle's delivered concurrent programs or API wrappers before production use.

  • VIEW: APPS.PAY_JP_UI_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:PAY.PAY_JP_UI_V,  object_name:PAY_JP_UI_V,  status:VALID, 

  • VIEW: APPS.PAY_JP_UI_V 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:PAY.PAY_JP_UI_V,  object_name:PAY_JP_UI_V,  status:VALID, 

  • View: PAY_JP_UI_V 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:PAY.PAY_JP_UI_V,  object_name:PAY_JP_UI_V,  status:VALID,  product: PAY - Payrolldescription: This view is used by Japanese statutory report of Unemployment Insurance Check List(PAYJPRUI) ,  implementation_dba_data: APPS.PAY_JP_UI_V

  • View: PAY_JP_UI_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:PAY.PAY_JP_UI_V,  object_name:PAY_JP_UI_V,  status:VALID,  product: PAY - Payrolldescription: This view is used by Japanese statutory report of Unemployment Insurance Check List(PAYJPRUI) ,  implementation_dba_data: APPS.PAY_JP_UI_V

  • 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. ,