function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Karthik keyanKarthik keyan 

I have created the trigger where there a update in the master record status field ,resultant update should be in child record.but am getting the error of update the child record.Please see the trigger code and please let me know your suggestion.

I have created the trigger where there a update in the master record status field ,resultant update should be in child record.but am getting the error  of update the child record.Please see the trigger code and please let me know your suggestion.

trigger CreateContoofPositionUpdate on Account  (after insert,after update){    
    List<Contact> Cont =new List<Contact>();
     
  Contact con = [select id, Warehouse_14__Rounds__c, Warehouse_14__Status__c,Warehouse_14__Types__c,Warehouse_14__Name__c from Contact limit 1];
    for (Account posi: trigger.new)
        if(posi.Warehouse_14__Type__c == 'High Level' || posi.Warehouse_14__Functional_Area__c =='Project Management' || posi.Warehouse_14__Functional_Area__c == 'Infrastructure Architect' 
           || posi.Warehouse_14__Functional_Area__c == 'Domain Expert'){
             con.Warehouse_14__Rounds__c ='Managerial';
             con.Warehouse_14__Status__c ='N/A';
             con.Warehouse_14__Types__c ='Skype';
             con.Warehouse_14__Name__c = posi.id;
           }    
       
             Cont.add(con);
    
    update Cont;
}

Error Message as :
Error:Apex trigger Warehouse_14.CreateContoofPositionUpdate caused an unexpected exception, contact your administrator: Warehouse_14.CreateContoofPositionUpdate : execution of AfterUpdate caused by: System.QueryException: List has more than 1 row for assignment to SObject:Trigger.Warehouse_14.CreateContoofPositionUpdate : line 6, column 1

Is there further  changes needed on the above trigger code.

Regards,
Karthik
Best Answer chosen by Karthik keyan
Sanpreet SainiSanpreet Saini
Hi Karthik,

Can you try the below code. 
 
trigger CreateContoofPositionUpdate on Account  (after insert,after update){    
    List<Contact> Cont =new List<Contact>();
 
  
    for (Account posi:[ select id,Warehouse_14__Type__c ,Warehouse_14__Functional_Area__c,  (select id, Warehouse_14__Rounds__c,Warehouse_14__Status__c, Warehouse_14__Types__c,Warehouse_14__Name__c from contacts ) from account where id in : trigger.new]){
for(contact cn : posi.contacts){
        if(posi.Warehouse_14__Type__c == 'High Level' || posi.Warehouse_14__Functional_Area__c =='Project Management' || posi.Warehouse_14__Functional_Area__c == 'Infrastructure Architect' 
           || posi.Warehouse_14__Functional_Area__c == 'Domain Expert'){

             cn.Warehouse_14__Rounds__c ='Managerial';
             cn.Warehouse_14__Status__c ='N/A';
             cn.Warehouse_14__Types__c ='Skype';
             cn.Warehouse_14__Name__c = posi.id;
			 cont.add(cn);
           }  }}  
       
	   update cont;
             
    
    
}

Mark this as best answer if this resolves your issue. 

Feel free to reach out if you are still facing the issue. 

Regards, 
Sanpreet

All Answers

Sanpreet SainiSanpreet Saini
Hi Karthik,

Can you try the below code. 
 
trigger CreateContoofPositionUpdate on Account  (after insert,after update){    
    List<Contact> Cont =new List<Contact>();
 
  
    for (Account posi:[ select id,Warehouse_14__Type__c ,Warehouse_14__Functional_Area__c,  (select id, Warehouse_14__Rounds__c,Warehouse_14__Status__c, Warehouse_14__Types__c,Warehouse_14__Name__c from contacts ) from account where id in : trigger.new]){
for(contact cn : posi.contacts){
        if(posi.Warehouse_14__Type__c == 'High Level' || posi.Warehouse_14__Functional_Area__c =='Project Management' || posi.Warehouse_14__Functional_Area__c == 'Infrastructure Architect' 
           || posi.Warehouse_14__Functional_Area__c == 'Domain Expert'){

             cn.Warehouse_14__Rounds__c ='Managerial';
             cn.Warehouse_14__Status__c ='N/A';
             cn.Warehouse_14__Types__c ='Skype';
             cn.Warehouse_14__Name__c = posi.id;
			 cont.add(cn);
           }  }}  
       
	   update cont;
             
    
    
}

Mark this as best answer if this resolves your issue. 

Feel free to reach out if you are still facing the issue. 

Regards, 
Sanpreet
This was selected as the best answer
Karthik keyanKarthik keyan
Hi Sanpreet,

  I have created another trigger on the same kind of coding on others 2 objects,the trigger coding seems to fine but seems not creating child records when insert or update event changes on parent record.Why manipulation was not happening i dont know .Please send your suggestion on this trigger too.

