DBA Data[Home] [Help]

PACKAGE: APPS.IGS_GE_NUMBER

Source


1 PACKAGE IGS_GE_NUMBER AUTHID CURRENT_USER AS
2 /* $Header: IGSGE11S.pls 115.2 2002/02/12 16:57:04 pkm ship    $ */
3 
4 -- Replacement of canonical_to_number
5 
6 function to_num(
7   p_canonical_number in varchar2)
8 return number;
9 PRAGMA restrict_references(to_num, WNDS, WNPS, RNDS);
10 
11 -- Replacement of number_to_canonical
12 
13 function to_cann(
14   p_numberval in number)
15 return varchar2;
16 PRAGMA restrict_references(to_cann, WNDS, WNPS, RNDS);
17 
18 END IGS_GE_NUMBER;