DBA Data[Home] [Help]

PACKAGE: APPS.IGS_GE_DATE

Source


1 PACKAGE IGS_GE_DATE AUTHID CURRENT_USER AS
2 /* $Header: IGSGE10S.pls 115.2 2002/02/12 16:57:00 pkm ship    $ */
3 
4 -- Replacement of to_date fn for getting date in canonical format
5 
6 function igsdate(
7   p_canonical_date in varchar2)
8 return date;
9 PRAGMA restrict_references(igsdate, WNDS, WNPS, RNDS);
10 
11 -- Replacement of to_char fn for getting date string in canonical format
12 
13 function igschar(
14   p_dateval in date)
15 return varchar2;
16 PRAGMA restrict_references(igschar, WNDS, WNPS, RNDS);
17 
18 -- Replacement of to_char fn for getting datetime string in canonical format
19 
20 function igscharDT(
21   p_dateval in date)
22 return varchar2;
23 PRAGMA restrict_references(igscharDT, WNDS, WNPS, RNDS);
24 
25 END IGS_GE_DATE;