Skip to main content
I'm creating a new email alert and I need to add the "User's" Default Opportunity Team Member 'Credit Analyst' as the recipient.  I cannot figure out how to "dig down" that deep.

 

Thanks!
13 respostas
  1. 23 de jan. de 2015, 19:28
    Found a work around - had to create a WFR for each Region (since each region has their owne Credit Analysts).  Just incase anyone needs the code it looks like this:

     

    For North America:

     

    AND( 

     

    ISPICKVAL(Status__c,"Open"), 

     

    ISBLANK(Credit_Approval_Date__c), 

     

    OR( 

     

    ISPICKVAL(Account__r.socpl__Billing_Country__c,"USA"), 

     

    ISPICKVAL(Account__r.socpl__Billing_Country__c,"Mexico") 

     

     

    )

     

     
0/9000