Search Results ben_elig_py_bss_prte_d
Overview
BEN_ELIG_PY_BSS_PRTE_D is a denormalized reporting view owned by the APPS schema in Oracle E-Business Suite, shipped as part of the Advanced Benefits (BEN) product family. Its name encodes its function: eligibility (BEN_ELIG), pay basis (PY_BSS), participation Prte (PRTE), and the _D suffix mandated by Oracle's multi-language support (MLS) conventions. The view exposes pay-basis eligibility rules that determine whether a participant is eligible for a benefits program based on the pay basis assigned to that person. In EBS 12.1.1 and 12.2.2, the view is documented as VALID and is retrofitted from earlier release logic, meaning its structure has been preserved for compatibility with existing reports, extracts, and interfaces even as underlying ELIGY_PRFL and pay-basis objects evolved.
Because it resolves surrogate identifiers into human-readable names for the pay basis, exclusion lookup, and eligibility profile, the view is frequently used in ad hoc reporting and in downstream extracts where administrators need to review configured eligibility rules without navigating the setup forms.
Underlying Base Objects
The view is defined as an outer-join aggregation over the following documented objects:
BEN_ELIG_PY_BSS_PRTE_F— the base table storing pay-basis eligibility criteria (the primary detail source, aliasedEPB).PER_PAY_BASES— the pay basis definition table, providingPAY_BASIS.NAME.BEN_ELIGY_PRFL_F— the eligibility profile header, providingELIGY_PRFL.NAME.HR_LOOKUPS— the lookup view, joined onLOOKUP_TYPE = 'YES_NO'to translate the exclusion flag (EXCLD_FLAG) into a meaning.FND_USER— joined onLAST_UPDATED_BYto authenticate the audit trail.
All joins are outer joins (note the (+) operators), so a row is still returned even when the related pay basis, profile, lookup, or user record is missing. The documented referenced base objects also include the HR_API package, consistent with the benefits eligibility engine's reliance on HR security and date-tracked API logic.
Key Columns
ROW_ID— the physical row identifier of the underlyingBEN_ELIG_PY_BSS_PRTE_Frow.ELIG_PY_BSS_PRTE_ID— primary key of the pay-basis eligibility criterion.EFFECTIVE_START_DATE/EFFECTIVE_END_DATE— date-tracked validity window of the rule.PAY_BASIS_NAME— the resolved name fromPER_PAY_BASES; this is the column most directly answering the search term pay_basis_name. The underlying select expression isPAY_BASIS.NAME.EXCLD_MEANING— the Yes/No meaning fromHR_LOOKUPSindicating whether the criterion is an inclusion or exclusion rule.ORDR_NUM— evaluation order of the criterion within the profile.ELIGY_PRFL_NAME— name of the parent eligibility profile to which the criterion belongs.LAST_UPDATE_DATE/LAST_UPDATED_BY— standard EBS audit columns.
Common Use Cases and Queries
Typical scenarios include auditing pay-basis eligibility rules by profile and validating which pay bases are excluded from a program.
SELECT eligy_prfl_name,
pay_basis_name,
excld_meaning,
ordr_num,
effective_start_date,
effective_end_date
FROM apps.ben_elig_py_bss_prte_d
WHERE effective_start_date <= SYSDATE
AND NVL(effective_end_date, SYSDATE) >= SYSDATE;
To locate a specific pay basis by name:
SELECT eligy_prfl_name, pay_basis_name, excld_meaning FROM apps.ben_elig_py_bss_prte_d WHERE pay_basis_name = :p_pay_basis_name;
-
View: BEN_ELIG_PY_BSS_PRTE_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIG_PY_BSS_PRTE_D, object_name:BEN_ELIG_PY_BSS_PRTE_D, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_ELIG_PY_BSS_PRTE_D ,
-
View: BEN_ELIG_PY_BSS_PRTE_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIG_PY_BSS_PRTE_D, object_name:BEN_ELIG_PY_BSS_PRTE_D, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_ELIG_PY_BSS_PRTE_D ,
-
SYNONYM: PUBLIC.BEN_ELIG_PY_BSS_PRTE_D
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:BEN_ELIG_PY_BSS_PRTE_D, status:VALID,
-
VIEW: APPS.BEN_ELIG_PY_BSS_PRTE_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIG_PY_BSS_PRTE_D, object_name:BEN_ELIG_PY_BSS_PRTE_D, status:VALID,
-
SYNONYM: APPS.BEN_ELIG_PY_BSS_PRTE_F
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BEN_ELIG_PY_BSS_PRTE_F, status:VALID,
-
SYNONYM: APPS.BEN_ELIG_PY_BSS_PRTE_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BEN_ELIG_PY_BSS_PRTE_F, status:VALID,
-
VIEW: APPS.BEN_ELIG_PY_BSS_PRTE_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIG_PY_BSS_PRTE_D, object_name:BEN_ELIG_PY_BSS_PRTE_D, status:VALID,
-
SYNONYM: APPS.BEN_ELIGY_PRFL_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BEN_ELIGY_PRFL_F, status:VALID,
-
SYNONYM: APPS.BEN_ELIGY_PRFL_F
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BEN_ELIGY_PRFL_F, status:VALID,
-
SYNONYM: APPS.PER_PAY_BASES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PER_PAY_BASES, status:VALID,
-
SYNONYM: APPS.PER_PAY_BASES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PER_PAY_BASES, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.HR_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LOOKUPS, object_name:HR_LOOKUPS, status:VALID,
-
VIEW: APPS.HR_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LOOKUPS, object_name:HR_LOOKUPS, status:VALID,
-
SYNONYM: APPS.FND_USER
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_USER, status:VALID,
-
SYNONYM: APPS.FND_USER
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_USER, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - BEN Tables and Views
12.1.1
description: Start and End periods. ,
-
PACKAGE: APPS.HR_API
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_API, status:VALID,
-
PACKAGE: APPS.HR_API
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_API, status:VALID,
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - BEN Tables and Views
12.2.2
description: Start and End periods. ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
eTRM - BEN Tables and Views
12.1.1
description: Start and End periods. ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
eTRM - BEN Tables and Views
12.2.2
description: Start and End periods. ,