Search Results jp_itwb_assact
Overview
APPS.PAY_JP_ITWB_ASSACT_V is a reporting and integration view within the Oracle E-Business Suite Payroll (PAY) schema, purpose-built for Japanese payroll processing. The view name reflects its functional scope: Japanese (JP) Income Tax Withholding Bank (ITWB) assignment action data (ASSACT). It exposes a curated, type-normalized projection of the generic Oracle Payroll action information repository, restricted exclusively to records where the action context type is 'AAP' (assignment-level action) and the action information category is 'JP_ITWB_ASSACT'.
Rather than presenting the raw, heterogeneous column set stored in PAY_ACTION_INFORMATION — where attributes are held as loosely typed VARCHAR2 columns named ACTION_INFORMATION1 through ACTION_INFORMATIONn — this view applies DECODE logic and FND conversion functions so that consumers receive semantically correct numeric and date values. This design is characteristic of Oracle Payroll flexible-attribute (flexfield) storage, where one physical table serves many unrelated business contexts. The view therefore acts as a strongly typed façade over an entity-attribute-value style structure, insulating report writers, interfaces, and localization deliverables from the underlying storage conventions.
Underlying Base Objects
Per the documented ETRM metadata for 12.2.2, the view is owned by APPS and is defined over three referenced objects:
- PAY_ACTION_INFORMATION (SYNONYM) — the single source table supplying all rows and columns. The view is a filtered, transformed projection of this table and introduces no joins to other business tables.
- FND_NUMBER (PACKAGE) — invoked via FND_NUMBER.CANONICAL_TO_NUMBER to convert the canonical (NLS-independent) character representation of numeric attributes into true NUMBER values.
- FND_DATE (PACKAGE) — invoked via FND_DATE.CANONICAL_TO_DATE to convert the canonical character representation of date attributes into true DATE values.
Because the view is defined over the synonym, it inherits the same runtime privileges and localization behavior as the base PAY_ACTION_INFORMATION table. Reporting against the view does not alter or duplicate data; it is a purely logical construct.
Key Columns
- ROWID, ACTION_INFORMATION_ID, OBJECT_VERSION_NUMBER — row identity and optimistic-locking versioning.
- ACTION_CONTEXT_ID, ACTION_CONTEXT_TYPE — the owning context; restricted to 'AAP' by the view predicate.
- ASSIGNMENT_ID, EFFECTIVE_DATE — the assignment and its effective date to which the withholding action applies.
- ACTION_INFORMATION_CATEGORY — always 'JP_ITWB_ASSACT' in returned rows; the discriminator driving the DECODE logic.
- ACTION_INFORMATION1 — a character attribute, exposed unconverted.
- ACTION_INFORMATION2 through ACTION_INFORMATION6 — numeric attributes converted with FND_NUMBER; null when the category does not match.
- ACTION_INFORMATION7 — a date attribute converted with FND_DATE.
- ACTION_INFORMATION8 — a character attribute, exposed unconverted.
- ACTION_INFORMATION9 — a numeric attribute converted with FND_NUMBER.
- Audit columns (LAST_UPDATED_BY, LAST_UPDATE_DATE, CREATED_BY, CREATION_DATE, LAST_UPDATE_LOGIN) — WHO-column audit trail.
Common Use Cases and Queries
Typical uses include Japanese withholding-tax reconciliation reports, payroll data extracts, and assignment-level integration feeds. Because the view already filters and types the data, queries are concise. A canonical retrieval for a given assignment is:
- SELECT action_information_id, assignment_id, effective_date, action_information1, action_information2, action_information7 FROM apps.pay_jp_itwb_assact_v WHERE assignment_id = :p_assignment_id AND effective_date = :p_effective_date;
- Joining to PER_ALL_ASSIGNMENTS_F or PER_PEOPLE_F for names, joining on ASSIGNMENT_ID for reporting.
- Aggregating numeric withholding attributes across a payroll period for tax filing extracts.
Consumers should note that the numeric and date columns return native NUMBER and DATE types, not characters, which simplifies arithmetic and comparisons but requires callers to handle nulls where the category conversion does not apply.
-
VIEW: APPS.PAY_JP_ITWB_ASSACT_V
12.2.2
-
VIEW: APPS.PAY_JP_ITWB_ASSACT_LATEST_V
12.2.2
-
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: PAY_JP_ITWB_ASSACT_LATEST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_JP_ITWB_ASSACT_LATEST_V, object_name:PAY_JP_ITWB_ASSACT_LATEST_V, status:VALID, product: PAY - Payroll , description: This view is used for Japanese localization only. , implementation_dba_data: APPS.PAY_JP_ITWB_ASSACT_LATEST_V ,
-
APPS.PAY_JP_ITWB_DML_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PAY_JP_ITWB_DML_PKG
12.2.2
-
PACKAGE BODY: APPS.PAY_JP_ITWB_ARCHIVE_PKG
12.2.2
-
APPS.PAY_JP_ITWB_DML_PKG dependencies on FND_NUMBER
12.2.2