Search Results leav_reas
Overview
APPS.BEN_LVG_RSN_RT_D is a reporting and inquiry view within the Oracle E-Business Suite Advanced Benefits (Oracle Benefits) module. It exposes leave-of-absence reason records associated with variable rate profiles, resolving surrogate identifiers into human-readable descriptions. The view is a denormalized, read-only presentation layer over the transactional table BEN_LVG_RSN_RT_F, joining lookup meanings, profile names, and user audit information so that reporting tools, concurrent programs, and integration extracts can retrieve leave reason configurations without performing multiple joins themselves.
Its role is primarily descriptive rather than transactional. No DML is supported against the view; inserts, updates, and deletes must target the underlying BEN_LVG_RSN_RT_F table through the standard Benefits forms or the HR_API package. The "_D" suffix in the object name follows the Oracle EBS naming convention for a "detail" or display view, indicating it is intended for query and reporting consumption.
Underlying Base Objects
The view is defined over the following documented objects:
- BEN_LVG_RSN_RT_F (SYNONYM) — the driving table holding leave reason rate records, keyed by LVG_RSN_RT_ID with effective dating via EFFECTIVE_START_DATE and EFFECTIVE_END_DATE.
- BEN_VRBL_RT_PRFL_F (SYNONYM) — the variable rate profile definition table, joined on VRBL_RT_PRFL_ID to supply the profile NAME.
- HR_LOOKUPS (VIEW) — the lookup view filtered to LOOKUP_TYPE = 'LEAV_REAS', supplying the MEANING for each LVG_RSN_CD.
- FND_USER_VIEW (VIEW) — resolves LAST_UPDATED_BY to a USER_NAME for audit display; the outer join (+) preserves rows where the updating user is not found.
- HR_API (PACKAGE) — referenced indirectly as part of the Benefits/HR API layer supporting the underlying entities.
The join to BEN_VRBL_RT_PRFL_F is date-sensitive: the leave reason record's EFFECTIVE_START_DATE must fall between the profile's effective start and end dates, and both sides of that range predicate are outer-joined to prevent suppression of records lacking a matching effective profile row.
Key Columns
- ROW_ID — the ROWID of the underlying BEN_LVG_RSN_RT_F row, useful for direct row addressing.
- LVG_RSN_RT_ID — primary key of the leave reason rate record.
- EFFECTIVE_START_DATE / EFFECTIVE_END_DATE — date-effective bounds governing when the configuration is valid.
- EXCLD_FLAG — indicates whether the leave reason is excluded from the associated rate processing.
- NAME — the variable rate profile name from BEN_VRBL_RT_PRFL_F.
- MEANING — the user-facing description of the leave reason code from HR_LOOKUPS for LOOKUP_TYPE 'LEAV_REAS'.
- ORDR_NUM — display ordering sequence for the leave reason.
- LAST_UPDATE_DATE and USER_NAME — audit columns identifying when and by whom the record was last modified.
Common Use Cases and Queries
Typical scenarios include validating leave reason configuration for a variable rate profile, auditing changes to exclusion flags, and driving extracts that feed payroll or absence interfaces.
List all leave reasons for a given profile:
SELECT lvg_rsn_rt_id, name, meaning, ordr_num, exclD_flag FROM apps.ben_lvg_rsn_rt_d WHERE name = :profile_name ORDER BY ordr_num;
Audit recent changes:
SELECT lvg_rsn_rt_id, meaning, last_update_date, user_name FROM apps.ben_lvg_rsn_rt_d WHERE last_update_date >= :since_date ORDER BY last_update_date DESC;
Identify excluded reasons within a date range:
SELECT meaning, effective_start_date, effective_end_date FROM apps.ben_lvg_rsn_rt_d WHERE excld_flag = 'Y' AND effective_start_date BETWEEN :start_date AND :end_date;
Because the view performs the lookup and profile resolution internally, these queries avoid manual joins to HR_LOOKUPS and BEN_VRBL_RT_PRFL_F, simplifying report SQL in Oracle EBS 12.1.1 and 12.2.2 environments.
-
Lookup Type: LEAV_REAS
12.1.1
product: PER - Human Resources , meaning: Leaving reason , description: Leaving reason ,
-
Lookup Type: LEAV_REAS
12.2.2
product: PER - Human Resources , meaning: Leaving reason , description: Leaving reason ,
-
VIEW: APPS.BEN_LVG_RSN_RT_D
12.2.2
-
VIEW: APPS.BEN_LVG_RSN_RT_D
12.1.1
-
VIEW: APPS.BENBV_ELIG_LVG_RSN_PRTE_V
12.1.1
-
VIEW: APPS.BENBV_ELIG_LVG_RSN_PRTE_V
12.2.2
-
VIEW: APPS.HRI_OBI_CL_SPRN_SPRTNRSN_V
12.1.1
-
VIEW: APPS.BEN_ELIG_LVG_RSN_PRTE_D
12.2.2
-
VIEW: APPS.HRI_CL_RSN_SEP_X_V
12.1.1
-
VIEW: APPS.BEN_ELIG_LVG_RSN_PRTE_D
12.1.1
-
TRIGGER: APPS.PAY_USER_COLUMN_INSTANCES_ARI
12.1.1
-
TRIGGER: APPS.PAY_USER_COLUMN_INSTANCES_ARI
12.2.2
-
VIEW: APPS.HRI_CL_RSN_SEP_X_V
12.2.2
-
VIEW: APPS.PER_SHARED_TYPES_DFV
12.1.1
-
APPS.HRI_OPL_SPRTN_RSNS SQL Statements
12.1.1
-
TRIGGER: APPS.PAY_USER_COLUMN_INSTANCES_ARD
12.1.1
-
VIEW: APPS.PER_PERIODS_OF_SERVICE_V
12.2.2
-
VIEW: APPS.PER_PERIODS_OF_SERVICE_V
12.1.1
-
TRIGGER: APPS.PAY_USER_COLUMN_INSTANCES_ARU
12.2.2
-
TRIGGER: APPS.PAY_USER_COLUMN_INSTANCES_ARD
12.2.2
-
TRIGGER: APPS.PAY_USER_COLUMN_INSTANCES_ARU
12.1.1
-
VIEW: APPS.PER_SHARED_TYPES_DFV
12.2.2
-
VIEW: APPS.BENBV_ELIG_LVG_RSN_PRTE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_ELIG_LVG_RSN_PRTE_V, object_name:BENBV_ELIG_LVG_RSN_PRTE_V, status:VALID,
-
VIEW: APPS.HRBV_PERIOD_OF_SERVICE
12.2.2
-
VIEW: APPS.BENBV_ELIG_LVG_RSN_PRTE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_ELIG_LVG_RSN_PRTE_V, object_name:BENBV_ELIG_LVG_RSN_PRTE_V, status:VALID,
-
VIEW: APPS.HRBV_PERIOD_OF_SERVICE
12.1.1
-
View: BEN_LVG_RSN_RT_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_LVG_RSN_RT_D, object_name:BEN_LVG_RSN_RT_D, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_LVG_RSN_RT_D ,
-
View: BEN_LVG_RSN_RT_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_LVG_RSN_RT_D, object_name:BEN_LVG_RSN_RT_D, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_LVG_RSN_RT_D ,
-
APPS.HR_LEAVING_REASON_MIG SQL Statements
12.1.1
-
APPS.HR_LEAVING_REASON_MIG SQL Statements
12.2.2
-
View: BEN_ELIG_LVG_RSN_PRTE_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIG_LVG_RSN_PRTE_D, object_name:BEN_ELIG_LVG_RSN_PRTE_D, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_ELIG_LVG_RSN_PRTE_D ,
-
View: HRI_CL_RSN_SEP_X_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:HRI.HRI_CL_RSN_SEP_X_V, object_name:HRI_CL_RSN_SEP_X_V, status:VALID, product: HRI - Human Resources Intelligence (Obsolete) , implementation_dba_data: APPS.HRI_CL_RSN_SEP_X_V ,
-
View: HRI_CL_RSN_SEP_X_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HRI.HRI_CL_RSN_SEP_X_V, object_name:HRI_CL_RSN_SEP_X_V, status:VALID, product: HRI - Human Resources Intelligence , implementation_dba_data: APPS.HRI_CL_RSN_SEP_X_V ,
-
APPS.PER_FR_TERMINATION_UPG_PKG SQL Statements
12.1.1
-
APPS.PER_FR_TERMINATION_UPG_PKG SQL Statements
12.2.2
-
View: BEN_ELIG_LVG_RSN_PRTE_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIG_LVG_RSN_PRTE_D, object_name:BEN_ELIG_LVG_RSN_PRTE_D, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_ELIG_LVG_RSN_PRTE_D ,
-
View: BENBV_ELIG_LVG_RSN_PRTE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_ELIG_LVG_RSN_PRTE_V, object_name:BENBV_ELIG_LVG_RSN_PRTE_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies which leaving reason is included or excluded from an eligibility profile. , implementation_dba_data: APPS.BENBV_ELIG_LVG_RSN_PRTE_V ,
-
View: BENBV_ELIG_LVG_RSN_PRTE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_ELIG_LVG_RSN_PRTE_V, object_name:BENBV_ELIG_LVG_RSN_PRTE_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies which leaving reason is included or excluded from an eligibility profile. , implementation_dba_data: APPS.BENBV_ELIG_LVG_RSN_PRTE_V ,
-
VIEW: APPS.PER_PERIODS_OF_WORK_V
12.2.2
-
VIEW: APPS.PER_PERIODS_OF_WORK_V
12.1.1
-
View: HRILV_SEPRSN_X
12.1.1
product: HRI - Human Resources Intelligence , implementation_dba_data: Not implemented in this database ,
-
View: HRILV_SEPRSN_X
12.2.2
product: HRI - Human Resources Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.HRFV_TERMINATIONS
12.1.1
-
VIEW: APPS.HRFV_TERMINATIONS
12.2.2
-
View: PER_PERIODS_OF_SERVICE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PERIODS_OF_SERVICE_V, object_name:PER_PERIODS_OF_SERVICE_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_PERIODS_OF_SERVICE_V ,
-
View: PER_PERIODS_OF_SERVICE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PERIODS_OF_SERVICE_V, object_name:PER_PERIODS_OF_SERVICE_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_PERIODS_OF_SERVICE_V ,
-
VIEW: APPS.HRIFV_PERIOD_OF_WORK
12.2.2
-
VIEW: APPS.HRIFV_PERIOD_OF_WORK
12.1.1
-
PACKAGE: APPS.PER_PERRPRTM_XMLP_PKG
12.1.1
-
PACKAGE: APPS.PER_PERRPRTM_XMLP_PKG
12.2.2