DBA Data[Home] [Help]

PACKAGE: APPS.IGW_SECURITY

Source


1 package igw_security AUTHID CURRENT_USER as
2 --$Header: igwcoses.pls 115.6 2002/03/28 19:13:12 pkm ship    $
3 function allow_create(p_function_name   IN   VARCHAR2,
4                       p_proposal_id     IN   NUMBER,
5                       p_user_id         IN   NUMBER)
6 return VARCHAR2;
7 pragma restrict_references (allow_create,wnds,wnps);
8 
9 function allow_modify(p_function_name   IN   VARCHAR2,
10                       p_proposal_id     IN   NUMBER,
11                       p_user_id         IN   NUMBER)
12 return VARCHAR2;
13 
14 pragma restrict_references (allow_modify,wnds,wnps);
15 function allow_query( p_function_name   IN   VARCHAR2,
16                       p_proposal_id     IN   NUMBER,
17                       p_user_id         IN   NUMBER)
18 return VARCHAR2;
19 pragma restrict_references (allow_query,wnds,wnps);
20 
21 function gms_enabled return varchar2;
22 
23 end igw_security;