Skip to main content
Hello, I built a process in process builder last week and got nothing but thousands of FlowApplication Error messages.  So I need some help preventing all of these error emails.  

 

My process starts with the Clearbit object, this is a custom object from an installed package.  

 

Conditions are (all of the conditions are met): 

 

[cbit__Clearbit__c].cbit__Lead__r.cbit__Clearbit__c  is null False

 

[cbit__Clearbit__c].cbit__CompanyGeoCountry__c is null False

 

Immediate actions:

 

- Update a record related to Clearbit: [cbit__Clearbit__c].Lead

 

Set new fields:

 

Country Reference [cbit__Clearbit__c].cbit__CompanyGeoCountry__c 

 

State/Province Reference [cbit__Clearbit__c].cbit__CompanyGeoState__c

 

Not sure what's up.  But the community rocks and I know we will figure it out together!  

 

Thank you!! 

 

 
11 件の回答
  1. 2017年6月7日 6:08
    How about we use a Formula instead of conditions

     

    AND(

    NOT(ISBLANK([cbit__Clearbit__c].cbit__Lead__c)),

    NOT(ISBLANK([cbit__Clearbit__c].cbit__Lead__r.cbit__Clearbit__c)),

    NOT(ISBLANK([cbit__Clearbit__c].cbit__CompanyGeoCountry__c))

    )

0/9000