Feb 12, 2019 | Salesforce Trailhead
Create and deploy a custom big object Let’s create a custom big object that stores data from a car sharing service. Use the data provided to create and deploy a custom big object and its index so that you can use it in your org. Define the custom big...
Feb 12, 2019 | Salesforce Trailhead
Create an Apex class that uses the @future annotation to update Account records Create an Apex class with a method using the @future annotation that accepts a List of Account IDs and updates a custom field on the Account object with the number of contacts associated...
Feb 12, 2019 | Salesforce Trailhead
Create an Apex trigger for Account that matches Shipping Address Postal Code with Billing Address Postal Code based on a custom field For this challenge, you need to create a trigger that, before insert or update, checks for a checkbox, and if the checkbox field is...
Feb 12, 2019 | Salesforce Trailhead
Create a unit test for a simple Apex class Install a simple Apex class, write unit tests that achieve 100% code coverage for the class, and run your Apex tests. The Apex class to test is called ‘VerifyDate’, and the code is available here. Copy and paste...
Feb 12, 2019 | Salesforce Trailhead
Create an Apex class that calls a REST endpoint and write a test class To pass this challenge, create an Apex class that calls a REST endpoint to return the name of an animal, write unit tests that achieve 100% code coverage for the class using a mock response, and...
Feb 12, 2019 | Salesforce Trailhead
Create a Service and Implement a Caller Create an Apex class that is a service that exposes a bulkified service method. The service closes and sets the reason for one or more given case records. Implement an Apex REST class that calls this service. Create an Apex...