DBA Data[Home] [Help]

APPS.HRWSDPR dependencies on HR_UTILITY

Line 20: hr_utility.set_message (801, 'HR_6552_PAY_OUTSIDE_PERIODS');

16: open c;
17: fetch c into p_period, p_start_date, p_end_date;
18: if (c%notfound) then
19: close c;
20: hr_utility.set_message (801, 'HR_6552_PAY_OUTSIDE_PERIODS');
21: hr_utility.raise_error;
22: else
23: close c;
24: end if;

Line 21: hr_utility.raise_error;

17: fetch c into p_period, p_start_date, p_end_date;
18: if (c%notfound) then
19: close c;
20: hr_utility.set_message (801, 'HR_6552_PAY_OUTSIDE_PERIODS');
21: hr_utility.raise_error;
22: else
23: close c;
24: end if;
25: end get_period_for_date;