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

Case should become read only when milestone is violated
Hi,
We need to make the case record readonly when milestones are violated. We though of using Milestone status field in validaiton rule but that field is not availble as it a OOTB special field.
So how do we do this req ?
We need to make the case record readonly when milestones are violated. We though of using Milestone status field in validaiton rule but that field is not availble as it a OOTB special field.
So how do we do this req ?
AND(
$Profile.Name <> "System Administrator-2012" ,
OR(
ISPICKVAL( PRIORVALUE(StageName) , "Closed Cancelled") ,
ISPICKVAL( PRIORVALUE(StageName) , "Closed No Bid") ,
ISPICKVAL( PRIORVALUE(StageName) , "Closed Won") ,
ISPICKVAL( PRIORVALUE(StageName) , "Closed Lost")),true )