DBA Data[Home] [Help]

APPS.PYWSPAS dependencies on PYWSPAS

Line 1: package body pywspas as

1: package body pywspas as
2: /* $Header: pywspas1.pkb 115.0 99/07/17 06:50:45 porting ship $ */
3: --
4: -- get the start date for the earliest record for the assignment,
5: -- and the end date for the latest record for it. These delimit the

Line 2: /* $Header: pywspas1.pkb 115.0 99/07/17 06:50:45 porting ship $ */

1: package body pywspas as
2: /* $Header: pywspas1.pkb 115.0 99/07/17 06:50:45 porting ship $ */
3: --
4: -- get the start date for the earliest record for the assignment,
5: -- and the end date for the latest record for it. These delimit the
6: -- session date range which may be set in called forms.

Line 23: hr_utility.set_message_token ('PROCEDURE', 'pywspas.get_date_limits');

19: fetch c into p_earliest_date, p_latest_date;
20: if (c%notfound) then
21: close c;
22: hr_utility.set_message (801, 'HR_6153_ALL_PROCEDURE_FAIL');
23: hr_utility.set_message_token ('PROCEDURE', 'pywspas.get_date_limits');
24: hr_utility.set_message_token ('STEP', '1');
25: hr_utility.raise_error;
26: else
27: close c;

Line 31: end pywspas;

27: close c;
28: end if;
29: end get_date_limits;
30:
31: end pywspas;