• megha love
  • NEWBIE
  • 0 Points
  • Member since 2020

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 2
    Replies
We are trying to create a validation rule. We have one profile, "Service with Live Agent" that should not be able to change the record type of a case to "Purged Info" (They shouldnt be able to create a record of that record type either). This is the validation rule we have right now but it is throwing email to case errors on existing cases. Any ideas? Thank you!!

(ISNEW() || ISCHANGED(RecordTypeId)) && RunningUser.Profile.Name = 'Service With Live Agent' && RecordType.DeveloperName = 'Purged_Info'
checkbox field on Team Member objectAdded new Custom field "Include in Payroll File" on Team Member object. Need help with Formula data type and Checkbox output type to identify employees who meet the following requirements: are in the US, are Full Time, are Active employees and have a start date after 1/1/2018.
 
No syntax errors, but the checkbox on Team Member record is blank: (fHCM2__Has_Left__c = 'FALSE') && (fHCM2__Country__c = 'USA') && (fHCM2__Current_Employment__r.fHCM2__FTE__c >= 1) && (fHCM2__Current_Employment__r.fHCM2__Start_Date__c >= DATE(1,2,2018))