Salesforce (CRT403) Exam Questions And Answers page 40
When should a lookup filter be used?
Multiple Choice
You should use a lookup filter if __________. (Choose two.)
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
What are two true statements about record types?
Multiple Choice
Which two are true statements about record types? (Choose two.)
They can be used to control user role hierarchy.
They allow different page layouts and mandatory fields.
They can be enabled by profile and permission set.
They allow different picklist values for all picklist fields.
Security
Data Management
The VP of Sales at Universal Containers wants to have a set of screens to guide the inside sales team through collecting and updating data for leads.
How can the app builder accomplish this?
How can the app builder accomplish this?
Workflow
Process Builder
Salesforce Connect
Flow
User Interface
Data Management
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 ) && ( CloseDate-Scheduled_Ship_Date__c) > 14
Data Modeling and Management
Business Logic and Process Automation
What would the proper field type be to allow users to enter multiple paragraphs? (Choose two.)
Text Area (Long)
Text (Encrypted)
Text Area (Rich)
Text Area (Super Long)
Text
User Interface
Data Management
Universal Containers are doing a deep analysis on their monthly sales data, and would like the sales revenue split as products sold per country.
What would be the ideal report to address this need?
What would be the ideal report to address this need?
Tabular
Summar
Matric
Joined
Data Management
Analytics
Universal Containers has deployed custom tabs to Production via change sets, without including the profile settings.
What statement is true about the visibility of custom tabs in Enterprise Edition?
What statement is true about the visibility of custom tabs in Enterprise Edition?
Custom tabs are not deployed.
Custom tabs are default on for all users.
Custom tabs are not hidden for all users.
Custom tabs are default off for all users.
User Interface
Security
A Manager at Universal Containers has requested that a custom text field be converted to a picklist in order to promote better data hygiene.
Which two actions should be considered before changing the field type? (Choose two.)
Which two actions should be considered before changing the field type? (Choose two.)
Changing a field type will remove existing field history.
Field reference will be removed in Visualforce pages.
Existing list views that reference the field may be deleted.
All data should be backed up before converting a text field.
User Interface
Data Management
What happens when you convert a picklist to a multi-select picklist? (Choose two.)
Values are retained.
Values not in the picklist are deleted from existing records when the data type changes.
Data is lost.
You can t convert to a multi-select picklist.
Data Modeling and Management
Data Management
What are the invalid return types for a custom formula?
Single Choice
Which of the following is not a valid return type of a custom formula?
Text
Array
Date
Decimal
Business Logic and Process Automation
Data Management
Comments