Share Accounts with Standard Users.
This trigger automatically shares newly created Account records with a user holding the “Standard User” profile, granting them edit permissions. It works seamlessly with private OWD settings. Learn more with this YouTube playlist. Solution: trigger AccountTrigger on Account (after insert) {if(Trigger.isInsert){ if(Trigger.isAfter){ AccountTriggerHandler.shareAccWithStdUser(Trigger.new); } […]
Share Accounts with Standard Users. Read More »