Skip to main content

I'm wondering if there's a way to make a field writable by one role, but only editable by another. 

 

We have a customer activation date field that we want our sales team to be able to make the initial entry into, but not edit. The only people who should be able to edit the field is the CS team.

 

It's not doable in field security, and I'm wondering if it's a validation rule. If it is, I haven't figured out how to build that validation rule yet but I'm gonna keep working at it. Is it maybe a workflow? Any guidance would be helpful.

9 件の回答
  1. Evaldas Zaranka (Wise) Forum Ambassador
    2022年1月5日 22:36

    AND(   

    $Profile.Name="Service Team",  NOT(ISBLANK(Activation_date__c))

     

    AND(   

    $Profile.Name="Service Team",  NOT(ISBLANK(Activation_date__c)))

     

    Try these few options. I'm not by the pc now, so I cannot validate from my end 

0/9000