• J!GS
  • NEWBIE
  • 9 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
trigger CreateTaskWhenNewLeadGenerate on Lead (after insert) {
  Set<Id> LdIdSet = new Set<Id>();
 if(Trigger.isAfter && Trigger.isInsert) {            
        
   List<Lead> LdList = [ SELECT Id,Name,OwnerId,Company,Email, Phone,pi__comments__c,Leasing_agent__c,Create_Leasing_Call_Task__c,Lead_Property_Of_Interest__c FROM Lead WHERE Id IN : LdIdSet];  
   Map<Id,List<Lead>> LIdLdListMap = new Map<Id,List<Lead>>();
   List<Task> insTskList;
      
   Task newTsk ;
    
   
                   
        for ( BP_Property__c Prop:[Select Id,Name,IS_ACTIVE__c,Leasing_agent__c from BP_Property__c])
        {                                         
            
              //      LdList = LIdLdListMap.get(Prop) ;
                                                
      
              for ( Lead Ld : Trigger.New ){
                   LdIdSet.add ( Ld.Id );
                        
                if ( Trigger.NewMap.get ( Ld.Id ).Create_Leasing_Call_Task__c &&  ! Ld.Create_Leasing_Call_Task__c ){            
                //Ld.Create_Leasing_Call_Task__c  = true;
               LdList = LIdLdListMap.get( Ld.Id ) ;    
               
                if ( LdList == null || LdList.size() == 0 )
                    continue;                              
                  
                          if(Ld.Lead_Property_Of_Interest__c == null){
                              if(Ld.Leasing_Agent__c == null){
                                  
                              }
                                  
                              else{ 
                                       newTsk = new Task();
                                     newTsk.Subject = 'PC-Leasing Call';                                                               
                                     newTsk.OwnerId = Ld.Id;                                   
                                       newTsk.Leasing_Agent_ID__c = 'a0MG000000XkQFc';
                                     insTskList.add ( newTsk );
                                                                                                              
                              }
                }  
                              }else if(Ld.Lead_Property_Of_Interest__c != null && Ld.Leasing_Agent__c != null )
                              {        prop.IS_ACTIVE__c = true;
                                       prop.Leasing_Agent__r.IS_ACTIVE__c = true;
                              }
                                                                                             
                                  else{  
                                     newTsk = new Task();
                                        newTsk.Subject = 'LAInitial-Leasing call';                                                               
                                     newTsk.OwnerId = Ld.Owner_ID__c; 
                                     newTsk.WhoId =Ld.Id ; 
                                     NewTsk.Leasing_Agent__c = Ld.Leasing_Agent__c ;
                                        insTskList.add ( newTsk );
                              }
                              } 
                              
                         }
                                     
                                     insert newTsk;
     
              }            
        }
 
  • February 08, 2016
  • Like
  • 0
Hi Everyone,

I want to use Salesforce office connector for windows 8 (64 bit) and Excel 2013.  Is there any one who can help me like how to make use it excel connector for windows 8 (64 bit) and Excel 2013. It's a little bit urgent. Any answer will be really helpful. 

Regards,
Rajiv
  • July 21, 2014
  • Like
  • 0