DBA Data[Home] [Help]

PACKAGE: APPS.FND_INSTALLATION

Source


1 PACKAGE FND_INSTALLATION AUTHID DEFINER AS
2 /* $Header: AFINSTLS.pls 120.4 2012/06/21 17:45:01 jvalenti ship $ */
3 
4 
5     --
6     --  The get() function no longer uses the appl_id argument
7     --
8     --  It calls private_get(), which gets the information for you
9     --  based solely on the dep_appl_id and the current schema
10     --
11     --  get() may return different information with the same arguments
12     --  if you connect to a different schema
13     --
14   FUNCTION get (appl_id     IN  INTEGER,
15                 dep_appl_id IN  INTEGER,
16                 status      OUT NOCOPY VARCHAR2,
17                 industry    OUT NOCOPY VARCHAR2)
18   RETURN boolean;
19   PRAGMA RESTRICT_REFERENCES (get, WNDS,WNPS);
20 
21     --
22     -- get_app_info() may return different information if you call it
23     -- from a different schema
24     -- See notes on get() above
25     --
26   FUNCTION get_app_info  (application_short_name	in  varchar2,
27   			status			out nocopy varchar2,
28   			industry		out nocopy varchar2,
29   			oracle_schema		out nocopy varchar2)
30   RETURN boolean;
31   PRAGMA RESTRICT_REFERENCES (get_app_info, WNDS,WNPS);
32 
33     --
34     -- get_app_info_other() will return consistent information every time
35     -- you call it, because it ignores the current schema and uses
36     -- the target_schema argument instead
37     --
38   FUNCTION get_app_info_other  (application_short_name	in  varchar2,
39   			target_schema		in  varchar2,
40   			status			out nocopy varchar2,
41   			industry		out nocopy varchar2,
42   			oracle_schema		out nocopy varchar2)
43   RETURN boolean;
44   PRAGMA RESTRICT_REFERENCES (get_app_info_other, WNDS,WNPS);
45 
46 END FND_INSTALLATION;