DBA Data[Home] [Help]

APPS.HR_DYNSQL dependencies on PAY_CONTINUOUS_CALC

Line 325: pay_continuous_calc.g_override_cc := TRUE;

321: --
322: begin
323: -- Set the Continuous Calc override flag, so that the trigger points
324: -- are not fired.
325: pay_continuous_calc.g_override_cc := TRUE;
326: --
327:
328: hr_utility.set_location(c_indent,30);
329:

Line 715: pay_continuous_calc.g_override_cc := FALSE;

711: where eev.element_entry_id = update_ee_id
712: and (p_effective_date - 1) between
713: eev.effective_start_date and eev.effective_end_date;
714: */
715: pay_continuous_calc.g_override_cc := FALSE;
716: --
717: exception
718: when others then
719: pay_continuous_calc.g_override_cc := FALSE;

Line 719: pay_continuous_calc.g_override_cc := FALSE;

715: pay_continuous_calc.g_override_cc := FALSE;
716: --
717: exception
718: when others then
719: pay_continuous_calc.g_override_cc := FALSE;
720: raise;
721: end;
722: --
723: -- Return element_entry_id that we updated.

Line 834: pay_continuous_calc.g_override_cc := TRUE;

830: -- then set the effective_end_dates as appropriate.
831: begin
832: -- Set the Continuous Calc override flag, so that the trigger points
833: -- are not fired.
834: pay_continuous_calc.g_override_cc := TRUE;
835: --
836: delete from pay_element_entries_f pee
837: where pee.element_entry_id = stop_ee_id
838: and pee.effective_start_date > p_date_earned;

Line 859: pay_continuous_calc.g_override_cc := FALSE;

855: where eev.element_entry_id = stop_ee_id
856: and p_date_earned between
857: eev.effective_start_date and eev.effective_end_date;
858: --
859: pay_continuous_calc.g_override_cc := FALSE;
860: --
861: exception
862: when others then
863: pay_continuous_calc.g_override_cc := FALSE;

Line 863: pay_continuous_calc.g_override_cc := FALSE;

859: pay_continuous_calc.g_override_cc := FALSE;
860: --
861: exception
862: when others then
863: pay_continuous_calc.g_override_cc := FALSE;
864: raise;
865: end;
866: end stop_recurring_ee;
867: --