ExamGecko
Ask Question

Salesforce Certified Platform App Builder Practice Test - Questions Answers, Page 16

List of questions

Question 151

Report
Export
Collapse

Universal Containers needs the 18-digit record ID from Opportunity records when exporting data to Excel in order to ensure each record is treated uniquely.

What formula should an app builder use to create this new field?

ISNUMBER(Id)
ISNUMBER(Id)
CASESAFEID(Id)
CASESAFEID(Id)
TEXT(Id)
TEXT(Id)
VALUE(Id)
VALUE(Id)
Suggested answer: B

Explanation:

The app builder should use the CASESAFEID(Id) formula to create this new field. The CASESAFEID function returns the 18-digit case-insensitive version of the record ID, which is unique for each record in Salesforce.The 18-digit record ID is useful for exporting data to external systems that require case-sensitive IDs1. Option A, C, and D are not formulas that can return the 18-digit record ID.

asked 23/09/2024
PKE Holding AG Leitgeb
33 questions

Question 152

Report
Export
Collapse

Universal Containers (UC) maintains information for over 2 million assets in an external system. UC needs to access these assets in real-time data in Salesforce and is nearing the data storage limits.

What feature could an app builder recommend UC use?

Data Loader
Data Loader
Salesforce Connect
Salesforce Connect
Salesforce to Salesforce
Salesforce to Salesforce
Data Export Wizard
Data Export Wizard
Suggested answer: B

Explanation:

The app builder should recommend UC use Salesforce Connect to access the assets in real-time data in Salesforce. Salesforce Connect is a feature that allows users to view, search, and modify data that is stored outside Salesforce, such as in an external system.Salesforce Connect uses external objects and external data sources to integrate data from various sources without copying or synchronizing it2. This can help UC access their assets in real-time without consuming data storage limits in Salesforce. Option A, C, and D are not features that can meet this requirement.

asked 23/09/2024
Tym Dom
41 questions

Question 153

Report
Export
Collapse

Universal Containers has deployed custom tabs to Production via changes sets, without including the profile settings or permission sets.

What is the settings for the visibility of custom tabs?

Custom tabs are default off for all users.
Custom tabs are default off for all users.
Custom tabs are default on for all uses.
Custom tabs are default on for all uses.
Custom tabs are hidden for all users.
Custom tabs are hidden for all users.
Custom tabs are NOT deployed.
Custom tabs are NOT deployed.
Suggested answer: A

Explanation:

The setting for the visibility of custom tabs is default off for all users when they are deployed via change sets without including the profile settings or permission sets.This means that the custom tabs are not visible in any apps or navigation menus for any users unless they are manually added by each user or by an administrator3. Option B, C, and D are not correct settings for the visibility of custom tabs.

asked 23/09/2024
Manuel Ortega
42 questions

Question 154

Report
Export
Collapse

When a sales rep submits an account for approval, Universal Containers wants the user to answer additional questions via a popup window to populate additional record fields.

What should an app builder use to achieve the desired result?

Process Builder and Flow
Process Builder and Flow
Lightning component and Process Builder
Lightning component and Process Builder
Custom picklist field and Process Builder
Custom picklist field and Process Builder
Custom button and Flow
Custom button and Flow
Suggested answer: D

Explanation:

The app builder should use a custom button and Flow to achieve the desired result. A custom button is a button that can invoke custom logic or actions when clicked by a user. A Flow is a type of automation tool that can guide users through a series of screens and perform actions based on user input. In this case, the app builder can create a custom button on the Account object that launches a Flow when clicked by a user.The Flow can display a popup window with questions for the user to answer and populate additional fields on the Account record based on the user input4. Option A, B, and C are not tools that can achieve this result.

asked 23/09/2024
Tim Dekker
37 questions

Question 155

Report
Export
Collapse

Sales reps at Cloud Kicks (CK) forget to submit for approval when CK needs orders reviewed before close won. CK wants to automatically submit opportunities into the Secure Commitment Stage to eliminate manual submission.

Which three features would meet the business requirements?

Choose 3 answers

Workflow
Workflow
Process Builder
Process Builder
Apex
Apex
Chatter action
Chatter action
Flow
Flow
Suggested answer: B, C, E

Explanation:

The app builder should use three features to meet the business requirements:

Process Builder: This is a type of automation tool that can execute actions based on certain criteria. In this case, the process builder can have a criteria that evaluates if an opportunity is in the Secure Commitment Stage, and then execute an action that submits it for approval.

Apex: This is a programming language that allows developers to execute complex logic on the Salesforce platform. Apex can be used to create triggers that run before or after certain events, such as insert, update, delete, or undelete of records. In this case, Apex can be used to create a trigger that runs before an opportunity is updated and submits it for approval if it is in the Secure Commitment Stage.

Flow: This is another type of automation tool that can guide users through a series of screens and perform actions based on user input. Flow can also be triggered by certain events, such as when a record is created or updated. In this case, Flow can be used to create a record-triggered flow that runs after an opportunity is updated and submits it for approval if it is in the Secure Commitment Stage. Option A and D are not features that can meet the business requirements.

asked 23/09/2024
Amardeep Kumar
32 questions

Question 156

Report
Export
Collapse

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 2 answers

