DBA Data[Home] [Help]

APPS.PY_ROLLBACK_PKG dependencies on PAY_CONTINUOUS_CALC

Line 3073: pay_continuous_calc.g_override_cc := TRUE;

3069: info.pact_id := p_payroll_action_id;
3070: --
3071: -- Set the Continuous Calc override flag, so that the trigger points
3072: -- are not fired.
3073: pay_continuous_calc.g_override_cc := TRUE;
3074: --
3075: -- Ensure delete from gl_interface in remove_gl_entries on
3076: -- each execution.
3077: mtgl_mode_cached := FALSE;

Line 3234: pay_continuous_calc.g_override_cc := FALSE;

3230: end if;
3231: commit;
3232: end if;
3233: --
3234: pay_continuous_calc.g_override_cc := FALSE;
3235: --
3236: exception
3237: when others then
3238: pay_continuous_calc.g_override_cc := FALSE;

Line 3238: pay_continuous_calc.g_override_cc := FALSE;

3234: pay_continuous_calc.g_override_cc := FALSE;
3235: --
3236: exception
3237: when others then
3238: pay_continuous_calc.g_override_cc := FALSE;
3239: raise;
3240: end rollback_payroll_action;
3241: --
3242: /*

Line 3330: pay_continuous_calc.g_override_cc := TRUE;

3326: savepoint before;
3327: --
3328: -- Set the Continuous Calc override flag, so that the trigger points
3329: -- are not fired.
3330: pay_continuous_calc.g_override_cc := TRUE;
3331: --
3332: if(info.rollback_mode <> 'BACKPAY') then
3333: val_assact_rollback(info);
3334: end if;

Line 3392: pay_continuous_calc.g_override_cc := FALSE;

3388: --
3389: end if;
3390: end if;
3391: g_error_count := 0; -- only count consecutive errors.
3392: pay_continuous_calc.g_override_cc := FALSE;
3393: exception
3394: -- Throw away any work we have done.
3395: when others then
3396: rollback to savepoint before;

Line 3397: pay_continuous_calc.g_override_cc := FALSE;

3393: exception
3394: -- Throw away any work we have done.
3395: when others then
3396: rollback to savepoint before;
3397: pay_continuous_calc.g_override_cc := FALSE;
3398: if(p_all_or_nothing) then
3399: raise;
3400: else
3401: assact_error(info, sqlcode, sqlerrm);