DBA Data[Home] [Help]

APPS.PAY_PERSONAL_PAY_METHODS_BRUI dependencies on FND_DATE

Line 12: fnd_date.date_to_canonical(:new.effective_start_date),

8: if inserting or updating then
9: status := hr_payments.check_amt(to_char(:new.percentage),
10: to_char(:new.amount));
11: status := hr_payments.mt_checks(to_char(:new.org_payment_method_id),
12: fnd_date.date_to_canonical(:new.effective_start_date),
13: to_char(:new.external_account_id));
14: -- status := hr_payments.unique_priority(to_char(:new.priority),
15: -- fnd_date.date_to_canonical(:new.effective_start_date),
16: -- fnd_date.date_to_canonical(:new.effective_end_date),

Line 15: -- fnd_date.date_to_canonical(:new.effective_start_date),

11: status := hr_payments.mt_checks(to_char(:new.org_payment_method_id),
12: fnd_date.date_to_canonical(:new.effective_start_date),
13: to_char(:new.external_account_id));
14: -- status := hr_payments.unique_priority(to_char(:new.priority),
15: -- fnd_date.date_to_canonical(:new.effective_start_date),
16: -- fnd_date.date_to_canonical(:new.effective_end_date),
17: -- to_char(:new.assignment_id));
18: end if;
19: if deleting then

Line 16: -- fnd_date.date_to_canonical(:new.effective_end_date),

12: fnd_date.date_to_canonical(:new.effective_start_date),
13: to_char(:new.external_account_id));
14: -- status := hr_payments.unique_priority(to_char(:new.priority),
15: -- fnd_date.date_to_canonical(:new.effective_start_date),
16: -- fnd_date.date_to_canonical(:new.effective_end_date),
17: -- to_char(:new.assignment_id));
18: end if;
19: if deleting then
20: status := hr_payments.check_pp(to_char(:old.personal_payment_method_id),

Line 21: fnd_date.date_to_canonical(:new.effective_end_date));

17: -- to_char(:new.assignment_id));
18: end if;
19: if deleting then
20: status := hr_payments.check_pp(to_char(:old.personal_payment_method_id),
21: fnd_date.date_to_canonical(:new.effective_end_date));
22: end if;
23: end if;
24: end hr_payments_brui;
25: