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...

May 28, 2022 No Comments READ MORE +

Which functionality consideration impacts the final decision?

A developer is trying to decide between creating a Visualforce component or a Lightning component for a custom screen . Which functionality consideration impacts the final decision?A . Does the screen need to be accessible from the Lightning Experience UI?B . Will the screen make use of a JavaScript framework?C...

May 28, 2022 No Comments READ MORE +

What change should be applied to the component?

A Lightning Component functions in preview mode and needs to be used inside a Lightning App Builder page, but it is not available . What change should be applied to the component?A . Refresh the sandbox and upgrade it to the latest API version.B . Delete the component, metadata, and...

May 28, 2022 No Comments READ MORE +

Choose the correct definition for <apex:pageMessage>.

Choose the correct definition for <apex:pageMessage>.A . Standard Salesforce formatting, throws a specific message on a pageB . Standard Salesforce formatting, shows all errors that occur on page. Can add more messages through the "ApexPages.addMessage" functionC . A single message, without formatting, that can be associated with a specific component...

May 28, 2022 No Comments READ MORE +

Which feature of Apex code is required to facilitate this solution?

A developer is writing a Visualforce page that queries accounts in the system and presents a data table with the results. The users want to be able to filter the results based on up to five fields. However, the users want to pick the five fields to use as filter...

May 27, 2022 No Comments READ MORE +

Which method of integration is optimal?

A company has a web page that needs to get Account record information, given its Salesforce record ID, from JavaScript on the page and then display it . Which method of integration is optimal?A . SOAP APIB . Apex REST Web ServiceC . Apex SOAP Web ServiceD . REST APIView...

May 27, 2022 No Comments READ MORE +

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

May 27, 2022 No Comments READ MORE +

What is wrong with it?

Line 1 public class AttributeTypes Line 2 { Line 3 private final String[] arrayItems; Line 4 Line 5 @AuraEnabled Line 6 public List<String> getStringArray() { Line 7 Strings+ arrayItems = new String*+, 'red', 'green', 'blue' -; Line 8 return arrayItems; Line 9 } Line 10 } Consider the Apex controller...

May 27, 2022 No Comments READ MORE +

Which type of controller is best suited when you want to add custom functionality to a standard controller page, or when you want reusable functionality throughout pages?

Which type of controller is best suited when you want to add custom functionality to a standard controller page, or when you want reusable functionality throughout pages?A . Standard ControllerB . Standard List/Set ControllerC . Controller ExtensionsD . Custom ControllerView AnswerAnswer: C

May 27, 2022 No Comments READ MORE +

What can be used when developing a custom screen to ensure an Account is not created if the creation of the Contact fails?

Business rules require a Contact to always be created when a new Account is created . What can be used when developing a custom screen to ensure an Account is not created if the creation of the Contact fails?A . use the Database.Delete method if the Contact insertion fails.B ....

May 27, 2022 No Comments READ MORE +