• Julien Camp
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 1
    Replies
Hello!

Does anyone know a way to only email a Contact only once when a Case is created with the following in mind?
  1. There's the checkbox at the bottom of the New Case pop-up to enable a notification email to go to the Case Owner notifying them of a new case - however;
  2. We have an additional Process that notifies the Case Owner via email that there are some fields without data that will need to be completed in the future. If the Case is indeed missing data in the subject fields, is there away to bypass the standard new Case Notification Email and only send our custom Email about the missing fields? Could the Case: SystemModStamp come into play somehow in the Process filter criteria somehow?
Thanks so much in advance for any guidance.

Best,

Julien
Hello,

We are receiving an error in relation to a recently deployed Apex Class. 

Here's the error:

"caused by: System.ListException: List index out of bounds: 0
Class.EditClientComplianceCheckList_Controller.<init>: line 25, column 1"

And here is line 25 (and a few subsequent lines):

system.debug('ClientComplianceDocuments_List=='+ClientComplianceDocuments_List[0].Id+' name =='+ClientComplianceDocuments_List[0].Name);
ClientComplianceDocId_ComplianceDoc_Map = new Map<Id,Compliance_Document__c>();
ComplianceDocuments_NewlyAdded_Map = new Map<Compliance_Document__c,Boolean>();


Anyone have any insight?

Thanks!
Julien
Hello,

We're assigning California zip code ranges to certain Internal User Contact records and wish to do ranges of zip codes. I know how to write  <= zip code value, but how does one do a range in a Process Builder formula? Example: 

Currently, assigning all zip codes less that 96199 to a certain Contact record:

IF(AND(90000 <= VALUE([Lead].PostalCode ), (VALUE([Lead].PostalCode) <= 96100)), 
"00550000003UwhH",

... but want to change this and assign this Contact record the following California Zip ranges instead:

90000 – 90899, 91000 – 92899, and 93000 – 93599

Anyone have an idea how to do this?

Thanks!
Julien
Hello,

We're assigning California zip code ranges to certain Internal User Contact records and wish to do ranges of zip codes. I know how to write  <= zip code value, but how does one do a range in a Process Builder formula? Example: 

Currently, assigning all zip codes less that 96199 to a certain Contact record:

IF(AND(90000 <= VALUE([Lead].PostalCode ), (VALUE([Lead].PostalCode) <= 96100)), 
"00550000003UwhH",

... but want to change this and assign this Contact record the following California Zip ranges instead:

90000 – 90899, 91000 – 92899, and 93000 – 93599

Anyone have an idea how to do this?

Thanks!
Julien