Skip to main content
LaKisha Adams ha fatto una domanda in #Customer Service
I need to create a valdation rule that will only allow the Performace Manager profile to update the order status field to Complete. I used the validation rule below but this did not work because the order status field is linked to customer status on the account.

 

AND(

 

ISCHANGED(CUSTOMER_STATUS__c),

 

$Profile.Name <> "Performance Consultant",

 

$Profile.Name <> "System Administrator"

 

)
7 risposte
  1. 25 ago 2015, 14:29

    Try the following:

    AND(

    ISCHANGED(Status),

      TEXT(Status) = "Complete"

    $Profile.Name <> "Performance Consultant",

    $Profile.Name <> "System Administrator"

    )

    Your validation rule should be on the Order object.

0/9000