Salesforce (CRT403) Exam Questions And Answers page 14
At Universal Containers, the VP of Service has requested a visual indicator flag on each case, based on the case priority. High-priority case should be flagged red, medium-priority should be flagged yellow, and low-priority cases should be flagged green.
Which two formulas will accomplish this requirement? (Choose two.)
Which two formulas will accomplish this requirement? (Choose two.)
IF(ISPICKVAL(Priority, "Low"), "/img/samples/flag_green.gif , IF(ISPICKVAL(Priority, "Medium"), "/img/samples/flag_yellow.gif", IF(ISPICKVAL(Priority, "High"), "/img/samples/flag_red.gif, "/s.gif") ) )
CASE( Priority, "Low", "/img/samples/flag_green.gif", "Medium", "/img/samples/flag_yellow.gif", "High", "/img/samples/flag_red.gif", "/s.gif")
IMAGE( IF(ISPICKVAL(Priority, "Low"), "/img/samples/flag_green.gif", IF(ISPICKVAL(Priority, "Medium"), "/img/samples/flag_yellow.gif", IF(ISPICKVAL(Priority, "High"), "/img/samples/flag_red.gif", "/s.gif) ) ), "Priority Flag")
User Interface
Business Logic and Process Automation
Universal Container s app builder needs to display an account s rating on all contacts related to that account.
Which formula is valid in a text formula field on the contact to display the appropriate value? (Choose two.)
Which formula is valid in a text formula field on the contact to display the appropriate value? (Choose two.)
CASE(Account.Rating, Hot, Hot, Warm, Warm, Cold, Cold, Not Rated)
CASE(Account.Rating, "Hot", "Hot", "Warm", "Warm", "Cold", "Cold", "Not Rated")
Account.Rating
Text(Account.Rating)
Data Modeling and Management
Data Management
The VP of Sales at Cloud Kicks wants to have a set of screens to guide the inside sales team through collecting and updating data for leads. Once the leads are updated, the leads should be entered into a marketing journey activated by the sales rep checking the marketing checkbox.
How should the app builder accomplish this?
How should the app builder accomplish this?
Workflow
Lighting Flow
Path
Process Builder
User Interface
Data Management
How to handle user requests for reports?
Single Choice
What should you do when a user requests a report?
Ask follow-up questions, to get all the requirements.
Document the user s requirements.
Map the user s requirements to report criteria.
All of the above.
User Interface
Data Management
Universal Containers conducts evaluations of its sales reps using a custom object consisting of numerical scores and executive comments. The company wants to ensure that only the sales reps, their managers, and their manager s executives can view the rep s evaluation record, but the reps should not be able to view the executive comment fields on their review.
How can these requirements be met?
How can these requirements be met?
Use a private sharing model granting record access using hierarchy; manage field access with record types and field-level security.
Use a private sharing model granting record access using custom settings; manage field access with page layouts and field-level security.
Use a private sharing model granting record access using hierarchy; manage field access with field-level security.
Use a private sharing model granting record access using custom settings; manage field access with record types and page layouts.
Data Modeling and Management
Security
A developer wants to make sure that all fields on his new custom object are editable to all profiles.
What should be checked on field level security?
What should be checked on field level security?
Enable Visible and Read-Only.
Enable Visible but Disable Read-Only.
Disable Visible but Enable Read-Only.
Disable Visible and Read-Only.
Business Logic and Process Automation
Data Management
A manager wants to calculate the number of days since an account was last contacted through e-mail.
What field type should be used to accomplish this?
What field type should be used to accomplish this?
Number
Date
Roll-up summary
Formula
Data Modeling and Management
Data Management
Universal Containers (UC) requires that all users specify a contract is sent on each Opportunity prior to marking it as Closed Won . UC wants to be able to report on how many Opportunities have sent Contracts compared to how many have a missing contract when the Opportunities closed.
What type of field should an app builder configure to fulfill this requirement?
What type of field should an app builder configure to fulfill this requirement?
Text Area
Picklist
Checkbox
Text
Business Logic and Process Automation
Data Management
Universal Containers has two types of customer support processes: Platinum and Diamond. The app builder created separate record types for each process on the Case object. The customer support team should not be able to create new cases with the Diamond record type.
How should this requirement be met?
How should this requirement be met?
Update the profile to remove the Diamond record type from the support team.
Remove the ability for the support team to create new case records.
Make the record type hidden to all users and then use sharing rules to share it.
Update the organization-wide defaults to private.
User Interface
Business Logic and Process Automation
In a data model object, A is related to B, B is related to C.
How will a developer create a report to include fields of A & C?
How will a developer create a report to include fields of A & C?
Create a custom report with A and C fields as the relationship already exists.
Create a custom report type with A, B and C, and use it in the report.
Create lookup relationships between A, B and C.
Report cannot be created.
Data Modeling and Management
Data Management
Comments