• vsandle
  • NEWBIE
  • 0 Points
  • Member since 2006

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies
I'm struggling with implementing a validation rule based on a record type.  The issue is the status of Closed/Resolved is used across all record types and the validation should only be applied if it is a specific record type.
 
The validation is:
 
It is an error if the case record type is Development and the status is Closed/Resolved, require the Validated Date be required.
 
This is the validation rule I currently have which is being applied on irregardless of record type:
 
AND (
RecordTypeId ="01200000000014WAAQ",
AND(
OR(
ISPICKVAL ( Status , "Closed/Resolved")),
ISNULL ( QAValidatedDate__c )
))AND (
RecordTypeId ="01200000000014WAAQ",
AND(
OR(
ISPICKVAL ( Status , "Closed/Resolved")),
ISNULL ( QAValidatedDate__c )
))
 
Any help/guidance would be much appreciated
 
V-
 
 
  • September 06, 2008
  • Like
  • 0
Hi, The organization that I work used Email to case to track support issues. They would like new cases (=new emails) to stand out as unread, similar to the way that unread emails stand out in Gmail. Is there any way for me to build a field that can figure out if the case was read or not? Thanks! Sara
I am trying to get the Account Number field to auto-populate based on selecting the account from a look-up.  Any suggestions?
  • December 16, 2008
  • Like
  • 0