trigger AssignOwnerByRegion on Account ( before insert, before update )
{
List<Account> accountList = new List<Account>();
for( Account anAccount : trigger.new )
{
Region__c theRegion = [
SELECT Id, Name, Region_Manager__c
FROM Region__c -
WHERE Name = :anAccount.Region_Name__c
];
anAccount.OwnerId = theRegion.Region_Manager__c;
accountList.add( anAccount );
}
update accountList;
}
Consider the above trigger intended to assign the Account to the manager of the Account's region.
Which two changes should a developer make in this trigger to adhere to best practices? (Choose two.)
sajjankrgupta
Highly Voted 4 years agoAB1993
Highly Voted 3 years, 4 months agoJeet89123
Most Recent 7 months agoMetaLojiqTee
1 year, 5 months agoram12313
1 year, 9 months agoGenki_Sugisaki
1 year, 10 months agoamilaveer
2 years agosf2022
2 years agoDean5555
2 years, 2 months agolevian
2 years, 3 months agoPratibhadx
3 years, 2 months agoamerbearat
3 years, 4 months ago