Guest User

Untitled

a guest
Sep 18th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. AND(
  2. (($Setup.Hierarchy_Settings__c.Skip_Process_Builder__c == False),
  3. ([Contact].RecordType.DeveloperName == $Label.Contact_Record_Type))
  4. OR(
  5. AND(
  6. ISNEW(),
  7. NOT(
  8. ISBLANK(
  9. TEXT([Contact].Request_Portal_User_Account__c == True)
  10. )
  11. )
  12. ),
  13.  
  14. AND(
  15. ISCHANGED([Contact].Request_Portal_User_Account__c == True),
  16. NOT(
  17. ISBLANK(
  18. TEXT([Contact].Request_Portal_User_Account__c == True))
  19. )
  20. )
  21. )
  22. )
  23.  
  24. ISBLANK(
  25. TEXT([Contact].Request_Portal_User_Account__c == True)
  26. )
  27.  
  28. AND(
  29. NOT($Setup.Hierarchy_Settings__c.Skip_Process_Builder__c),
  30. [Contact].RecordType.DeveloperName == $Label.Contact_Record_Type,
  31. OR(
  32. AND(
  33. ISNEW(),
  34. NOT([Contact].Request_Portal_User_Account__c)
  35. ),
  36. AND(
  37. ISCHANGED([Contact].Request_Portal_User_Account__c),
  38. NOT([Contact].Request_Portal_User_Account__c)
  39. )
  40. )
  41. )
Add Comment
Please, Sign In to add comment