Which change should the developer make to ensure the integration is not affected with minimal impact to business logic?
A developer created a new trigger that inserts a Task when a new Lead is created. After deploying to production, an outside integration chat reads task records is periodically reporting errors. Which change should the developer make to ensure the integration is not affected with minimal impact to business logic?A...
What is the recommended approach to sync the orders in Salesforce with the order fulfillment system?
Universal Container uses Salesforce to create orders. When an order is created, it needs to sync with the-in-house order fulfillment system. The order fulfillment system can accept SOAP messages over the HTTPS. If the connection fails, messages should be retried for up to 24 hours. What is the recommended approach...
How does the Lightning Component framework help developers implement solutions faster?
How does the Lightning Component framework help developers implement solutions faster?A . By providing an Agile process with default stepsB . By providing code review standards and processesC . By providing device-awareness for mobile and desktopsD . By providing change history and version controlView AnswerAnswer: C
What can used to delete components from production?
What can used to delete components from production?A . A change set deployment with the delete option checkedB . An ant migration tool deployment with destructivechanges xml file and the components to delete in the package .xml fileC . A change set deployment with a destructivechanges XML fileD . An...
Which annotation exposes an Apex class as a RESTful web service?
Which annotation exposes an Apex class as a RESTful web service?A . ©AuraEnabledB . ©RestResourceC . ©Remote ActionD . ©HttplnvocableView AnswerAnswer: A
Which three web technologies can be integrated into a Visualforce page? (Choose three.)
Which three web technologies can be integrated into a Visualforce page? (Choose three.)A . JavaScriptB . CSSC . JavaD . PHPE . HTMLView AnswerAnswer: A,B,E
Which Lightning code segment should be written to declare dependencies on a Lightning component, c:accountList, that is used in a Visualforce page?
Which Lightning code segment should be written to declare dependencies on a Lightning component, c:accountList, that is used in a Visualforce page? A) B) C) D) A . Option AB . Option BC . Option CD . Option DView AnswerAnswer: A
Which SOQL query will get the record for the Viridian City gym and it's trainers?
A custom object Trainer_c has a lookup field to another custom object Gym___c. Which SOQL query will get the record for the Viridian City gym and it's trainers?A . SELECT Id, (SELECT Id FROM Trainers) FROM Gym_C WHERE Name . Viridian City Gym'B . SELECT Id, (SELECT Id FROM Trainer_c)...
How can the developer make sure that validation rule violations are displayed?
A developer has a VF page and custom controller to save Account records. The developer wants to display any validation rule violation to the user. How can the developer make sure that validation rule violations are displayed?A . Add custom controller attributes to display the message.B . Include <apex:messages> on...
An org has two custom objects:
An org has two custom objects: * Plan_c, that has a master-detail relationship to the Account object. * Plan_item_c, that has a master-detail relationship to the plan_C object. What should a developer use to create a Visualforce section in the Account page layout that displays all of the plan.. Account...