How to get the Role name and Profile Name from User Object using SOQL
We can able to get the Role Name and Profile Name details from User Standard Object
SOQL Query:
SELECT Profile.Name, UserRole.Name FROM User
below is the code to retrive the User Role Name and Profile Name based on the logged in user in Apex Class
Apex Class:
[JAVA]
Id userId = userinfo.getUserId();
User userDetails =[SELECT Id, Name, Email, Profile.Name, UserRole.Name FROM User where Id=:userId ];
system.debug(‘Profile Name:’ + userDetails.Profile.Name);
system.debug(‘Role Name:’ + userDetails.UserRole.Name););
[/JAVA]
Here:
User is a Standard Object
UserInfo Class – we can retried logged in user