salesforce omnistudio consultant Practice Questions & Answers (Set 5) | CodeWme
#1 Which Omniscript element can be used to retrieve data from more than one source? Select 1
✅ Answer: Integration Procedure Action
An Integration Procedure is the only tool listed capable of orchestrating calls to multiple disparate sources (Salesforce, External APIs, etc.) in a single transaction.
#2 A business is creating an agent console with Flexcards to provide a 360° view... Account information, Active opportunities, Active contracts, and the ability to view and renew contracts. How should the consultant design the Flexcards to meet these requirements? Select 1
✅ Answer: Parent Flexcard with multiple Child and Card Actions
Multiple Child cards are needed for the different schemas (Opportunities vs Contracts), and Card Actions are required to fulfill the 'Renew' functionality.
#3 A company needs to create a quoting process... The process should use the grade and size to look up a discount factor, then multiply the unit price by that discount to return the quote. Which two tools should the consultant recommend? (Select 2) Select all that apply
✅ Answer: Decision Matrix, Expression Set
The Decision Matrix handles the lookup logic (Grade/Size to Factor), and the Expression Set handles the mathematical calculation (Price * Factor).
#4 A company needs to create a new quote estimation process... the user needs to enter a variable number of rows of data... Service category, Number of hours, Hourly rate... calculate the total for each row. Which two Omniscript elements should the consultant recommend? (Select 2) Select all that apply
✅ Answer: Input Block, Formula
The Input Block (specifically Edit Block) allows for variable row entry (arrays), and the Formula element performs the multiplication calculation per row.
#5 A business needs to display installed products... on a mobile device. The information must be summarized so the technician can see key details at a glance. However, the technician also needs to sometimes access a list of past service dates for each product. Which two Flexcards features should the consultant recommend? (Select 2) Select all that apply
✅ Answer: Enable the Responsive property, Use flyouts
Responsive property ensures the summary looks good on mobile; Flyouts provide on-demand access to the detailed service history list.
#6 A business wants to add typeahead functionality... begin entering the name of a contact in Salesforce... allow the user to select the contact... retrieve the contact's email address. Which data source is needed when using the Type Ahead Block element? Select 1
✅ Answer: Data Mapper Extract Action
A Data Mapper Extract is required to query Salesforce for the matching records and retrieve the email field based on the user's input key.
#7 A consultant is working on a project... considering using Decision Matrices and Expression Sets. What is the primary benefit of using Decision Matrices and Expression Sets in Omnistudio? Select 1
✅ Answer: They allow for calculations on matrix lookups and variables.
Their core purpose is to function as a Business Rules Engine, performing calculations based on variables and static lookup tables (matrices) without code.
#8 A company needs to create a process that allows call center admins to retrieve all open cases that have a case type of network issue and submit the case data 'as is' to a back office system for validation in batch on a daily basis. Once the cases have been submitted, the process should trigger an email to the supervisor. Which three Omnistudio tools should the consultant recommend? (Select 3) Select all that apply
✅ Answer: Data Mapper Turbo Extract, Integration Procedure, Omniscript
Omniscript for the admin UI; Integration Procedure for the batch orchestration/email; Data Mapper Turbo Extract for efficient retrieval of the single case object list.
#9 A company has a process that requires minimum age to purchase... If the user is younger than 18 years, then the Omniscript needs to display a message stating 'You must be 18 years or older...' and also prevent users from continuing. Which two Omniscript components should the consultant recommend? (Select 2) Select all that apply
✅ Answer: Messaging, Formula
A Formula element is needed to calculate the age from the birthdate, and the Messaging element is used to display the error and block the 'Next' step based on the formula result.
#10 Agents for an insurance company need to know the current and past weather conditions... The Flexcard needs to provide fields extracted from a weather API and account fields from Salesforce. According to best practice, which data source should be used? Select 1
✅ Answer: Integration Procedure
An Integration Procedure is best for retrieving and merging data from multiple disparate sources (Salesforce + External API) in a single server-side call.
#11 Omniscript has multiple steps that allow the user to review lists of cases, contacts, quotes... reaching performance limitations... development team warns that they may begin hitting Governor limits. Which two suggestions should the consultant propose? (Select 2) Select all that apply
✅ Answer: Combine the Data Mappers into an Integration Procedure., Replace the Data Mapper Extracts with Data Mapper Turbo Extracts.
IPs allow for server-side processing and response pruning (reducing payload), while Turbo Extracts are optimized for high-performance reading of single objects, reducing CPU limits.
#12 A company has a requirement to create a 360° view of their customers using Flexcards... customer data is stored in Salesforce but also in external legacy systems... parent Flexcard that contains multiple child cards... What is the advantage of embedding multiple child cards in this scenario? Select 1
✅ Answer: Allows multiple data sources to be used
Each Child Flexcard can be configured with its own independent data source, allowing one view to aggregate data from Salesforce and multiple external systems concurrently.
#13 A business needs a 360° view... identified 20 different data elements and 10 actions... Once all of the elements are collected together on the Flexcard, it looks cluttered. Which two Flexcard features should the consultant recommend? (Select 2) Select all that apply
✅ Answer: Put specific fields in a collapsible block., Use a flyout action to display additional information.
Flyouts and Collapsible Blocks allow the consultant to hide less critical information initially, decluttering the main view while keeping details accessible.
#14 A company needs to implement new verification processes for contacts... Recruiter, Candidate, and Trainer... verification process is different for each type of contact. Which Omnistudio tools should the consultant recommend? Select 1
✅ Answer: Single Flexcard with an Action to invoke an Omniscript
Using a Single Flexcard creates a unified entry point; the Action invokes a 'Dispatcher' Omniscript that internally handles the logic to route the user to the correct process based on Record Type.
#15 Omniscript that allows call center agents to schedule field service appointments... retrieve available appointment dates from an external system via a REST API... display them to the user for selection in a dropdown list. Once the user selects a date, a confirmation should display with rich text and images. Which three Omniscript elements should be used? (Select 3) Select all that apply
✅ Answer: HTTP Action, Text Block, Select
HTTP Action calls the API; Select element creates the dropdown list; Text Block displays the rich text/image confirmation.
#16 Which Omnistudio tool creates a Chatter post and sends to a Chatter feed? Select 1
✅ Answer: Data Mapper Load
Data Mapper Load is used to insert records into Salesforce objects, including the 'FeedItem' object which represents a Chatter post.
#17 An insurance agency... find out total insurance premiums paid as well as the difference year over year... send them a summary report by email. Which three Omniscript elements should be used? (Select 3) Select all that apply
✅ Answer: Email Action, Data Mapper Extract Action, Calculation Action
Extract retrieves the data, Calculation Action performs the math (year over year diff), and Email Action sends the report.
#18 A consultant needs to design an Omniscript to capture... Select one payment method... Enter the address information with autocomplete... Enter a phone number. Which Omniscript elements should be used? Select 1
✅ Answer: Radio, TypeAhead, and Telephone
Radio allows single selection, TypeAhead enables autocomplete for addresses, and Telephone handles formatted phone inputs.
#19 An insurance company decides to implement a sales console... determines that Flexcards would be the best solution to display part of the required information. Which two pieces of data should the consultant recommend displaying using Flexcards? (Select 2) Select all that apply
✅ Answer: Policies including type, issue date, amount, Customer name, title, phone, email
Flexcards are best suited for 'at-a-glance' profile data (Customer info) and summary lists of related records (Policies).
#20 A company plans to rebuild a process... functionality that was originally written in APEX... process retrieves data from an external system. In this scenario, which Omnistudio data tool should the consultant recommend? Select 1
✅ Answer: Integration Procedure
Integration Procedures are the declarative replacement for Apex code and the only tool in the list capable of making external API calls.