DBA Data[Home] [Help]

APPS.PA_PROJECT_PUB dependencies on PA_SECURITY

Line 6162: -- need to call the pa_security package

6158: -- PA L Changes 3010538
6159:
6160: -- As part of enforcing project security, which would determine
6161: -- whether the user has the necessary privileges to update the project
6162: -- need to call the pa_security package
6163:
6164: pa_security.initialize (X_user_id => l_user_id,
6165: X_calling_module => l_module_name);
6166:

Line 6164: pa_security.initialize (X_user_id => l_user_id,

6160: -- As part of enforcing project security, which would determine
6161: -- whether the user has the necessary privileges to update the project
6162: -- need to call the pa_security package
6163:
6164: pa_security.initialize (X_user_id => l_user_id,
6165: X_calling_module => l_module_name);
6166:
6167: -- Actions performed using the APIs would be subject to
6168: -- function security. If the responsibility does not allow

Line 6248: IF pa_security.allow_query (x_project_id => l_project_id ) = 'N' THEN

6244:
6245: -- Now verify whether project security allows the user to update
6246: -- the project
6247:
6248: IF pa_security.allow_query (x_project_id => l_project_id ) = 'N' THEN
6249:
6250: -- The user does not have query privileges on this project
6251: -- Hence, cannot update the project.Raise error
6252: pa_interface_utils_pub.map_new_amg_msg

Line 6267: IF pa_security.allow_update (x_project_id => l_project_id ) = 'N' THEN

6263: RAISE FND_API.G_EXC_ERROR;
6264: ELSE
6265: -- If the user has query privileges, then check whether
6266: -- update privileges are also available
6267: IF pa_security.allow_update (x_project_id => l_project_id ) = 'N' THEN
6268:
6269: -- The user does not have update privileges on this project
6270: -- Hence , raise error
6271:

Line 11249: -- need to call the pa_security package

11245: END IF;
11246:
11247: -- As part of enforcing project security, which would determine
11248: -- whether the user has the necessary privileges to update the project
11249: -- need to call the pa_security package
11250:
11251: pa_security.initialize (X_user_id => l_user_id,
11252: X_calling_module => l_module_name);
11253:

Line 11251: pa_security.initialize (X_user_id => l_user_id,

11247: -- As part of enforcing project security, which would determine
11248: -- whether the user has the necessary privileges to update the project
11249: -- need to call the pa_security package
11250:
11251: pa_security.initialize (X_user_id => l_user_id,
11252: X_calling_module => l_module_name);
11253:
11254: -- Actions performed using the APIs would be subject to
11255: -- function security. If the responsibility does not allow

Line 11327: IF pa_security.allow_query (x_project_id => l_project_id ) = 'N' THEN

11323:
11324: -- Now verify whether project security allows the user to update
11325: -- project
11326:
11327: IF pa_security.allow_query (x_project_id => l_project_id ) = 'N' THEN
11328:
11329: -- The user does not have query privileges on this project
11330: -- Hence, cannot update the project.Raise error
11331: pa_interface_utils_pub.map_new_amg_msg

Line 11346: IF pa_security.allow_update (x_project_id => l_project_id ) = 'N' THEN

11342: RAISE FND_API.G_EXC_ERROR;
11343: ELSE
11344: -- If the user has query privileges, then check whether
11345: -- update privileges are also available
11346: IF pa_security.allow_update (x_project_id => l_project_id ) = 'N' THEN
11347:
11348: -- The user does not have update privileges on this project
11349: -- Hence , raise error
11350: pa_interface_utils_pub.map_new_amg_msg

Line 36468: -- need to call the pa_security package

36464:
36465:
36466: -- As part of enforcing project security, which would determine
36467: -- whether the user has the necessary privileges to update the project
36468: -- need to call the pa_security package
36469:
36470: pa_security.initialize (X_user_id => l_user_id,
36471: X_calling_module => l_module_name);
36472:

Line 36470: pa_security.initialize (X_user_id => l_user_id,

36466: -- As part of enforcing project security, which would determine
36467: -- whether the user has the necessary privileges to update the project
36468: -- need to call the pa_security package
36469:
36470: pa_security.initialize (X_user_id => l_user_id,
36471: X_calling_module => l_module_name);
36472:
36473: -- Actions performed using the APIs would be subject to
36474: -- function security. If the responsibility does not allow