DBA Data[Home] [Help]

PACKAGE: APPS.BIS_FN_SECURITY

Source


1 PACKAGE BIS_FN_SECURITY AUTHID CURRENT_USER AS
2 /* $Header: BISLNKSS.pls 115.1 99/07/17 16:08:32 porting ship $ */
3 
4 --  Start of Comments
5 --  API name    isAccessible
6 --  Type        Public
7 --  Function
8 --       Returns 'TRUE' if the given responsibility is permitted to access
9 --       the function. otherwise returns 'FALSE'
10 --  Pre-reqs
11 --
12 --  Parameters
13 --      p_function_id         - id of the function in fnd_form_functions
14 --      p_responsibility_id   - id of responsibility form fnd_responsibility
15 --  Version     Current version = 1.0
16 --              Initial version = 1.0
17 --
18 --  Notes
19 --
20 --  End of Comments
21 FUNCTION isAccessible
22 (
23    p_function_id      	in number
24    ,p_responsibility_id in number
25 )
26 RETURN VARCHAR2;
27 PRAGMA RESTRICT_REFERENCES(isAccessible, WNDS, WNPS, RNPS);
28 
29 END BIS_FN_SECURITY ;