Create an approval process on the Contract object with criteria set on a second approval step set as 'Amount__c > 10,000' and set the approver as director.
Create an approval process on the Contract object with criteria set on a second approval step set 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'.
Create an approval process on the Contract object and set the field for 'Next Automated Approver Determined By' as Manager'.
Create a validation rule on the Contract object that prevents updates to the contract record while it is being reviewed.
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 one step for each sales manager that sets the approver as the director.
Create an approval process on the Contract object with one step for each sales manager that sets the approver as the director.
Suggested answer: A, C

Explanation:

The app builder should use two options 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:

Create an approval process on the Contract object with criteria set on a second approval step set as 'Amount__c > 10,000' and set the approver as director. An approval process is a type of process that automates how Salesforce records are approved in an organization. An approval process can have multiple steps with different criteria and approvers.In this case, the app builder can create an approval process on the Contract object with two steps: one for the sales manager approval and one for the director approval if the contract amount is over $10,0001.

Create a validation rule on the Contract object that prevents updates to the contract record while it is being reviewed. A validation rule is a type of rule that checks data quality by verifying that the data in a record meets certain standards before it can be saved. A validation rule can prevent users from making changes to a record that is in a certain status or stage.In this case, the app builder can create a validation rule on the Contract object that prevents updates to the contract record if its Approval Status field is not equal to Not Submitted2. Option B and D are not options that can 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.

asked 23/09/2024
John Hammonds
31 questions

Question 157

Report
Export
Collapse

An App Builder at UVC would like to prevent users from creating new records on an Account related list by overriding standard buttons. Which two should the App Builder consider before overriding standard buttons?

Standard buttons can be changed on lookup dialogs, list views, and search result layouts
Standard buttons can be changed on lookup dialogs, list views, and search result layouts
Standard buttons can be overridden with a Visualforce page
Standard buttons can be overridden with a Visualforce page
Standard buttons that are not available for overrides can still be hidden on page layouts
Standard buttons that are not available for overrides can still be hidden on page layouts
Standard buttons can be overridden, relocated on the detail page, and relabeled
Standard buttons can be overridden, relocated on the detail page, and relabeled
Suggested answer: B, C

Explanation:

The app builder should consider two things before overriding standard buttons:

Standard buttons can be overridden with a Visualforce page. A Visualforce page is a web page that displays custom user interface elements using Visualforce markup and Apex code.A Visualforce page can be used to override a standard button and provide custom functionality or logic3.

Standard buttons that are not available for overrides can still be hidden on page layouts. A page layout is a layout that determines how fields, related lists, and buttons are arranged on a record detail or edit page.A page layout can be used to hide a standard button that cannot be overridden by removing it from the layout4. Option A and D are not things that the app builder should consider before overriding standard buttons.

asked 23/09/2024
H Barral Vila
33 questions

Question 158

Report
Export
Collapse

What option is available to an App Builder when defining an object-specific Create Record custom action? Choose 2 answers

Pre-Defining field values on the target object.
Pre-Defining field values on the target object.
Redirecting the end user to the detail page of the target object
Redirecting the end user to the detail page of the target object
Specifying the fields and layout of the action.
Specifying the fields and layout of the action.
Allowingthe end user to choose the record type
Allowingthe end user to choose the record type
Suggested answer: A, C

Explanation:

The app builder has two options available when defining an object-specific Create Record custom action:

Pre-Defining field values on the target object. This means that the app builder can specify default values for certain fields on the target object when creating a new record using the custom action.

Specifying the fields and layout of the action. This means that the app builder can choose which fields to include in the action and how they are arranged on the screen. Option B and D are not options available when defining an object-specific Create Record custom action.

asked 23/09/2024
Yedron Rojas Acosta
49 questions

Question 159

Report
Export
Collapse

Cloud Kicks's management team frequently travels and wants to approve requests from their team on the go via Chatter.

Where would an app builder enable this ability?

Chatter Feed Tracking
Chatter Feed Tracking
Object Settings
Object Settings
Chatter Settings
Chatter Settings
Approval Process Settings
Approval Process Settings
Suggested answer: C

Explanation:

The app builder would enable this ability in Chatter Settings. Chatter Settings is a setup menu that allows an app builder to configure various aspects of Chatter functionality, such as feeds, groups, email notifications, and more. One of the options in Chatter Settings is Enable Approvals via Chatter, which allows users to approve or reject requests from their team via Chatter posts or comments. Option A, B, and D are not places where an app builder would enable this ability.

asked 23/09/2024
Karthik Krishnamoorthy
25 questions

Question 160

Report
Export
Collapse

Ursa Major Solar (UMS) has a custom object where they track Galactic Vendors. The object has four custom fields for the Galactic Vendors's location:

Salesforce Certified Platform App Builder image Question 160 67513 09232024003049000000

The UMS's leadership wants these fields to be concatenated into a single formula field on two lines.

Which formula fulfills this requirement?

A)

Salesforce Certified Platform App Builder image Question 160 67513 09232024003049000000

B)

Salesforce Certified Platform App Builder image Question 160 67513 09232024003049000000

C)

Salesforce Certified Platform App Builder image Question 160 67513 09232024003049000000

D)

Salesforce Certified Platform App Builder image Question 160 67513 09232024003049000000

Option A
Option A
Option B
Option B
Option C
Option C
Option D
Option D
Suggested answer: C

Explanation:

This formula concatenates the four custom fields for the Galactic Vendor's location into a single text value, separated by commas and spaces. The formula also uses the BR function to insert a line break after the second field, creating two lines of text. Option A, B, and D are not formulas that fulfill the requirement.

asked 23/09/2024
bert toger
40 questions
Total 294 questions
Go to page: of 30
Search

Related questions