3 respostas
hi mayur use below trigger, it should be on after insert not after update trigger DedupeReminder on Account (after Insert) {
for (Account acc: Trigger.New){
Case c = New Case();
c.subject ='Dedupe this Account';
c.OwnerId = '0057F000000tnLj';
c.AccountId = acc.Id;
insert c;
}
}
i hope it helps you.
Let me inform if it helps you and kindly mark it best answer if it helps you so it make proper solution for othersthanks sfdcmonkey.com