Search Results pay_jp_isdf_spouse_v
Overview
PAY_JP_ISDF_SPOUSE_V is a database view owned by the APPS schema within the Oracle E-Business Suite Payroll (PAY) product. As its description states, the object is provided exclusively for the Japanese localization; it does not carry a role in global payroll processing. The view presents spouse-related information captured during the Japanese year-end adjustment (Nenmatsu Chousei) and income reporting workflow, specifically records associated with the Income Summary Data Form (ISDF) spouse declaration process.
Functionally, the view acts as a filtered, canonicalized presentation layer over a DML-enabled view. It restricts rows to a single action context, ACTION_CONTEXT_TYPE = 'AAP', and a single action information category, ACTION_INFORMATION_CATEGORY = 'JP_ISDF_SPOUSE', so that consumers retrieve only spouse declaration records. Because it is a reporting-oriented view rather than a base table, it exposes the collected spouse attributes in a stable shape suitable for inquiry screens, extracts, and interfaces. Two columns additionally pass through the FND_NUMBER.CANONICAL_TO_NUMBER function, converting stored canonical number representations into numeric values for downstream arithmetic or reporting. In Oracle EBS 12.1.1 and 12.2.2 the object remains a VALID dictionary view in the APPS schema.
Underlying Base Objects
Per the documented ETRM metadata, the view is defined over two referenced base objects:
- PAY_JP_ISDF_SPOUSE_DML_V (VIEW) — the immediate source of all projected columns. The DML-style view surfaces the stored date-tracked action information rows, and PAY_JP_ISDF_SPOUSE_V narrows those rows to the spouse category and context before exposing them.
- FND_NUMBER (PACKAGE) — the Oracle Application Object Library numeric utility package, invoked in the select list through
FND_NUMBER.CANONICAL_TO_NUMBERto translate the canonical (textual) number representations of income amounts into true numeric values.
The relationship is therefore one of composition: the ISDF spouse view wraps the DML view and applies a package function for numeric normalization. No independent base tables are listed as directly referenced by this view; the storage-level tables are reached indirectly through the DML view.
Key Columns
The projection is organized around identifying a spouse declaration record and the personal, address, and income details it carries.
- ROW_ID / ACTION_INFORMATION_ID / OBJECT_VERSION_NUMBER — primary identification and optimistic-locking attributes for the underlying action information row.
- ASSIGNMENT_ACTION_ID / ASSIGNMENT_ID — linkage to the payroll assignment action and the assignment whose year-end adjustment is being processed.
- ACTION_CONTEXT_TYPE / ACTION_INFORMATION_CATEGORY / STATUS / EFFECTIVE_DATE — context and state descriptors; the context and category values are fixed by the view definition, while status and effective date reflect the declaration's processing state and period.
- FULL_NAME_KANA / FULL_NAME — the spouse's name in kana and in standard form.
- POSTAL_CODE / ADDRESS — spouse residence details used on the declaration.
- EMP_INCOME / SPOUSE_INCOME_ENTRY — income amounts exposed as numeric values via
FND_NUMBER.CANONICAL_TO_NUMBER; these support deduction and threshold computations. - SPOUSE_TYPE / WIDOW_TYPE / SPOUSE_DCT_EXCLUDE — classification and eligibility flags governing spouse deduction treatment.
- Audit columns — LAST_UPDATE_LOGIN, LAST_UPDATED_BY, LAST_UPDATE_DATE, CREATED_BY, and CREATION_DATE track who created and last modified each row.
Common Use Cases and Queries
Typical scenarios include verifying spouse declarations submitted for a payroll assignment action, extracting data for deduction verification, and feeding downstream interfaces. A representative query follows:
SELECT sp.assignment_action_id,
sp.assignment_id,
sp.effective_date,
sp.full_name_kana,
sp.full_name,
sp.postal_code,
sp.address,
sp.emp_income,
sp.spouse_type,
sp.widow_type,
sp.spouse_dct_exclude,
sp.spouse_income_entry
FROM apps.pay_jp_isdf_spouse_v sp
WHERE sp.assignment_id = :p_assignment_id
AND sp.status = 'COMPLETED'
ORDER BY sp.effective_date;
Because the view already restricts rows to the spouse category and AAP context, no additional category filtering is required. Consumers should note that income columns are returned as numeric values, so totals and threshold comparisons can be applied directly. Any DML against the underlying data should be directed to the DML view rather than this read-oriented projection.
-
View: PAY_JP_ISDF_SPOUSE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ISDF_SPOUSE_V, object_name:PAY_JP_ISDF_SPOUSE_V, status:VALID, product: PAY - Payroll , description: This view is used for Japanese localization only. , implementation_dba_data: APPS.PAY_JP_ISDF_SPOUSE_V ,
-
View: PAY_JP_ISDF_SPOUSE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ISDF_SPOUSE_V, object_name:PAY_JP_ISDF_SPOUSE_V, status:VALID, product: PAY - Payroll , description: This view is used for Japanese localization only. , implementation_dba_data: APPS.PAY_JP_ISDF_SPOUSE_V ,
-
SYNONYM: PUBLIC.PAY_JP_ISDF_SPOUSE_V
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:PAY_JP_ISDF_SPOUSE_V, status:VALID,
-
VIEW: APPS.PAY_JP_ISDF_SPOUSE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ISDF_SPOUSE_V, object_name:PAY_JP_ISDF_SPOUSE_V, status:VALID,
-
PACKAGE BODY: APPS.PAY_JP_ISDF_DML_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_JP_ISDF_DML_PKG, status:VALID,
-
PACKAGE: APPS.PAY_JP_ISDF_DML_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PAY_JP_ISDF_DML_PKG, status:VALID,
-
PACKAGE: APPS.PAY_JP_ISDF_DML_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PAY_JP_ISDF_DML_PKG, status:VALID,
-
PACKAGE BODY: APPS.PAY_JP_ISDF_RPT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_JP_ISDF_RPT, status:VALID,
-
PACKAGE BODY: APPS.PAY_JP_ISDF_RPT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_JP_ISDF_RPT, status:VALID,
-
PACKAGE BODY: APPS.PAY_JP_ISDF_DML_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_JP_ISDF_DML_PKG, status:VALID,
-
PACKAGE BODY: APPS.PAY_JP_ISDF_ARCHIVE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_JP_ISDF_ARCHIVE_PKG, status:VALID,
-
PACKAGE BODY: APPS.PAY_JP_ISDF_ARCHIVE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_JP_ISDF_ARCHIVE_PKG, status:VALID,
-
VIEW: APPS.PAY_JP_ISDF_SPOUSE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ISDF_SPOUSE_V, object_name:PAY_JP_ISDF_SPOUSE_V, status:VALID,
-
VIEW: APPS.PAY_JP_ISDF_SPOUSE_DML_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ISDF_SPOUSE_DML_V, object_name:PAY_JP_ISDF_SPOUSE_DML_V, status:VALID,
-
VIEW: APPS.PAY_JP_ISDF_SPOUSE_DML_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ISDF_SPOUSE_DML_V, object_name:PAY_JP_ISDF_SPOUSE_DML_V, status:VALID,
-
APPS.PAY_JP_ISDF_DML_PKG SQL Statements
12.1.1
-
APPS.PAY_JP_ISDF_RPT SQL Statements
12.1.1
-
APPS.PAY_JP_ISDF_DML_PKG SQL Statements
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.PAY_JP_ISDF_RPT SQL Statements
12.2.2
-
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_ISDF_ARCHIVE_PKG SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.PAY_JP_ISDF_RPT dependencies on PAY_JP_ISDF_SPOUSE_V
12.1.1
-
APPS.PAY_JP_ISDF_DML_PKG dependencies on PAY_JP_ISDF_SPOUSE_V
12.1.1
-
APPS.PAY_JP_ISDF_ARCHIVE_PKG dependencies on PAY_JP_ISDF_SPOUSE_V
12.1.1
-
APPS.PAY_JP_ISDF_ARCHIVE_PKG dependencies on PAY_JP_ISDF_SPOUSE_V
12.2.2
-
APPS.PAY_JP_ISDF_DML_PKG dependencies on PAY_JP_ISDF_SPOUSE_V
12.1.1
-
APPS.PAY_JP_ISDF_DML_PKG dependencies on PAY_JP_ISDF_SPOUSE_V
12.2.2
-
APPS.PAY_JP_ISDF_RPT dependencies on PAY_JP_ISDF_SPOUSE_V
12.2.2
-
APPS.PAY_JP_ISDF_DML_PKG dependencies on PAY_JP_ISDF_SPOUSE_V
12.2.2
-
APPS.PAY_JP_ISDF_ARCHIVE_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PAY_JP_ISDF_DML_PKG
12.1.1
-
PACKAGE: APPS.PAY_JP_ISDF_DML_PKG
12.1.1
-
PACKAGE BODY: APPS.PAY_JP_ISDF_DML_PKG
12.2.2
-
PACKAGE: APPS.PAY_JP_ISDF_DML_PKG
12.2.2
-
PACKAGE: APPS.FND_NUMBER
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_NUMBER, status:VALID,
-
PACKAGE: APPS.FND_NUMBER
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_NUMBER, status:VALID,
-
PACKAGE BODY: APPS.PAY_JP_ISDF_RPT
12.1.1
-
PACKAGE BODY: APPS.PAY_JP_ISDF_ARCHIVE_PKG
12.1.1
-
PACKAGE BODY: APPS.PAY_JP_ISDF_ARCHIVE_PKG
12.2.2
-
PACKAGE BODY: APPS.PAY_JP_ISDF_RPT
12.2.2
-
eTRM - PAY Tables and Views
12.1.1
description: Temporary table used to hold invalid location addresses. ,
-
12.2.2 DBA Data
12.2.2
-
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. ,