Universal Containers wants a list button to display a Visualforce page that allows users to edit multiple records. which Visualforce feature supports this requirement?
Universal Containers wants a list button to display a Visualforce page that allows users to edit multiple records. which Visualforce feature supports this requirement?A . <apex:listButton> tagB . Custom controllerC . RecordSetVar page attributeD . Controller extensionView AnswerAnswer: C
Which three options should be used to build out the database layer for the application?
Universal Containers decides to use exclusively declarative development to build out a new Salesforce application. Which three options should be used to build out the database layer for the application? Choose 3 answersA . Roll-Up SummariesB . TriggersC . RelationshipsD . Process BuilderE . Custom Objects and FieldsView AnswerAnswer: A,C,D
which statement is true regarding execution order when triggers are associated to the same object and event?
which statement is true regarding execution order when triggers are associated to the same object and event?A . Trigger execution order cannot be guaranteed.B . executed In the order they are modified.C . Triggers are executed alphabetically by trigger name.D . Triggers are executed in the order they are created.View...
What is the correct definition of the Apex method?
A Next Best Action strategy uses an Enhance Element that invokes an Apex method to determine a discount level for a Contact, based on a number of factors. What is the correct definition of the Apex method?A . @InvocableMethod global static ListRecommendation getLevel(List<ContactWrapper> input) { /*implementation*/ }B . @InvocableMethod global...
Universal Containers has an order system that uses an Order Number to identify an order for customers and service agents. Order will be imported into Salesforce.
Universal Containers has an order system that uses an Order Number to identify an order for customers and service agents. Order will be imported into Salesforce.A . LookupB . Direct LookupC . Number with External IDD . Indirect LookupView AnswerAnswer: C
What should a developer do to allow their code to move some existing Orderltem records to a new Order record?
A developer created a custom order management app that uses an Apex class. The order is represented by an Order object and an Orderltem object that has a master-detail relationship to Order. During order processing, an order may be split into multiple orders. What should a developer do to allow...
Which three statements are useful inside the unit test to effectively test the custom controller?
A developer has a single custom controller class that works with a Visualforce Wizard to support creating and editing multiple subjects. The wizard accepts data from user inputs across multiple Visualforce pages and from a parameter on the initial URL. Which three statements are useful inside the unit test to...
Which is the correct implementation to use the PaymentProcessor interface class?
A developer must implement a CheckPaymentProcessor class that provides check processing payment capabilities that adhere to what defined for payments in the PaymentProcessor interface. public interface PaymentProcessor { void pay(Decimal amount); } Which is the correct implementation to use the PaymentProcessor interface class?A . Public class CheckPaymentProcessor implements PaymentProcessor {...
Without writing unnecessary code, which controller should be used for this purpose?
A developer Is asked to create a Visualforce page that lists the contacts owned by the current user. This component will be embedded In a Lightning page. Without writing unnecessary code, which controller should be used for this purpose?A . Standard list controllerB . Standard controllerC . Lightning controllerD ....
Which two examples above use the system. debug statements to correctly display the results from the SOQL aggregate queries? Choose 2 answers
Which two examples above use the system. debug statements to correctly display the results from the SOQL aggregate queries? Choose 2 answers A . Example 1B . Example 2C . Example 3D . Example 4View AnswerAnswer: B,C