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
Ramesh SomalagariRamesh Somalagari 

Duplicate Account Name not allowed

Hi All,

There is an Standered Object is Account.I need to not allowed a duplicate Account Name.I know the Custom Object to handled(unique) but I need to Standered Object

Best Regards,
Ramesh
AmulAmul
Hi Ramesh,
Install this Appexchange app(DupeCatcher, Real Time Deduplication) on your org. This will solve your problem.

link to install:

https://appexchange.salesforce.com/listingDetail?listingId=a0N30000003IYLlEAO

Here you need to setup de-Dupe validation rule. And you can alert/restrict user to do not create Account based on mataching Criteria. Its very easy to configure.





Abhi_TripathiAbhi_Tripathi
Hey 

Go for this post this will help you, its having the same functionality as you want

http://abhithetechknight.blogspot.in/2013/11/salesforce-account-record-merging-with.html

R
egards
Abhi Tripathi
Salesforce Developer
Subhani_SFDCSubhani_SFDC
Hi Ramesh,

You can create a unique field which helps you not to create duplicate accounts in Salesforce. Please check the below link for more information on it.

http://www.forcetree.com/2010/07/unique-field-combination-in-salesforce.html

Thanks,
Subhani,
Salesforce Certified Developer,
www.mydbsync.com
KodiKodi
Hi,
You have to use trigger in account object (before insert), so than only prevent duplicate account name.
Ramesh SomalagariRamesh Somalagari
Hey Kodi,

I have used work flow rule now it is working fine.

Thanks you for all