Skip to content

Instantly share code, notes, and snippets.

@adamwitko
Created January 17, 2017 08:15
Show Gist options
  • Save adamwitko/ba8d4e2eb359b79bd97798140bf99b03 to your computer and use it in GitHub Desktop.
Save adamwitko/ba8d4e2eb359b79bd97798140bf99b03 to your computer and use it in GitHub Desktop.
Update Account Executive
User u = [ SELECT Id from User Where Name = 'Some Person'].get(0);
Opportunity opp = [ Select AccountExecutive__r.Name from Opportunity Where id = 'XXX123' ].get(0);
opp.AccountExecutive__c = u.Id;
update opp;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment