DBA Data[Home] [Help]

APPS.HR_AU_HOLIDAYS dependencies on PER_ACCRUAL_CALC_FUNCTIONS

Line 146: -- per_accrual_calc_functions.get_net_accrual procedure. The

142: --
143: -- get_net_accrual
144: --
145: -- This function is a wrapper for the
146: -- per_accrual_calc_functions.get_net_accrual procedure. The
147: -- wrapper is required so that a FastFormula function can be
148: -- registered for use in formulas.
149: --
150:

Line 195: per_accrual_calc_functions.get_net_accrual(

191: l_end_date := NULL ;
192: l_accrual_end_date := NULL ;
193: l_accrual := NULL ;
194: l_net_entitlement := NULL ;
195: per_accrual_calc_functions.get_net_accrual(
196: p_assignment_id => l_assignment_id
197: ,p_plan_id => l_plan_id
198: ,p_payroll_id => l_payroll_id
199: ,p_business_group_id => l_business_group_id

Line 290: -- per_accrual_calc_functions.get_other_net_contribution

286: -- core get_absence function
287: --
288: -- Added Step 4a for Bug 6449311
289: -- 4a Find the Net Contribution of other elements using
290: -- per_accrual_calc_functions.get_other_net_contribution
291: --
292: -- 5: Find Leave Accrual Initialise during period
293: --
294: -- 6: Find Leave Entitlement Initialise during period

Line 365: per_accrual_calc_functions.get_carry_over_values(

361: fetch c_get_co_formula into l_co_formula_id;
362: close c_get_co_formula;
363:
364:
365: per_accrual_calc_functions.get_carry_over_values(
366: p_co_formula_id => l_co_formula_id
367: ,p_assignment_id => l_assignment_id
368: ,p_calculation_date => l_calculation_date
369: ,p_accrual_plan_id => l_plan_id

Line 393: per_accrual_calc_functions.get_net_accrual(

389: else
390: l_entitlement_period_end_date := (l_accrual_period_start_date - 1);
391: end if;
392:
393: per_accrual_calc_functions.get_net_accrual(
394: p_assignment_id => l_assignment_id
395: ,p_plan_id => l_plan_id
396: ,p_payroll_id => l_payroll_id
397: ,p_business_group_id => l_business_group_id

Line 410: per_accrual_calc_functions.get_net_accrual(

406: --
407: -- Step three find the Net leave at the calculation_date
408: --
409:
410: per_accrual_calc_functions.get_net_accrual(
411: p_assignment_id => l_assignment_id
412: ,p_plan_id => l_plan_id
413: ,p_payroll_id => l_payroll_id
414: ,p_business_group_id => l_business_group_id

Line 428: l_accrual_absences := per_accrual_calc_functions.get_absence(

424: --
425: -- Step four find out the numder of hours taken during the accrual period
426: --
427:
428: l_accrual_absences := per_accrual_calc_functions.get_absence(
429: p_assignment_id => l_assignment_id,
430: p_plan_id => l_plan_id,
431: p_start_date => l_accrual_period_start_date,
432: p_calculation_date => l_calculation_date );

Line 439: l_other := per_accrual_calc_functions.get_other_net_contribution(

435: --
436: -- Step 4a find out the contribution from other elements
437: --
438:
439: l_other := per_accrual_calc_functions.get_other_net_contribution(
440: p_assignment_id => l_assignment_id,
441: p_plan_id => l_plan_id,
442: p_start_date => l_accrual_period_start_date,
443: p_calculation_date => l_calculation_date );