DBA Data[Home] [Help]

APPS.GMS_SECURITY_EXTN dependencies on GMS_SECURITY

Line 1: PACKAGE BODY gms_security_extn AS

1: PACKAGE BODY gms_security_extn AS
2: /* $Header: gmsseexb.pls 120.1 2005/07/26 14:38:26 appldev ship $ */
3:
4: PROCEDURE check_award_access ( X_award_id IN NUMBER
5: , X_person_id IN NUMBER

Line 25: -- GMS_SECURITY package. It takes two input parameters, person_id and

21:
22: -- GMS provides an API to determine
23: -- whether or not a given person is an active key member on a specified
24: -- award. This function, CHECK_KEY_MEMBER is defined in the
25: -- GMS_SECURITY package. It takes two input parameters, person_id and
26: -- award_id, and returns as output: 'Y' if the person is an active
27: -- key member for the award, and 'N' if the person is not.
28:
29: -- Note, if NULL values are passed for either parameter, person or

Line 35: X_value := gms_security.check_key_member( X_person_id, X_award_id );

31:
32: -- Code can be added here as per the business rules.
33: --Added to fix bug # 866342
34: IF (X_calling_module = 'GMSAWASI') THEN
35: X_value := gms_security.check_key_member( X_person_id, X_award_id );
36: ELSE
37: X_value := 'Y';
38: END IF;
39:

Line 60: END gms_security_extn;

56: END IF;
57:
58: END check_award_access;
59:
60: END gms_security_extn;