DBA Data[Home] [Help]

APPS.PA_PROJECT_PVT dependencies on PA_SECURITY

Line 5469: -- need to call the pa_security package

5465: l_module_name := 'PA_PM_UPDATE_TASK';
5466:
5467: -- As part of enforcing project security, which would determine
5468: -- whether the user has the necessary privileges to update the task
5469: -- need to call the pa_security package
5470:
5471: pa_security.initialize (X_user_id => l_user_id,
5472: X_calling_module => l_module_name);
5473:

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

5467: -- As part of enforcing project security, which would determine
5468: -- whether the user has the necessary privileges to update the task
5469: -- need to call the pa_security package
5470:
5471: pa_security.initialize (X_user_id => l_user_id,
5472: X_calling_module => l_module_name);
5473:
5474: -- Actions performed using the APIs would be subject to
5475: -- function security. If the responsibility does not allow

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

5591:
5592: -- Now verify whether project security allows the user to update
5593: -- the task
5594:
5595: IF pa_security.allow_query (x_project_id => l_project_id ) = 'N' THEN
5596:
5597:
5598: -- The user does not have query privileges on this project
5599: -- Hence, cannot update the task.Raise error

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

5612: RAISE FND_API.G_EXC_ERROR;
5613: ELSE
5614: -- If the user has query privileges, then check whether
5615: -- update privileges are also available
5616: IF pa_security.allow_update (x_project_id => l_project_id ) = 'N' THEN
5617:
5618: -- The user does not have update privileges on this project
5619: -- Hence , raise error
5620:

Line 10046: -- need to call the pa_security package

10042:
10043:
10044: -- As part of enforcing project security, which would determine
10045: -- whether the user has the necessary privileges to delete the project
10046: -- need to call the pa_security package
10047:
10048: pa_security.initialize (X_user_id => l_user_id,
10049: X_calling_module => l_module_name);
10050:

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

10044: -- As part of enforcing project security, which would determine
10045: -- whether the user has the necessary privileges to delete the project
10046: -- need to call the pa_security package
10047:
10048: pa_security.initialize (X_user_id => l_user_id,
10049: X_calling_module => l_module_name);
10050:
10051: -- Actions performed using the APIs would be subject to
10052: -- function security. If the responsibility does not allow

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

10107:
10108: -- Now verify whether project security allows the user to delete
10109: -- the project
10110:
10111: IF pa_security.allow_query (x_project_id => l_project_id ) = 'N' THEN
10112:
10113: -- The user does not have query privileges on this project
10114: -- Hence, cannot delete the project.Raise error
10115:

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

10127: RAISE FND_API.G_EXC_ERROR;
10128: ELSE
10129: -- If the user has query privileges, then check whether
10130: -- update privileges are also available
10131: IF pa_security.allow_update (x_project_id => l_project_id ) = 'N' THEN
10132:
10133: -- The user does not have update privileges on this project
10134: -- Hence , raise error
10135: