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
HerosHeros 

Validation Rule on the User Record

I have created a Validation rule on the User record to make the Company field required.  I have noticed that with Managed Packages a User is created.  Will this validation rule stop my from downloading these Applications?
HerosHeros
I just modified my Validation rule to be:


Code:
IF( ProfileId = "00e30000000uncU", LEN( CompanyName ) <> 0, LEN( CompanyName ) = 0)

 
I hope this fixes my problem