Skip to main content
Klajdi Isufaj 님이 #Data Management에 질문했습니다

Hello to all,

I'm trying to enforce case status equal New when case is created form Partner community profile.

Unfortunately validation rule fires for all statuses.

 

tried the following exampls

First Example:

AND( 

 

  ISNEW(),

 

  TEXT(Status)  <> "New",

 

  $Profile.Name = "Partner - CommunityProfile"

 

)

 

Second Example:

AND(

 

ISNEW(),

 

NOT(ISPICKVAL( Status ,"New")),

 

$Profile.Name = "Partner - CommunityProfile"

 

)

Thanks

답변 4개
  1. 2021년 2월 10일 오전 9:48
    Hi Klajdi,

     

    Your validation rules, both of them, are absolutely correct. If they're firing errors, then the problem could be to do with automation that tries to change the status as soon as the case is created, or that you're using a custom status field rather than the default one.
0/9000