DBA Data[Home] [Help]

APPS.PA_PROJECT_PUB dependencies on PA_SECURITY

Line 5941: -- need to call the pa_security package

5937: -- PA L Changes 3010538
5938:
5939: -- As part of enforcing project security, which would determine
5940: -- whether the user has the necessary privileges to update the project
5941: -- need to call the pa_security package
5942:
5943: pa_security.initialize (X_user_id => l_user_id,
5944: X_calling_module => l_module_name);
5945:

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

5939: -- As part of enforcing project security, which would determine
5940: -- whether the user has the necessary privileges to update the project
5941: -- need to call the pa_security package
5942:
5943: pa_security.initialize (X_user_id => l_user_id,
5944: X_calling_module => l_module_name);
5945:
5946: -- Actions performed using the APIs would be subject to
5947: -- function security. If the responsibility does not allow

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

6023:
6024: -- Now verify whether project security allows the user to update
6025: -- the project
6026:
6027: IF pa_security.allow_query (x_project_id => l_project_id ) = 'N' THEN
6028:
6029: -- The user does not have query privileges on this project
6030: -- Hence, cannot update the project.Raise error
6031: pa_interface_utils_pub.map_new_amg_msg

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

6042: RAISE FND_API.G_EXC_ERROR;
6043: ELSE
6044: -- If the user has query privileges, then check whether
6045: -- update privileges are also available
6046: IF pa_security.allow_update (x_project_id => l_project_id ) = 'N' THEN
6047:
6048: -- The user does not have update privileges on this project
6049: -- Hence , raise error
6050:

Line 10931: -- need to call the pa_security package

10927: END IF;
10928:
10929: -- As part of enforcing project security, which would determine
10930: -- whether the user has the necessary privileges to update the project
10931: -- need to call the pa_security package
10932:
10933: pa_security.initialize (X_user_id => l_user_id,
10934: X_calling_module => l_module_name);
10935:

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

10929: -- As part of enforcing project security, which would determine
10930: -- whether the user has the necessary privileges to update the project
10931: -- need to call the pa_security package
10932:
10933: pa_security.initialize (X_user_id => l_user_id,
10934: X_calling_module => l_module_name);
10935:
10936: -- Actions performed using the APIs would be subject to
10937: -- function security. If the responsibility does not allow

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

11005:
11006: -- Now verify whether project security allows the user to update
11007: -- project
11008:
11009: IF pa_security.allow_query (x_project_id => l_project_id ) = 'N' THEN
11010:
11011: -- The user does not have query privileges on this project
11012: -- Hence, cannot update the project.Raise error
11013: pa_interface_utils_pub.map_new_amg_msg

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

11024: RAISE FND_API.G_EXC_ERROR;
11025: ELSE
11026: -- If the user has query privileges, then check whether
11027: -- update privileges are also available
11028: IF pa_security.allow_update (x_project_id => l_project_id ) = 'N' THEN
11029:
11030: -- The user does not have update privileges on this project
11031: -- Hence , raise error
11032: pa_interface_utils_pub.map_new_amg_msg

Line 35816: -- need to call the pa_security package

35812:
35813:
35814: -- As part of enforcing project security, which would determine
35815: -- whether the user has the necessary privileges to update the project
35816: -- need to call the pa_security package
35817:
35818: pa_security.initialize (X_user_id => l_user_id,
35819: X_calling_module => l_module_name);
35820:

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

35814: -- As part of enforcing project security, which would determine
35815: -- whether the user has the necessary privileges to update the project
35816: -- need to call the pa_security package
35817:
35818: pa_security.initialize (X_user_id => l_user_id,
35819: X_calling_module => l_module_name);
35820:
35821: -- Actions performed using the APIs would be subject to
35822: -- function security. If the responsibility does not allow