-
Test class of below Trigger in Salesforce?
Trigger AutoActivityCreation on Account(after update) { List<Task> task = new List<Task>(); for (Integer i = 0; i < Trigger.new.size(); i++) { List<String> techs = Trigger.new[i].Toolsberry_new_tech_installs__c.split(‘;’); Integer added_tech = techs.size(); if(Trigger.new[i].Toolsberry_new_tech_installs__c==’null’){ added_tech=0; } List<String> re_techs = Trigger.new[i].Toolsberry_removed_tech_installs__c.split(‘;’); Integer removed_tech = re_techs.size(); if(Trigger.new[i].Toolsberry_removed_tech_installs__c==’null’){ removed_tech=0; } task.add(new Task( whatid=Trigger.new[i].Id, OwnerId=Trigger.new[i].OwnerId, Subject=’Technologies Added ‘+added_tech+’ , Removed ‘+removed_tech, Status = ‘Completed’, ActivityDate = system.today() ) ) ; } insert task; }
- This discussion was modified 5 years, 3 months ago by Forcetalks.
- This discussion was modified 5 years, 3 months ago by Forcetalks.
- This discussion was modified 5 years, 3 months ago by Achintya.
Log In to reply.
Popular Salesforce Blogs
Check-List For A Move-In Ready Salesforce Deployment
Imagine you are apartment hunting and you enter a house. It is beautifully set-up. All the beds have new linens. Pillows properly dusted and covered.…
What is the Arrow Function in JavaScript? | Salesforce Developer Guide
Arrow function is the way to write a function in a shorter manner/syntax. It is simple and easy to use and understand. Here are some…
6 Ways to Turn Salesforce Marketing Cloud Into Success
Salesforce Marketing Cloud is known to increase the efficiency of your business. As per IDC, Salesforce Marketing Cloud scored 14.1 % more than its rival…
Popular Salesforce Videos
TOP 20 Salesforce Integration Interview Questions and Answers 2019 | Salesforce Integration
In this video, Wisdom Jobs and Tutorials explains the 20 most popular questions asked during Salesforce Integration interviews. These questions cover topics like what web…
Soar: A Salesforce Philanthropy Film
When one of us is lifted up, all of us are lifted up. 🐥 That's why we're supporting #GoGiveOne, a campaign to advance global vaccine…
How Will Salesforce Career Look Like 3 Years From Now?
In this video, Shrey shares his opinions about How will Salesforce career look like 3 years from now. Watch and learn. If you have any…