trigger CreateInterviewoofPositionUpdate on Warehouse_14__Position__c  (after insert,after update){
    
    List<Warehouse_14__Interviews__c> interview =new List<Warehouse_14__Interviews__c>();
    //Warehouse_14__Interviews__c inte = new Warehouse_14__Interviews__c();

    if(Trigger.isInsert)
    {
        for(Warehouse_14__Position__c posi:[ select id,Name,Warehouse_14__Type__c ,Warehouse_14__Functional_Area__c,  (select id, Warehouse_14__Rounds__c,Warehouse_14__Status__c,Warehouse_14__Types__c,Warehouse_14__Name__c 
                                          from Warehouse_14__Interviews__r ) from Warehouse_14__Position__c where id IN : trigger.new]){
        for(Warehouse_14__Interviews__c inte:posi.Warehouse_14__Interviews__r)  {      
            if(posi.Warehouse_14__Type__c == 'High Level' || posi.Warehouse_14__Functional_Area__c =='Project Management' || posi.Warehouse_14__Functional_Area__c == 'Infrastructure Architect' 
           || posi.Warehouse_14__Functional_Area__c == 'Domain Expert'){
             
             inte.Warehouse_14__Rounds__c ='Managerial';
             inte.Warehouse_14__Status__c ='N/A';
             inte.Warehouse_14__Types__c ='Telephonic';
             inte.Warehouse_14__Name__c = posi.Id;             
           } else if(posi.Warehouse_14__Type__c == 'Low Level' || posi.Warehouse_14__Functional_Area__c =='Developer' || posi.Warehouse_14__Functional_Area__c == 'DB Admin' 
           || posi.Warehouse_14__Functional_Area__c == 'Telecom Division'){
             
             inte.Warehouse_14__Rounds__c ='Technical';
             inte.Warehouse_14__Status__c ='N/A';
             inte.Warehouse_14__Types__c ='Skype';
             inte.Warehouse_14__Name__c = posi.Id;             
           }   else if(posi.Warehouse_14__Type__c == 'Middle Level' || posi.Warehouse_14__Functional_Area__c =='Banking' || posi.Warehouse_14__Functional_Area__c == 'Insurance' 
           || posi.Warehouse_14__Functional_Area__c == 'Product Inside Sales'){
             
             inte.Warehouse_14__Rounds__c ='Human Resources';
             inte.Warehouse_14__Status__c ='N/A';
             inte.Warehouse_14__Types__c ='Face To Face';
             inte.Warehouse_14__Name__c = posi.Id;             
           }   
             interview.add(inte);
        }
 }                                                                                                             
    insert interview;
    } else {
        for(Warehouse_14__Position__c posi:[ select id,Name,Warehouse_14__Type__c ,Warehouse_14__Functional_Area__c,  (select id, Warehouse_14__Rounds__c,Warehouse_14__Status__c,Warehouse_14__Types__c,Warehouse_14__Name__c 
                                            from Warehouse_14__Interviews__r ) from Warehouse_14__Position__c where id IN : trigger.new]){
        for(Warehouse_14__Interviews__c inte:posi.Warehouse_14__Interviews__r)  { 
        if(posi.Warehouse_14__Type__c == 'High Level' || posi.Warehouse_14__Functional_Area__c =='Project Management' || posi.Warehouse_14__Functional_Area__c == 'Infrastructure Architect' 
           || posi.Warehouse_14__Functional_Area__c == 'Domain Expert'){
             
             inte.Warehouse_14__Rounds__c ='Managerial';
             inte.Warehouse_14__Status__c ='N/A';
             inte.Warehouse_14__Types__c ='Telephonic';
             inte.Warehouse_14__Name__c = posi.Id;             
           } 
         else if(posi.Warehouse_14__Type__c == 'Low Level' || posi.Warehouse_14__Functional_Area__c =='Developer' || posi.Warehouse_14__Functional_Area__c == 'DB Admin' 
           || posi.Warehouse_14__Functional_Area__c == 'Telecom Division'){
             
             inte.Warehouse_14__Rounds__c ='Technical';
             inte.Warehouse_14__Status__c ='N/A';
             inte.Warehouse_14__Types__c ='Skype';
             inte.Warehouse_14__Name__c = posi.Id;             
           }   
          else if(posi.Warehouse_14__Type__c == 'Middle Level' || posi.Warehouse_14__Functional_Area__c =='Banking' || posi.Warehouse_14__Functional_Area__c == 'Insurance' 
           || posi.Warehouse_14__Functional_Area__c == 'Product Inside Sales'){
             
             inte.Warehouse_14__Rounds__c ='Human Resources';
             inte.Warehouse_14__Status__c ='N/A';
             inte.Warehouse_14__Types__c ='Face To Face';
             inte.Warehouse_14__Name__c = posi.Id;             
           }    
       
             interview.add(inte);
        }
      }                                          
    update interview;
    }
}


Thanks and Regards,
Karthikeyan