How should the Developer overcome this problem?
While writing a test class that covers an OpportunityLineItem trigger, a Developer is unable to create a standard PriceBook since one already exists in the org. How should the Developer overcome this problem?A . Use Test.getStandardPricebookId() to get the standard PriceBook IC . Use @IsTest(SeeAllData=true) and delete the existing standard...
Which three should be considered for building out the business logic layer of the application?
A developer of Universal Containers is tasked with implementing a new Salesforce application that must be able to by their company's Salesforce administrator. Which three should be considered for building out the business logic layer of the application? Choose 3 answersA . WorkflowsB . validation RulesC . Process BuilderD ....
Which type of org is best suited for this scenario?
A team of many developers work in their own individual orgs that have the same configuration at the production org. Which type of org is best suited for this scenario?A . Developer SandboxB . Developer EditionC . Full SandboxD . Partner Developer EditionView AnswerAnswer: A
Which tool should the developer use to troubleshoot?
A developer must troubleshoot to pinpoint the causes of performance issues when a custom page loads in their org. Which tool should the developer use to troubleshoot?A . AppExchangeB . Salesforce CLIC . Visual Studio Core IDED . Developer ConsoleView AnswerAnswer: D
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...