Which solution solves these requirements?
Universal Containers wants to use a Customer Community with Customer Community Plus licenses so their customers can track how many of containers they are renting and when they are due back. Many of their customers are global companies with complex Account hierarchies, representing various departments within the same organization. One...
Which two statements are true regarding these issues and resolution?
A large company uses Salesforce across several departments. Each department has its own Salesforce Administrator. It was agreed that each Administrator would have their own sandbox in which to test changes. Recently, users notice that fields that were recently added for one department suddenly disappear without warning. Also, Workflows that...
Which statement is true regarding the use of user input as part of a dynamic SOQL query?
Which statement is true regarding the use of user input as part of a dynamic SOQL query?A . Free text input should not be allowed, to avoid SOQL injectionB . The String.format() method should be used to prevent injectionC . Quotes should be escaped to protect against SOQL injectionD ....
What is the optimal way to fix this?
@isTest static void testAccountUpdate() { Account acct = new Account({Name = 'Test'); acct.Integration Updated_c = false; insert acct; CalloutUtil.sendAccountUpdate (acct.Id); Account acctAfter = [SELECT Id, Integration Updated_c FROM Account WHERE Id = :acct.Id] [0]; System.assert(true, acctAfter.Integration_Updated_c); } The test method above calls a web service that updates an external system...
How would you test a web service?
How would you test a web service?A . Use the @future annotation on the methodB . Call the WebService interfaceC . Web Services do not need to be testedD . Create a class that implements the WebServiceMock interfaceView AnswerAnswer: D
What is the optimal way to automate this?
A company has a custom object, Sales Demo Request, that has a lookup to an Opportunity. It is required that a Sales Demo Request record be created when an Opportunity's Probability is greater than 50%. What is the optimal way to automate this?A . Build a Flow on Opportunity.B ....
Within the System.Limit class, what would you call to get the number of calls made in your transaction?
Within the System.Limit class, what would you call to get the number of calls made in your transaction?A . get [typeOfLimit] ―> (Ex. getDXLStaterr.ents () )B . getLimit [typeOf Limit] ―> (Ex. getLirr.it DXLSt at err.ents () )View AnswerAnswer: A
An org has a custom object, Registeration_c that has a lookup relationship to the Opportunity object.
An org has a custom object, Registeration_c that has a lookup relationship to the Opportunity object. What should a developer use to create a stand-alone Vlsualforce page that displays the Registration__c records related to an Opportunity.A . A standard controller with a controller extensionB . A controler extensionC . A...
When testing batch classes, what must a developer do? (Choose two.)
When testing batch classes, what must a developer do? (Choose two.)A . Use seeAIIData=trueB . Encapsulate code in Test.startTestQ and Test.stopTestQC . Call the class* "execute" methodD . Limit the amount of records you test to < 200View AnswerAnswer: B,D Explanation: If you use "seeAIIData=true," you are a bad person
What is the optimal way to implement this?
A company represents their customers as Accounts that have an External ID field called Customer_Number__c. They have a custom Order (Order__c) object, with a Lookup to Account, to represent Orders that are placed in their external order management system (OMS). When an order is fulfilled in the OMS, a REST...