-
Adding account team member on account object in Salesforce
trigger TeamMember on Account (after insert) {
if(trigger.isinsert){
for(account acct:trigger.new){
if(acct.ParentId!=null && acct.VPA__c==false){
Account Parentacct=[select id,ownerid from Account where id=:acct.ParentId limit 1];
system.debug(Parentacct +'parentaccount');
Accountteammember acctmem=new Accountteammember();
acctmem.AccountId=acct.id;
system.debug(acct.id +'id');
acctmem.UserId=Parentacct.OwnerId;
acctmem.TeamMemberRole='Account Manager';
system.debug(acctmem +'accounteam');
insert acctmem;
}
}
}
}DML requires SObject or SObject list type: AccountTeamMember on line 13
Log In to reply.
Popular Salesforce Blogs
FEXLE at Dreamforce 2023: Mastering the Power of Salesforce Integration for Business Growth
The universe of Salesforce has shaken with the arrival of the largest conglomeration that is about to happen very soon. Dreamforce 2023 is finally here.…
Salesforce Flows | How to Loop on Multi Select Picklist Values in a Flow?
Want to Parse and Loop on the Multi-Select Picklist Values in a Flow? Parsing the Multi-Select Picklist Selected values in a Flow is required where…
Unpacking Salesforce Experience Cloud: A Comprehensive Analysis
Introduction to Salesforce Experience Cloud Salesforce Experience Cloud, formerly branded as Salesforce Community Cloud, is a powerful tool created by Salesforce that provides businesses the…
Popular Salesforce Videos
Salesforce Platform Quick Tip: How to Make Key Information Easier to Find
Want to flag things on a Salesforce record, so that your users notice? Like flagging a super important customer record, or alerting them that a…
Salesforce for Non Technicals | Salesforce for Non IT | Salesforce For Non Programmers
Wondering if Non-IT persons can learn Salesforce? Yes, watch this video and learn all you need to know. Do let us know in the comment…
What Is The Approximate Salary A Fresher Can Expect In The Indian Market Of Salesforce?
Wondering what is the approximate salary a fresher can expect in the Indian market of Salesforce? Join this useful group for Salesforce job & career…