You need to sign in to do that
Don't have an account?

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.
You need to sign in to do that
Don't have an account?
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.
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.
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.