DBA Data[Home] [Help]

PACKAGE: APPS.DT_PKG

Source


1 package DT_PKG AUTHID CURRENT_USER as
2 /* $Header: dt.pkh 115.1 2002/12/09 15:29:17 apholt ship $ */
3 /*
4   ===========================================================================
5  |               Copyright (c) 1996 Oracle Corporation                       |
6  |                       All rights reserved.                                |
7   ===========================================================================
8 Name
9 	HR Libraries server-side agent
10 Purpose
11 	Agent handles all server-side traffic to and from forms libraries. This
12 	is particularly necessary because we wish to avoid the situation where
13 	a form and its libraries both refer to the same server-side package.
14 	Forms/libraries appears to be unable to cope with this situation in
15 	circumstances which we cannot yet define.
16 History
17 	21 Apr 95	N Simpson	Created
18 110.1	03 Sep 97	Khabibul	Fixed problem with 255 chars width
19 115.1   09-Dec-2002     A.Holt          NOCOPY Performance Changes for 11.5.9
20 */
21 procedure get_dates
22 (
23     p_ses_date            out nocopy date,
24     p_ses_yesterday_date  out nocopy date,
25     p_start_of_time       out nocopy date,
26     p_end_of_time         out nocopy date,
27     p_sys_date            out nocopy date,
28     p_commit              out nocopy number
29 );
30 --
31 end	DT_PKG;