Search Results formatted_value




Overview

APPS.PAY_JP_SOE_PREPAY_PAYMENTS_V is a supplementary Oracle E-Business Suite view owned by the APPS schema and registered under FND Design Data as PAY.PAY_JP_SOE_PREPAY_PAYMENTS_V. It is classified as a view type "used to simplify forms coding," which indicates that its primary consumer is Oracle Payroll's Japanese Statutory/Statement of Earnings (SOE) prepayment form rather than external reporting or integration layers. The view surfaces prepayment and assignment action data for Japanese payroll processing, combining payment, currency, and action attributes into a denormalized result set that a form can query directly.

Because the view is a forms-support construct, Oracle explicitly warns that it is not recommended for direct querying or data alteration and that its definition may change dramatically in subsequent minor or major releases. Developers searching for marked_for_retry_flag should treat the column as a display-oriented flag exposed for the JP SOE prepayment form, not as a stable public interface.

Underlying Base Objects

The view is defined over a documented set of base objects spanning payroll actions, payment methods, and localization logic:

The presence of PAY_JP_SOE_PKG confirms that the view's transformation logic is localized for Japan, and no downstream database objects are documented as referencing it, reinforcing its role as a terminal, form-facing view.

Key Columns

The view exposes eighteen columns. Notable ones include:

Common Use Cases and Queries

Typical use is restricted to diagnostics or troubleshooting the JP SOE prepayment form. A minimal query follows:

  • SELECT PRE_PAYMENT_ID, ASSIGNMENT_ACTION_ID, MARKED_FOR_RETRY_FLAG, ACTION_STATUS, FORMATTED_VALUE, CURRENCY_CODE FROM APPS.PAY_JP_SOE_PREPAY_PAYMENTS_V WHERE MARKED_FOR_RETRY_FLAG = 'Y';
  • Filtering by PAYROLL_ACTION_ID isolates prepayments for a given payroll action.
  • Joining on ASSIGNMENT_ACTION_ID to PAY_ASSIGNMENT_ACTIONS supports retry-behavior analysis.

Given the documented warning, this view should be used for investigation only, with production reporting directed to the underlying base tables.