function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Max Gilbert @ ftrMax Gilbert @ ftr 

Users in All Internal Users Group

Does anyone know how to generate a list of users in the All Internal Users Publc Group.  I haven't been able to find the object that has users groups.

Arunkumar.RArunkumar.R

Hi,

 

Public Groups it's similar to queue.

 

To create group just follow this steps,

 

1.For personal groups, go to your personal settings and click My Personal Information or Personal—whichever one appears. Then click My Groups. 


2. For public groups, from Setup, click Manage Users | Public Groups.

 

For more info about groups,

http://na15.salesforce.com/help/doc/en/user_groups.htm

 

http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_group.htm

 

To retrieve list of groups and group members just use this soql query,

SELECT
Id, Name,
DeveloperName,
(SELECT Id, UserOrGroupId FROM GroupMembers)
FROM Group

 

If this post was helpful to you please mark this as a solution and give kudos....

 

Thanks and Regards,

Arunkumar.R | Salesforce Certified Force.com Developer.

Max Gilbert @ ftrMax Gilbert @ ftr

I am not trying to create a group. 

 

My original question was how to get a list of the members in the All Internal Users group?

 

All Internal Users is obviously a group suppled by salesforce since that group does not appear in a list of all public groups.