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
sfdclearnsfdclearn 

Multiple Product names to single account

Hi,

 

 

   I am using the following code to pull all the opportunity product names associated to a single account in a custom text field in account ProductNameCopy__c.

Now i am trying to change the logic something like if there is more than one product associated to the Account .

   If more than one product in associated to account then 

     just assign ProductNameCopy__c='Academic'.  (ranking down all the product names to single package name).

 

  

trigger MyAccountTrigger1 on Account(before update, before insert) {

Map<ID,Set<String>> aIdToUniqueProductSetMap = new Map<ID,Set<String>> ();
Set<String> uniqueProdSet= new Set<String>();

// Go through each Oppo and collect a unique set of Product names from all OLI
for (Opportunity o : [select id, accountId, 
                        (select id, PricebookEntry.Product2.Name from OpportunityLineItems) 
                      from Opportunity where accountId IN :Trigger.new] ) {
  Set<String> productsInOppoSet = new Set<String> (); 
  //reset our set for this Oppo
  for (OpportunityLineItem oli : o.opportunityLineItems) 
     productsInOppoSet.add(oli.PricebookEntry.Product2.Name);
  // With the unique set, add it into our Map associating each account to its unique product set
  if (aIdToUniqueProductSetMap.containsKey(o.accountId)) {
       uniqueProdSet = aIdToUniqueProductSetMap.get(o.accountId); // add this Oppo's unique set to whatever we have so far
      uniqueProdSet.addAll(productsInOppoSet);
      aIdToUniqueProductSetMap.put(o.accountId,uniqueProdSet); // put it back in the Map
  }    
  else
      aIdToUniqueProductSetMap.put(o.accountId,productsInOppoSet); // first Oppo for this Account; simply do a put

}

// All done with Oppos, now put back into each triggered Account

for (Account a: Trigger.new) 
{
  
  
    
  if (aIdToUniqueProductSetMap.containsKey(a.id))
   {  // only for those Accounts that had Oppos with products
     a.testfield__c=uniqueProdSet.size();
     String concatenatedProducts = ''; 
     for (String p : aIdToUniqueProductSetMap.get(a.id))   
         concatenatedProducts = concatenatedProducts + (concatenatedProducts.length() == 0 ? '' : '\n ') + p;// separate with spaces; other delims possible
           a.ProductNameCopy__c = concatenatedProducts ; // when the trigger completes, the triggered Accounts get updated
  }


}
}

 

Any advice on this!!!

 

Thanks!!!