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

Record locking question
I'd like to lock opportunities based on whether a custom field is set to true or false. There has got to be a way - without having to create a new page layout... we want this to be active for all page layouts. Any ideas? I'm sure someone has done this. Thanks!!
I think this is actually deceptively simple. You basically add 2 validation rules. One that doesn't allow changing the checkbox once it's checked which something like
ischanged(checkbox__c)
And another that doesn't allow any changes when the box is checked, which is simply
checkbox__c
All Answers
I think this is actually deceptively simple. You basically add 2 validation rules. One that doesn't allow changing the checkbox once it's checked which something like
ischanged(checkbox__c)
And another that doesn't allow any changes when the box is checked, which is simply
checkbox__c
Check out this AppExchange solution that works with all version of salesforce.com. (Overrides - Validation Rules for Buttons)