Find your content:

Search form

You are here

Is there a way to access all user info?

 
Share

Is there a way to get a drill down through DB/reports all the info related to an user like

  1. permission set
  2. sharing settings
  3. active/inactive( I can get this by Isactive filter)
  4. what public groups he/she is associated with ?
  5. what is the role of the user etc..

Please advice.

UPDATE June 21 ,2013: This question has surfaced are there any third party apps that would let me see a overall view of what the user is associated with?


Attribution to: Rao

Possible Suggestion/Solution #1

I don't think it's feasible without using some API/Apex. Especially not available in reports or list views.


Attribution to: Salesforce Wizard

Possible Suggestion/Solution #2

  1. Permission sets are readable (and writable) from within apex via the PermissionSet and PermissionSetAssignment sObjects.

  2. sharing settings are not currently readable via apex officially. You can do some basic detection by checking if the related Share sObject exists, if so the object is not set to public read/write, but getting more detail than that requires the metadata api (not accessible in apex).

  3. Available from the user sObject via the isActive field as you mentioned.

  4. This is available by querying the Group and GroupMember sObjects. Group itself has a number of types, so you'll want to filter this most likely. See: the docs and look at the values for the Type field.

  5. This is available from the role field on the user sObject, which relates to a Group sObject with a Type of "Role".


Attribution to: ca_peterson
This content is remixed from stackoverflow or stackexchange. Please visit https://salesforce.stackexchange.com/questions/1508

My Block Status

My Block Content