Activity › Forums › Salesforce® Discussions › How to prevent a user from creating a new account in Salesforce?
Tagged: Account Object, Account Permissions, Accounts in Salesforce, Custom Object Permissions, Permissions Set, Salesforce Accounts, User Permissions
-
How to prevent a user from creating a new account in Salesforce?
Posted by Rahul on April 16, 2018 at 9:48 AMHI,
can we prevent a user to create a new account; but he can update the account in sfdc?
if yes then plz share me any example.
Thanks,
rahul
Parul replied 7 years, 7 months ago 5 Members · 7 Replies -
7 Replies
-
Hi rahul,
You can simply remove Create permission from Account Object on the profile of that user.
Thanks.
- [adinserter block='9']
-
Hi,
thanks for reply.
But i want that only one person can create accounts, other can do update but not create new. so removing create permission from profile is time taking process. can i handle it through trigger or validation?
Waiting for reply.
-
-
Hi,
There are various methods to do it, but best is to do it without any coding.
Just remove the permission of create from Account sobject on the profile of that user.
Hope this helps.
-
Adding some steps:
use this steps may be help you:
Step 1:- Remove the Create permission on the Lead object
Step 2:- Create the Checkbox field on the Lead object (Default=Checked) & Create the checkbox field on the Account object (Default=Unchecked)
Step 3:- Set up the Field mapping between Lead & Account field
Step 4:- Make the Field read only or hide it from the pagelayout
Step 5:- Create the validation rule on Account to block the User to create the Account from scratch or any other source, only exception is for Accounts that getting created from Lead conversion something like this:-
AND(
$Profile.name<>”System Administrator”,
Checkbox=False,
ISNEW())Let me know if you need any help.
Thanks
Log In to reply.

