Skip to main content
Shweta Bhambhu 님이 #Sales And Marketing에 질문했습니다
In my org, I have this complicated Validation rule requirement. I have this validation that if status is new nobody should be able to edit except Billing and System admin profile but we have some approval process fire at the same time and that is blocking user so I need changes in below Validation rule. 

 

AND(

 

$Profile.Name <> 'Billing',

 

$Profile.Name <> 'System Administrator',

 

OR(

 

RecordType.Name = 'PO Request',

 

RecordType.Name = 'Invoice'

 

),

 

TEXT(Status__c) <> 'New'

 

)

 

Requirement -

 

USer should be able to edit if 

 

Status = New

 

OR 

 

Status = Pending Approval AND Prior Status = New 

 

OR 

 

Status = Approved/ Rejected AND PRIOR Status = Pending Approval. 
답변 12개
  1. 2018년 11월 4일 오전 8:40
    Were you able to figure it out?
0/9000