Search Results bdate_earned




Overview

APPS.PAY_KR_SEP_RESULT_SLIP_YB_V is a supplementary Oracle E-Business Suite view owned by the APPS schema that supports the Korean localization of Oracle Payroll. The "_YB" suffix and the "SEP_RESULT_SLIP" naming indicate that the view supplies the data set used to render the separation (termination) result slip — the Korean statutory severance and settlement document produced for departing employees during a payroll run. Metadata status for both 12.1.1 and 12.2.2 records the object as VALID.

The view is classified as a "supplementary view used to simplify forms coding." This classification is significant: Oracle explicitly warns that the view is not intended for direct customer querying or data manipulation, and that its definition may change dramatically in subsequent minor or major releases. The view therefore exists primarily as an internal implementation artifact for the Korean payroll forms layer rather than as a supported public reporting interface. Nevertheless, it is commonly encountered when practitioners search on columns such as brun_type_name, which surfaces the run type description alongside the underlying assignment action and payroll run context.

Underlying Base Objects

The view resolves against the following documented base objects, all referenced through APPS synonyms except the report package:

The view is referenced by a PUBLIC synonym of the same name, confirming that it is exposed schema-wide for the Korean payroll forms.

Key Columns

The view exposes a compact set of columns that join the assignment action context with the payroll run type. Notable columns include:

Common Use Cases and Queries

Because the view is a forms-support artifact, its typical use is diagnostic or reconciliation rather than downstream reporting. Practitioners query it to confirm which run type produced a separation slip, to reconcile assignment actions against their translated run type names, or to verify the average-earnings basis used for Korean severance. A representative query follows:

SELECT assignment_action_id,
       assignment_id,
       effective_date,
       date_earned,
       run_type_id,
       brun_type_name,
       ub_run_type_name,
       bearnings_subj_avg
FROM   apps.pay_kr_sep_result_slip_yb_v
WHERE  assignment_id = :p_assignment_id
ORDER  BY beffective_date, baction_sequence;

Given the documented deprecation warning, any such query should be treated as read-only and inspected for change after each patch or upgrade. For supported equivalents, the underlying tables (PAY_RUN_RESULTS joined to PAY_RUN_TYPES_F_TL on RUN_TYPE_ID) should be preferred where an official interface is required.