Salesforce (CRT403) Exam Questions And Answers page 3
ABC Company is using assignment rules to distribute cases to regional teams.
Which of the following is true?
Which of the following is true?
It is possible to have multiple active assignment rules.
Cases may be assigned to queues (if configured).
A workflow field update can be used instead.
Business Logic and Process Automation
Security
What are the limitations of Schema Builder when creating a custom object?
Relationships can be made to any custom objects, but any relationships to standard objects should be built in Lightning Object Manager.
Fields and relationships can be created, but they will be unable to add the fields to the page layout from the canvas.
Save should be clicked each time a new object, field, or relationship is created.
Custom fields can be added to any custom objects, excluding the formula field types.
Data Modeling and Management
Data Management
Universal Containers allows all employees to submit reviews for leadership using a custom object. These reviews should only be visible to the HR department and the employee who submitted the review.
Which three steps should an app builder take to properly control access to review records? (Choose three.)
Which three steps should an app builder take to properly control access to review records? (Choose three.)
Remove review read permission from non-HR Department user Profiles
Add a Master-Detail(User) field on the Review object
Set Org Wide Default to Private
Disable Grant Access Using Hierarchies
Create a criteria-based Sharing Rule for the HR Department
Security
Data Management
If any of the triggered workflow rules result in another field update that s also enabled for workflow rule re-evaluation, a domino effect occurs, and more workflow rules can be re-evaluated as a result of the newly-triggered field update.
True
False
Business Logic and Process Automation
Data Management
In terms of the order of execution, what must be taken into account when using Validation rules & Workflows?
The order of execution can be controlled in Salesforce setup.
Validation rules fire before Workflow rules therefore will not catch any data that does not abide by your Validation rules.
Validation rules fire after Workflow rules, so you must ensure that Workflow rules abide by your Validation rules to avoid errors.
Validation rules & Workflow rules fire on separate automation schedules and therefore the order of execution can be ignored.
Business Logic and Process Automation
Security
Which type of component CANNOT be added to a Lightning App Builder page?
Global Actions
Dashboards
Filter List
Visualforce
User Interface
Business Logic and Process Automation
Universal Containers uses Contracts for agreements with customers. A sales manager is required to provide approval for contracts and director approval for any contract over $10,000.
Which two options should an app builder use to ensure all contracts route for the correct approval and also prevent the sales rep from making changes to the record while it is being approved? (Choose two.)
Which two options should an app builder use to ensure all contracts route for the correct approval and also prevent the sales rep from making changes to the record while it is being approved? (Choose two.)
Create an approval process on the Contract object with one step for each sales manager that sets the approver as the director.
Create a validation rule on the Contract object that prevents updates to the contract record while it is being reviewed.
Create an approval process on the Contract object with criteria set on a second approval step as Amount__c > 10,000 and set the approver as director.
Create an approval process on the Contract object and set the field for Next Automated Approver Determined By as Manager .
Business Logic and Process Automation
Security
Which three Salesforce functionalities are ignored when processing field updates in workflow rules and approval processes? (Choose three.)
Field-level security
Record type picklist value assignments
Multiple currencies
Validation rules
Decimal places and character limits
Business Logic and Process Automation
Security
Cloud Kicks (CK) is finding sales reps are inconsistent in data entry when deals are won. CK requires that custom shoes are shipped within two weeks after the close date. A custom field called Scheduled Ship Date on the opportunity records the ship date.
How should the app builder ensure this field is properly filled out before setting the opportunity to closed won?
How should the app builder ensure this field is properly filled out before setting the opportunity to closed won?
ISPICKVAL( StageName , Closed Won ) && ( Scheduled_Ship_Date__c - CloseDate) > 14
OR(ISPICKVAL( StageName , Closed Won ) && ( Scheduled_Ship_Date__c - CloseDate) > 14, ISBLANK(Scheduled_Ship_Date__c))
OR(ISPICKVAL( StageName = Closed Won ) && ( Scheduled_Ship_Date__c - CloseDate) > 14, ISBLANK(Scheduled_Ship_Date__c))
ISPICKVAL( StageName = Closed Won ) && ( Scheduled_Ship_Date__c - CloseDate) > 14
Data Modeling and Management
Business Logic and Process Automation
Which data types are supported by formula fields?
Multiple Choice
Select the data types that are supported by formula fields. (Choose three.)
Currency
Email
Percent
Phone
Text
Data Modeling and Management
Data Management
Comments