Skip to main content
Rochelle Montney 님이 #Data Management에 질문했습니다
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개
  1. 2015년 1월 23일 오후 7: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