November 2018 archive

Salesforce Platform Salesforce: Trigger Best Practices

 If you are new to salesforce and wondering how to write good code for Apex Triggers, this post is going to explain it. See an instance of Trigger in Account Object trigger AccountHandler on Account (before insert) { for (Account a : Trigger.New) { a.Description = ‘Hello World’; } } The best practice is to …

Continue reading

Permanent link to this article: https://salesforcebuddy.com/2018/11/salesforce-platform-developer-i-certification-summer-18/