• Vikas Bhardwaj 5
  • NEWBIE
  • 0 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies
Hi Guys ,

I have created a validation rule on object -Case, Field-case Owner such that whenever User tries to change the owner from one queue to a particular Queue(for example Queue name is ABC)  then it should not allow the user to change. 
For one record selection it is working fine but for multiple records selection it is not working.
Here is how my code looks like:
IF(( 
Record_Type_Name__c=='Finance Billing' && 
ISCHANGED(OwnerId) && 
(Owner:Queue.DeveloperName ='ABC' || Owner:Queue.DeveloperName ='XYZ')
), true, false)

could you please suggest me how to achieve this?

Thanks in advance,
Vikas
Hi Guys ,

I have created a validation rule on object -Case, Field-case Owner such that whenever User tries to change the owner from one queue to a particular Queue(for example Queue name is ABC)  then it should not allow the user to change. 
For one record selection it is working fine but for multiple records selection it is not working.
Here is how my code looks like:
IF(( 
Record_Type_Name__c=='Finance Billing' && 
ISCHANGED(OwnerId) && 
(Owner:Queue.DeveloperName ='ABC' || Owner:Queue.DeveloperName ='XYZ')
), true, false)

could you please suggest me how to achieve this?

Thanks in advance,
Vikas
Can someone help me in integrating sendgrid into my own org? I need to send bulk email(for campaigns) to a specified list of recepients. 

I took some help from here. https://github.com/sendgrid/sendgrid-apex

But when I tried implementing it in my or, I always had a compiling error
Error Error: Compile Error: Illegal assignment from SendGrid.SendGridResponse to String

Please suggest. Thanks for your time.