DBA Data[Home] [Help]

APPS.EGO_CUSTOM_SECURITY_PUB dependencies on EGO_CUSTOM_SECURITY_PUB

Line 1: PACKAGE BODY EGO_CUSTOM_SECURITY_PUB AS

1: PACKAGE BODY EGO_CUSTOM_SECURITY_PUB AS
2: /* $Header: EGOCSECB.pls 120.0.12010000.1 2009/07/23 00:29:03 ksuleman noship $ */
3:
4: G_PKG_NAME CONSTANT VARCHAR2(30):='EGO_CUSTOM_SECURITY_PUB';
5:

Line 4: G_PKG_NAME CONSTANT VARCHAR2(30):='EGO_CUSTOM_SECURITY_PUB';

1: PACKAGE BODY EGO_CUSTOM_SECURITY_PUB AS
2: /* $Header: EGOCSECB.pls 120.0.12010000.1 2009/07/23 00:29:03 ksuleman noship $ */
3:
4: G_PKG_NAME CONSTANT VARCHAR2(30):='EGO_CUSTOM_SECURITY_PUB';
5:
6: -- Start of comments
7: -- API name : check_custom_security
8: -- Type : Public

Line 13: -- IN : p_in_params_rec IN EGO_CUSTOM_SECURITY_PUB.in_params_rec_type

9: -- Pre-reqs : None.
10: -- Function : Customized security check procudure based on information
11: -- related to user, entity, and object etc.
12: -- Parameters :
13: -- IN : p_in_params_rec IN EGO_CUSTOM_SECURITY_PUB.in_params_rec_type
14: -- Required
15: -- NOTE: p_in_params_rec.user_name is one of the following forms
16: -- 'HZ_PARTY:partyId' or NULL.
17: -- 1. Create table EGO_CUSTOM_SEC_B based on fnd_user_name such as 'PLMMGR'

Line 21: -- OUT : x_out_params_rec OUT NOCOPY EGO_CUSTOM_SECURITY_PUB.out_params_rec_type

17: -- 1. Create table EGO_CUSTOM_SEC_B based on fnd_user_name such as 'PLMMGR'
18: -- -Set p_in_params_rec.user_name := FND_GLOBAL.USER_NAME
19: -- 2. Create table combining 'HZ_PARTY:partyId' and find_user_name
20: -- -Set p_in_params_rec.user_name := nvl(p_in_params_rec.user_name, FND_GLOBAL.USER_NAME)
21: -- OUT : x_out_params_rec OUT NOCOPY EGO_CUSTOM_SECURITY_PUB.out_params_rec_type
22: -- NOTE: x_out_params_rec.user_has_function = 'T' if user has proper previlege
23: -- 'F' if user has no previlege
24: -- 'U' if there are unexpected errors
25: -- Oracle API Standard Parameters :

Line 44: p_in_params_rec IN EGO_CUSTOM_SECURITY_PUB.in_params_rec_type

40: -- End of comments
41: PROCEDURE check_custom_security
42: (
43: --program parameters
44: p_in_params_rec IN EGO_CUSTOM_SECURITY_PUB.in_params_rec_type
45: ,x_out_params_rec OUT NOCOPY EGO_CUSTOM_SECURITY_PUB.out_params_rec_type
46:
47: --standard parameters
48: ,p_api_version IN NUMBER

Line 45: ,x_out_params_rec OUT NOCOPY EGO_CUSTOM_SECURITY_PUB.out_params_rec_type

41: PROCEDURE check_custom_security
42: (
43: --program parameters
44: p_in_params_rec IN EGO_CUSTOM_SECURITY_PUB.in_params_rec_type
45: ,x_out_params_rec OUT NOCOPY EGO_CUSTOM_SECURITY_PUB.out_params_rec_type
46:
47: --standard parameters
48: ,p_api_version IN NUMBER
49: ,p_init_msg_list IN VARCHAR2 default FND_API.G_FALSE

Line 157: END EGO_CUSTOM_SECURITY_PUB;

153: x_out_params_rec.user_has_function := 'U';
154: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
155: END check_custom_security;
156:
157: END EGO_CUSTOM_SECURITY_PUB;