DBA Data[Home] [Help]

APPS.PY_ROLLBACK_PKG dependencies on PAY_CONTINUOUS_CALC

Line 3194: pay_continuous_calc.g_override_cc := TRUE;

3190: info.pact_id := p_payroll_action_id;
3191: --
3192: -- Set the Continuous Calc override flag, so that the trigger points
3193: -- are not fired.
3194: pay_continuous_calc.g_override_cc := TRUE;
3195: --
3196: -- Ensure delete from gl_interface in remove_gl_entries on
3197: -- each execution.
3198: mtgl_mode_cached := FALSE;

Line 3355: pay_continuous_calc.g_override_cc := FALSE;

3351: end if;
3352: commit;
3353: end if;
3354: --
3355: pay_continuous_calc.g_override_cc := FALSE;
3356: --
3357: exception
3358: when others then
3359: pay_continuous_calc.g_override_cc := FALSE;

Line 3359: pay_continuous_calc.g_override_cc := FALSE;

3355: pay_continuous_calc.g_override_cc := FALSE;
3356: --
3357: exception
3358: when others then
3359: pay_continuous_calc.g_override_cc := FALSE;
3360: raise;
3361: end rollback_payroll_action;
3362: --
3363: /*

Line 3451: pay_continuous_calc.g_override_cc := TRUE;

3447: savepoint before;
3448: --
3449: -- Set the Continuous Calc override flag, so that the trigger points
3450: -- are not fired.
3451: pay_continuous_calc.g_override_cc := TRUE;
3452: --
3453: if(info.rollback_mode <> 'BACKPAY') then
3454: val_assact_rollback(info);
3455: end if;

Line 3513: pay_continuous_calc.g_override_cc := FALSE;

3509: --
3510: end if;
3511: end if;
3512: g_error_count := 0; -- only count consecutive errors.
3513: pay_continuous_calc.g_override_cc := FALSE;
3514: exception
3515: -- Throw away any work we have done.
3516: when others then
3517: rollback to savepoint before;

Line 3518: pay_continuous_calc.g_override_cc := FALSE;

3514: exception
3515: -- Throw away any work we have done.
3516: when others then
3517: rollback to savepoint before;
3518: pay_continuous_calc.g_override_cc := FALSE;
3519: if(p_all_or_nothing) then
3520: raise;
3521: else
3522: assact_error(info, sqlcode, sqlerrm);