DBA Data[Home] [Help]

APPS.IGW_PROP_USERS_PVT dependencies on IGW_PROP_USER_ROLES_PVT

Line 102: IGW_PROP_USER_ROLES_PVT.VALIDATE_LOGGED_USER_RIGHTS

98:
99: -------------------------------------------- validations -----------------------------------------------------
100: -- validate that the user who has logged on has the rights to modify user
101:
102: IGW_PROP_USER_ROLES_PVT.VALIDATE_LOGGED_USER_RIGHTS
103: (p_proposal_id => l_proposal_id
104: ,p_logged_user_id => p_logged_user_id
105: ,x_return_status => x_return_status);
106: check_errors;

Line 242: IGW_PROP_USER_ROLES_PVT.VALIDATE_LOGGED_USER_RIGHTS

238: check_errors;
239:
240: -- first validate that the user who has logged on has the rights to modify user roles
241:
242: IGW_PROP_USER_ROLES_PVT.VALIDATE_LOGGED_USER_RIGHTS
243: (p_proposal_id => l_proposal_id
244: ,p_logged_user_id => p_logged_user_id
245: ,x_return_status => x_return_status);
246:

Line 449: IGW_PROP_USER_ROLES_PVT.VALIDATE_LOGGED_USER_RIGHTS

445: ,x_return_status => x_return_status);
446:
447: -- validate that the user who has logged on has the rights to modify user roles
448:
449: IGW_PROP_USER_ROLES_PVT.VALIDATE_LOGGED_USER_RIGHTS
450: (p_proposal_id => l_proposal_id
451: ,p_logged_user_id => p_logged_user_id
452: ,x_return_status => x_return_status);
453:

Line 546: fnd_msg_pub.add_exc_msg(p_pkg_name => 'IGW_PROP_USER_ROLES_PVT',

542:
543: EXCEPTION
544: WHEN OTHERS THEN
545: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
546: fnd_msg_pub.add_exc_msg(p_pkg_name => 'IGW_PROP_USER_ROLES_PVT',
547: p_procedure_name => 'CHECK_IF_SEEDED_ROLE',
548: p_error_text => SUBSTRB(SQLERRM,1,240));
549: raise fnd_api.g_exc_unexpected_error;
550: END CHECK_IF_USER_HAS_SEEDED_ROLE;