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
bozotheclownbozotheclown 

Developing a Custom User Admin Page?

Hello.  I was curious if anyone knew if it was even possible to develop a VF page to replace the typical user administration page.

Specifically, we have developed an app based completely on VF pages.  We want to give our admin end-users the ability to do a few limited things that are available via the Setup --> Manage Users --> Users page in the standard force.com UI (just to see a list of users and activate/deactivate them).

Is this possible?  I could not find any examples online where this has been done.

Thanks in advance.
Sonam_SFDCSonam_SFDC
You can have a visualforce page create for users to update the User info - activate and deactivate using SOQL to get User list from the USER object (http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_user.htm)

However, you ill have to give permissions to these users(the “Manage Users” permission) to be able to update the user record.