DBA Data[Home] [Help]

PACKAGE BODY: APPS.DT_PKG

Source


1 package body DT_PKG as
2 /* $Header: dt.pkb 115.1 2002/12/09 15:18:15 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 char 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 ) is
30 --
31 begin
32 --
33 dt_fndate.get_dates (
34 	p_ses_date,
35 	p_ses_yesterday_date,
36 	p_start_of_time,
37 	p_end_of_time,
38 	p_sys_date,
39 	p_commit);
40 --
41 end get_dates;
42 --
43 end	DT_PKG;