Balance Dimensions for Supplemental Earnings [message #328287] |
Thu, 19 June 2008 10:51 |
rbertrand
Messages: 45 Registered: November 2005
|
Member |
|
|
hello,
I have a proc that gets balances. I use it to get 401k contribution balance and employer matching balance for a payroll run. Problem: it works fine for regular payroll run, but we have a earning element that is a bonus that creates a separate check. The employees with this element get picked up but have a zero 401k balance reported? This is what my proc looks like:
declare
p_contribution_amt number ;
begin
p_contribution_amt := Lgmc_Get_Balance_Value (
1520, --assignment id
'12-jun-08', --p_effective_date
'Def Comp 401K', --balance name
'Assignment within Government Reporting Entity Run' ) -- balance dimension ;
dbms_output.put_line('p_contribution_amt || p_contribution_amt) ;
end ;
If I change the balance dimension to:
'Assignment within Government Reporting Entity Pay Date' it gets the correct 401k balances for employees with bonus pay and without.
What is the difference in the two balance dimensions?
|
|
|
|
Balance Dimensions for Supplemental Earnings [message #328296 is a reply to message #328287] |
Thu, 19 June 2008 12:35 |
rbertrand
Messages: 45 Registered: November 2005
|
Member |
|
|
hello,
I have a proc that gets balances. I use it to get 401k contribution balance and employer matching balance for a payroll run.
Problem: it works fine for regular payroll run, but we have an earning element that is a bonus that creates a separate check. The employees with this element get picked up but have a zero 401k balance reported? This is what my proc looks like:
declare
p_contribution_amt number ;
begin
p_contribution_amt := Lgmc_Get_Balance_Value (
1520, --assignment id
'12-jun-08', --p_effective_date
'Def Comp 401K', --balance name
'Assignment within Government Reporting
Entity Run') --balance dimension
dbms_output.put_line('p_contribution_amt || p_contribution_amt) ;
end ;
If I change the balance dimension to:
'Assignment within Government Reporting Entity Pay Date' it gets the correct 401k balances for employees with bonus pay and without.
What is the difference in the two balance dimensions?
|
|
|
|
|
|
|
|