Search Results pay_jp_itwb_assact_v
Overview
PAY_JP_ITWB_ASSACT_V is a PL/SQL view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It belongs to the PAY (Payroll) product family and is documented in the E-Business Suite Technical Reference Manual as being used exclusively for the Japanese localization. The object is delivered with a status of VALID and is classified as a secure, non-mutating read structure; it exposes no DML capability and is intended strictly for query and reporting access.
The view functions as a filtered, type-cast presentation layer over the generic Action Information framework. Its purpose is to surface the subset of assignment action records that carry the Japanese ITWB (income tax witholding and reporting) assignment-action category, translating stored canonical character values into properly typed numeric and date values suitable for application processing, concurrent programs, and localization-specific reports. Because the underlying action-information model is highly generic, this view provides the semantic narrowing required to treat that generic data as a structured Japanese tax record.
Underlying Base Objects
The view is defined over three documented base objects. Its primary data source is the synonym PAY_ACTION_INFORMATION, which stores action information rows keyed by action context and category. The view restricts this table with the predicate ACTION_CONTEXT_TYPE = 'AAP' AND ACTION_INFORMATION_CATEGORY = 'JP_ITWB_ASSACT', selecting only assignment-level action information in the Japanese ITWB category.
Two PL/SQL packages are referenced within the view definition. FND_NUMBER is used via its CANONICAL_TO_NUMBER function to convert character-stored action information values into numeric form, and FND_DATE is used via its CANONICAL_TO_DATE function to convert a character value into a date. Both conversions are wrapped in DECODE expressions so that they apply only when the row's category is JP_ITWB_ASSACT; other rows yield NULL for those derived columns. The view therefore acts as a canonicalization layer, insulating consumers from the raw character storage convention of the Action Information table.
Key Columns
- ACTION_INFORMATION_ID — Primary identifier of the underlying action information row.
- ACTION_CONTEXT_TYPE — Filtered to 'AAP' (assignment action) for every row returned.
- ACTION_INFORMATION_CATEGORY — Filtered to 'JP_ITWB_ASSACT' for every row returned.
- ASSIGNMENT_ID — Assignment to which the Japanese ITWB action applies.
- EFFECTIVE_DATE — Effective date of the action information record.
- ACTION_INFORMATION2 through ACTION_INFORMATION6, ACTION_INFORMATION9 — Exposed with FND_NUMBER.CANONICAL_TO_NUMBER, giving typed numeric values for the Japanese category.
- ACTION_INFORMATION7 — Exposed with FND_DATE.CANONICAL_TO_DATE, giving a typed date value.
- ACTION_INFORMATION8 — Exposed as the raw character value.
- OBJECT_VERSION_NUMBER — Optimistic locking version for the underlying row.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard WHO audit columns.
Note that some identifiers shown in the ETRM column listing (such as ASSIGNMENT_ACTION_ID, PAYROLL_ID, JOB_ID, and ORGANIZATION_ID) do not appear in the documented view text and may reflect a variant or expanded listing; the definitive projection is the view text that selects from PAY_ACTION_INFORMATION.
Common Use Cases and Queries
Because the object is Japanese-localization-specific, typical consumers are localization reports, tax-file generation routines, and diagnostic queries validating ITWB data. A representative query retrieves typed tax values for an assignment:
SELECT assignment_id, effective_date, action_information2, action_information7 FROM pay_jp_itwb_assact_v WHERE assignment_id = :p_assignment_id;SELECT COUNT(*) FROM pay_jp_itwb_assact_v WHERE effective_date BETWEEN :p_start AND :p_end;SELECT a.assignment_id, a.action_information9 FROM pay_jp_itwb_assact_v a WHERE a.action_information_category = 'JP_ITWB_ASSACT';
These queries demonstrate the view's value: numeric and date columns are already canonicalized, so callers avoid repeating DECODE and conversion logic. Any direct query against PAY_ACTION_INFORMATION for the same purpose should instead use this view to guarantee the correct context and category filters.
-
View: PAY_JP_ITWB_ASSACT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ITWB_ASSACT_V, object_name:PAY_JP_ITWB_ASSACT_V, status:VALID, product: PAY - Payroll , description: This view is used for Japanese localization only. , implementation_dba_data: APPS.PAY_JP_ITWB_ASSACT_V ,
-
VIEW: APPS.PAY_JP_ITWB_ARCHIVE_OPTION_V
12.2.2
-
View: PAY_JP_ITWB_ARCHIVE_OPTION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ITWB_ARCHIVE_OPTION_V, object_name:PAY_JP_ITWB_ARCHIVE_OPTION_V, status:VALID, product: PAY - Payroll , description: This view is used for Japanese localization only. , implementation_dba_data: APPS.PAY_JP_ITWB_ARCHIVE_OPTION_V ,
-
PACKAGE BODY: APPS.PAY_JP_ITWB_ARCHIVE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_JP_ITWB_ARCHIVE_PKG, status:VALID,
-
VIEW: APPS.PAY_JP_ITWB_ARCHIVE_OPTION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ITWB_ARCHIVE_OPTION_V, object_name:PAY_JP_ITWB_ARCHIVE_OPTION_V, status:VALID,
-
VIEW: APPS.PAY_JP_ITWB_ASSACT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ITWB_ASSACT_V, object_name:PAY_JP_ITWB_ASSACT_V, status:VALID,
-
APPS.PAY_JP_ITWB_ARCHIVE_PKG SQL Statements
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
APPS.PAY_JP_ITWB_ARCHIVE_PKG dependencies on PAY_JP_ITWB_ASSACT_V
12.2.2
-
SYNONYM: APPS.PAY_ACTION_INFORMATION
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PAY_ACTION_INFORMATION, status:VALID,
-
APPS.PAY_JP_ITWB_ARCHIVE_PKG dependencies on PAY_ASSIGNMENT_ACTIONS
12.2.2
-
APPS.PAY_JP_ITWB_ARCHIVE_PKG dependencies on HR_ASSIGNMENT_SET_AMENDMENTS
12.2.2
-
APPS.PAY_JP_ITWB_ARCHIVE_PKG dependencies on PAY_PAYROLL_ACTIONS
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_ITWB_ARCHIVE_PKG
12.2.2
-
APPS.PAY_JP_ITWB_DML_PKG dependencies on PAY_ACTION_INFORMATION
12.2.2
-
PACKAGE: APPS.FND_DATE
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_DATE, status:VALID,
-
PACKAGE BODY: APPS.PAY_JP_ITWB_DML_PKG
12.2.2
-
12.2.2 DBA Data
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.2.2
description: Temporary table used to hold invalid location addresses. ,
-
APPS.PAY_JP_ITWB_DML_PKG dependencies on FND_NUMBER
12.2.2