You need to sign in to do that
Don't have an account?
Kpass
How to restrict editing Case fields when a Case is closed?
Is there a way to restrict editing the other case fields when a Case is in "closed" status; meaining you would have to reopen the Case to be able to edit the other Case fields??
Any help would be much appreciated.
Any help would be much appreciated.
Can you give me an example of the validaton rule I would use to activate each field to not be edited when the status is closed. Sorry, I am a newb....
Thanks!
To piggy back off of pcon's comment, validation rules key off of the error condition. In otherwords, if your validation rule formula evaluates to true, then the user will encounter a validation error.
The formula in a validation rule for detecting changes on the case Subject field when the Case is closed might look like the following:
let us know if you have any question .
please don't Forget to Mark this as your best answer if it works fine for you
Regards,
Grazitti Team
Web: www.grazitti.com
When the case reaches a terminal stage and can no longer be editied us a workflow rule to change the record type to be "Closed Case" (or whatever name you choose to create). You then have the benefit of being able to do 2 things. You can have a new page layout with the fields either read only or omitted (you can also adjust the layout to be more suitale for readers who may browse it in future. Morover you can use the record type to control view and edit permission.
If you needed to reopen the case, you could have a custom button to revert to the standard record type.
A bit more engineering here but it has the benefit of making it clear to the user that this is a closed case and not for editing.
HTH
Create an Approval Process with entry criteria status is closed.
Auto approve if status is closed (this way the case is always auto approved)
Call the approval process with a process builder with criteria status is closed and changed.
This way everytime a case is closed, it will be auto approved and locked. Only Admins and designated managers will be able to unlock the record.
IF(
AND(
NOT(ISNEW()),
OR(
ISPICKVAL( PRIORVALUE(Status) , 'Closed'),
ISPICKVAL( PRIORVALUE(Status) , 'you status close')
)
), true, false)
IF(ISNEW()), false, IF(ISPICKVAL( PRIORVALUE(Status) , 'Closed'), true, false))
Please try this. I have used this in the past.