/
Getting rates for life insurance deductions

Getting rates for life insurance deductions

Description of Issue

Life insurance deductions are not stored in pr_deduction_ben or pr_ins_premium

Context
  • All versions of Munis

  • SSRS reports

  • Crystal reports

  • SaaS, Tyler-hosted clients

  • OnPrem, Self-hosted clients

  • Employee Deductions

Cause

Life insurance uses calculations based on the ages of the employee and their dependents

Resolution

The rate will be found in pr_life_insurance depending on dp_depend_DOB orĀ  e_date_of_birth from pr_employee_mast and db_life_table from pr_deduction_ben

The following query will provide the rate for a spouse life insurance:

SELECT DISTINCTĀ 
lf_rate_per_thousandĀ 
, pr_deduction_ben.a_employee_number
, a_deduction_code
, DATEDIFF(YEAR , dp_depend_DOB, GETDATE()) AS SpouseAge
, d_emp_ins_amt * lf_rate_per_thousand Ā /1000 AS SpouseRatePerThousand
FROM pr_deduction_ben Ā 
JOIN pr_employee_mast
ON pr_deduction_ben.a_employee_number = pr_employee_mast.a_employee_numberĀ 
JOIN pr_life_insuranceĀ 
ON db_life_table = lf_tableĀ 
AND Ā DATEDIFF(YEAR , dp_depend_DOB, GETDATE())>= lf_age_from
AND Ā DATEDIFF(YEAR , dp_depend_DOB, GETDATE()) <= lf_age_toĀ 
WHERE dp_depend_rltn_cd ='S'
and YEAR(dp_depend_stop_dt) =9999


Additional Information










Related content

Employee Amount and Percent field in pr_deduction_ben Is Different Than What Shows in ERP
Employee Amount and Percent field in pr_deduction_ben Is Different Than What Shows in ERP
More like this
Calculating rate per cycle values from Employee Deductions
Calculating rate per cycle values from Employee Deductions
More like this
How to calculate life insurance withholding - Calc Code 19
How to calculate life insurance withholding - Calc Code 19
More like this
Benefits Enrollment Spouse Life Insurance calculates at a lower value than expected
Benefits Enrollment Spouse Life Insurance calculates at a lower value than expected
More like this
Life Insurance Report pulling incorrect Salary
Life Insurance Report pulling incorrect Salary
More like this
How to calculate life insurance deduction using a Calc Code 15 - Life Insurance-Annual Salary
How to calculate life insurance deduction using a Calc Code 15 - Life Insurance-Annual Salary
More like this