Salesforce (CRT403) Exam Questions And Answers page 5
What are the true statements about Lightning Connect?
Single Choice
Which of these statements is true for Lightning Connect?
External data is read in real time when you request it.
It can be used with any data source that supports OData 2.0.
All of the above.
Business Logic and Process Automation
Data Management
How to create a dynamic approval process in Salesforce?
Single Choice
What are the steps for creating a dynamic approval process?
Create (user) lookup fields on the object being approved, Create a custom object as an approval matrix, Populate the approval matrix record, Create Apex code to populate the user fields from the approval matrix record, Create or update an approval process to utilize the new lookup fields.
Create standard object as an approval matrix.
Create an approval process.
All of the above.
Business Logic and Process Automation
Security
How to Set Up Opportunity Review Process for Regional Managers?
Multiple Choice
Universal Containers is rolling out a new opportunity review process. Regional managers will need to edit opportunities for their subordinates, but not for other groups. Managers and users should be able to view all opportunities.
Which two approaches are recommended to meet their requirement? (Choose two.)
Which two approaches are recommended to meet their requirement? (Choose two.)
Set organization-wide defaults to public read/only.
Create standard role hierarchies
Set organization-wide defaults to public read/write.
Create criteria based sharing rules.
User Interface
Business Logic and Process Automation
Universal Containers (UC) has 20 different workflows on the Opportunity object. To ensure that updates are processing properly for all field updates; UC has the Re-evaluate Workflow Rules After Field Change checkbox checked. Recently after adding a new workflow, users have reported receiving errors about workflow limits.
What should an app builder look at to address this issue?
What should an app builder look at to address this issue?
Number of workflows per object limits
Talk to a developer about Apex code issues
Workflows that cause each other to fire back and forth recursively
Workflows on other objects that are being re-triggered
Business Logic and Process Automation
Data Management
Cloud Kicks wants to make sure that users without the Marketing role are unable to update the Contact Retail Opt In picklist field to Yes.
What validation rule would an app builder use to prevent other users from making this update?
What validation rule would an app builder use to prevent other users from making this update?
AND( $UserRole.Name != Marketing , Retail_Opt_In__c = Yes )
AND( $UserRole.Name = Marketing , Retail_Opt_In__c = Yes )
AND( $UserRole.Name = Marketing , ISPICKVAL(Retail_Opt_In__c = Yes ) )
AND( $UserRole.Name = Marketing , ISCHANGED(Retail_Opt_In__c), ISPICKVAL(Retail_Opt_In__c = Yes ) )
Security
Data Management
Which of the following is true about Roll-up Summary Fields?
Roll-up Summary can be used to compute SUM, MIN, MAX, AVG over a set of records.
Roll-up Summary Fields are readonly.
Roll-up Summary can only be set on the parent of a Master-Detail or Lookup relationship.
The results of the Roll-up Summary is displayed on the child in a master-detail relationship.
Data Modeling and Management
Data Management
Which two options are available to an app builder when defining an object-specific Create Record custom action? (Choose two.)
Allowing the end user to choose the record type.
Specifying the fields and layout of the action.
Redirecting the end user to the detail page of the target object.
Pre-defining field values on the target object.
Business Logic and Process Automation
Data Management
Which two features should be used to allow users to access Flows? (Choose two.)
Custom Button
Quick Action
Flow Launcher
Invoked by a Process.
User Interface
Business Logic and Process Automation
When should a Validation rule be used?
Multiple Choice
You should use a Validation rule if __________. (Choose two.)
You want to improve user efficiency by limiting the number of available options in a lookup search dialog.
You are close to the maximum number of lookup filters allowed.
You want to improve user efficiency by automating filters on lookup search dialogs that your users manually set.
You must implement a complex business rule that requires you to use a formula. Formulas can reference fields that basic filter criteria can t reference, such as fields on the parent of the source object. Formulas can also use functions. For example, use ISNEW if the rule should only apply on record creation, or ISCHANGED if the rule should apply when a field changes.
Data Modeling and Management
Security
Which of the following descriptions about the Lightning Components framework is true?
It uses JavaScript on the client side and Apex on the server side.
It uses events to communicate data between components.
It uses a stateful client and stateless server architecture.
All of the above.
User Interface
Business Logic and Process Automation
Comments