How to get the logged in User Profile Name using Apex Class
How to get the logged in User Profile Name using Apex Class? We can able to get the profile details using the Profile Standard Object SOQL Query: Select Id, Name from Profile Apex Class: Id profileId = UserInfo.getProfileId(); String profileName…
Read More