Salesforce (CRT403) Exam Questions And Answers page 18
ABC Company has a custom object "Service" which has a lookup relationship to Account. ABC Company wants to enhance Salesforce1 with an action that allows account managers to enter a new service to an Account while looking at the account.
What should be done?
What should be done?
Enter an object specific action to Service and put it in the Service Layout.
Enter an object specific action to Account and put it in the Service Layout.
Enter an object specific action to Account and put it in the Account Layout.
User Interface
Business Logic and Process Automation
Universal Containers has a custom picklist called Support Level on the Account object. They would like to show the real-time value of Support Level on all case records.
How should an app builder implement this requirement?
How should an app builder implement this requirement?
Create a formula field on the Case object using the TEXT function.
Create a roll-up summary field using Support Level on the Account object.
Create a formula field on the Account object using the ISPICKVAL function.
Create a Process Builder and use a field update on the Case object.
User Interface
Data Management
When should ETL be preferred over Lightning Connect?
Single Choice
In which of these scenarios is ETL a better choice than Lightning Connect?
You need to create or update the external data in addition to reading it.
You need the external data to follow the sharing rules defined for your organization.
You want to generate reports and charts from the external data.
All of the above.
Data Modeling and Management
Data Management
An app builder needs to change the data types of a few custom fields. The app builder is not able to delete and recreate any of the fields, nor modify any Apex code.
What data type change will require the app builder to perform additional steps in order to retain existing functionality?
What data type change will require the app builder to perform additional steps in order to retain existing functionality?
Changing the data type of a field used in lead conversion from number to text.
Changing the data type of a field used as an External ID from number to text.
Changing the data type of a field used in an Apex class from number to text.
Changing the data type of a field used in a report from text to an encrypted field.
Data Modeling and Management
Data Management
What is true regarding person accounts in Salesforce? (Choose two.)
Person accounts do not have a "Parent Account" field.
Person accounts do not have the Account Hierarchy feature.
Person Accounts can be enabled in setup.
Person accounts can have contacts.
Leads cannot be converted to Person Accounts.
Security
Data Management
Universal Containers has a custom project evaluations object used by three business teams. Business team managers have requested that project evaluations be tracked and managed independently of each other with different set of custom fields and picklist values.
What is minimally required configuration to accomplish this?
What is minimally required configuration to accomplish this?
With a custom project evaluation object, create separate record types with different picklist values and page layouts for each team. Create and assign separate profiles by team.
Create separate page layouts to determine the fields and picklist values for each user based on the team indicated on their user record. User field-level security to restrict access to each team s fields.
Create separate custom objects to track project evaluations independently of each other with record types and page layouts. Assign custom objects permissions with three different profiles.
With a custom project evaluation object, create a separate page layout for each team and assign them using a profile. Use permission sets to configure each team s field list and picklist values.
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
An app builder has been asked to display an Overdue Date that is two months after a Task s Due Date.
Which approach should the app builder take?
Which approach should the app builder take?
Create a formula field using the ADDMONTHS() function
Use Process Builder and set Overdue Date equal to DueDate + 60
Create a formula field using DueDate + 60
Use Process Builder and set Overdue Date equal to DueDate + ((365/12) * 2)
User Interface
Data Management
The Director of Marketing has asked the app builder to create a formula field that tracks how many days have elapsed since a contact was sent a marketing communication. The director is only interested in whole units.
What function should be used to return today s date for calculating the difference?
What function should be used to return today s date for calculating the difference?
DATE()
NOW()
TODAY()
DATEVALUE()
User Interface
Data Management
Which two ways can an app builder grant object-level access to users? (Choose two.)
Public Groups
Permission Sets
Roles
Profiles
Business Logic and Process Automation
Security
Comments