DBA Data[Home] [Help]

APPS.GMS_SECURITY dependencies on GMS_SECURITY

Line 1: PACKAGE BODY gms_security AS

1: PACKAGE BODY gms_security AS
2: /* $Header: gmsseseb.pls 115.2 2002/07/04 11:22:32 gnema ship $ */
3:
4:
5: /* ----------------------------------------------------------------------

Line 12: || module that is calling gms_security

8: ||
9: || Input Parameters:
10: || X_user_id <-- identifier of the application user
11: || X_calling_module <-- hard-coded string that refers to the
12: || module that is calling gms_security
13: || functions
14: ||
15: || Description:
16: || This function is called to initialize package globals that are

Line 96: gms_security_extn.check_award_access(

92: IF ( G_query_allowed IS NOT NULL ) THEN
93: RETURN( G_query_allowed );
94: END IF;
95:
96: gms_security_extn.check_award_access(
97: X_award_id
98: , G_person_id
99: , G_module_name
100: , 'ALLOW_QUERY'

Line 144: gms_security_extn.check_award_access(

140: IF ( G_update_allowed IS NOT NULL ) THEN
141: RETURN( G_update_allowed );
142: END IF;
143:
144: gms_security_extn.check_award_access(
145: X_award_id
146: , G_person_id
147: , G_module_name
148: , 'ALLOW_UPDATE'

Line 269: END gms_security;

265: END check_key_member;
266:
267:
268:
269: END gms_security;