DBA Data[Home] [Help]

PACKAGE: APPS.FND_FUNCTION_W

Source


1 PACKAGE fnd_function_w AUTHID CURRENT_USER AS
2 /* $Header: hrfndwrs.pkh 115.3 2002/12/11 10:50:50 hjonnala noship $*/
3 /*
4   ||===========================================================================
5   || PROCEDURE: test
6   ||---------------------------------------------------------------------------
7   ||
8   || Description:
9   ||     This procedure will call the actual API - fnd_function.test() which
10   ||     does the following ;
11   ||       Test if function is accessible under current responsibility.
12   ||       Only checks static function security, not data security.
13   ||       This is here for cases where performance is important,
14   ||       and for backwards compatibility, but in general new code
15   ||       should use TEST_INSTANCE instead if acting on a particular
16   ||       object instance (database row).
17   ||
18   ||
19   || Pre Conditions:
20   ||
21   || In Arguments:
22   ||     function_name - function to test
23   ||
24   || out nocopy Arguments:
25   ||     result       - 'Y' - if the function is accessible
26   ||                    'N' - if the function is not accessible.
27   ||
28   || In out nocopy Arguments:
29   ||
30   || Post Success:
31   ||     Executes the API call.
32   ||
33   || Post Failure:
34   ||     Raises an exception
35   ||
36   || Access Status:
37   ||     Public.
38   ||
39   ||===========================================================================
40   */
41 
42   procedure TEST
43                 (p_function_name in  varchar2,
44                  p_result        out nocopy varchar2) ;
45 
46   /*
47   ||===========================================================================
48   || PROCEDURE: test_id
49   ||---------------------------------------------------------------------------
50   ||
51   || Description:
52   ||     This procedure will call the actual API - fnd_function.test() which
53   ||     does the following ;
54   ||       Test if function is accessible under current responsibility.
55   ||
56   ||
57   || Pre Conditions:
58   ||
59   || In Arguments:
60   ||     function_id - function id to test
61   ||
62   || out nocopy Arguments:
63   ||     result       - 'Y' - if the function is accessible
64   ||                    'N' - if the function is not accessible.
65   ||
66   || In out nocopy Arguments:
67   ||
68   || Post Success:
69   ||     Executes the API call.
70   ||
71   || Post Failure:
72   ||     Raises an exception
73   ||
74   || Access Status:
75   ||     Public.
76   ||
77   ||===========================================================================
78   */
79 
80   procedure TEST_ID
81                 (p_function_id   in  number,
82                  p_result        out nocopy varchar2) ;
83 
84 END fnd_function_w;