-
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
Salesforce Lightning Vs Salesforce Classic
Talk of the Salesforce World right now is Lightning. What is Lightning actually and why all the people are going crazy behind this. Well till…
Top 7 Salesforce Extensions: Blessing In Disguise For Small Businesses
Salesforce, a popular customer relationship management platform, has progressed into being one of the most personalized sales management platforms in the CRM market. Countless Salesforce…
How to Integrate Salesforce and NetSuite Effectively?
Salesforce is the worldwide leader in making revolutionary business applications, served from the cloud and are designed to help generate leads for an organization. Also, it…
Popular Salesforce Videos
Create a Multi-page App Using LWC OSS | Salesforce Lightning
The default LWC OSS project created using the create-lwc-app tool lets you create a single-page application. But did you know that by slightly modifying the…
Salesforce Consent Management
Consent Management: Track Customer Consent and Honor Opt-Out Requests. Track your customers' approval for how your company interacts with them. To help you assess your…
Secrets and Tips on Marketing Automation in Marketing Cloud | Marketing Cloud Webinar by Vimera
Hi there! Welcome to the recording of our Marketing Cloud Webinar from September 30, 2024! At Vimera (vimera.io), we’re proud to be a trusted Certified…