
Get Latest Mar-2026 Real Plat-Con-201 Exam Questions and Answers FREE
Truly Beneficial For Your Salesforce Exam (Updated 145 Questions)
NEW QUESTION # 56
A company is creating a FlexCard for agents to respond to account inquiries. The company has decided to lim actions on the card to the three most frequent and important actions users typically take.
Based on the user analysis exhibit shown below, which three actions should appear on the card?
Choose 3 answers
- A. Verify a transaction
- B. View credit score history
- C. Request higher limit
- D. View statements
- E. Make a payment
Answer: A,C,E
Explanation:
Based on the user analysis exhibit, the three actions that should appear on the card are: verify a transaction, request higher limit, and make a payment. These actions have the highest frequency and importance scores among the six actions listed. The other actions, such as view credit score history, view statements, and view rewards, have lower frequency and importance scores, and can be accessed through other means
NEW QUESTION # 57
A Salesforce Omnistudio Consultant is working on a project to automate a complex business process for a client. The consultant decides to use an Omniscript to guide users through the process.
What is the first step the consultant should take when creating an Omniscript?
- A. Define the script in the Omniscript Designer.
- B. Test the script on multiple channels and devices.
- C. Create a new Selesforce application for the script.
- D. Deploy the script within a Selesforce application
Answer: A
Explanation:
* Define the script in the OmniScript Designer (D) - The first step in creating an OmniScript is to define it in the OmniScript Designer, where the consultant:
* Outlines the flow of the script (steps, inputs, actions).
* Adds UI elements (text fields, picklists, buttons).
* Configures integration points (DataRaptors, Integration Procedures).
* A. Create a new Salesforce application for the script - This is not required to build an OmniScript.
OmniScripts can be deployed within existing Salesforce applications.
* B. Deploy the script within a Salesforce application - Deployment happens after the script is built and tested, not as the first step.
* C. Test the script on multiple channels and devices - Testing is an important step after building and configuring the script.
Comprehensive and Detailed In-Depth Explanation:Why not the other options?? Salesforce OmniStudio Reference:
* OmniScript Designer Guide
* Creating OmniScripts
NEW QUESTION # 58
What business problem does DataRaptor solve?
- A. lt removes the need to code data mappings for data transformations.
- B. It allows developers to create complex API queries declaratively.
- C. It combines multiple steps and processes into a single server call.
- D. It guides humans through a complex business process.
Answer: A
Explanation:
The business problem that DataRaptor solves is that it removes the need to code data mappings for data transformations. DataRaptor allows the designer to declaratively define how data is read, transformed, and written between Salesforce and external systems. It does not allow developers to create complex API queries declaratively, as this is done by Integration Procedures. It does not combine multiple steps and processes into a single server call, as this is done by Calculation Procedures. It does not guide humans through a complex business process, as this is done by OmniScripts.
NEW QUESTION # 59
An auto insurance company has different rates for each state in the country. The company needs to manage the rates separately, but the formula to calculate the premiums is the same. All the input and output are the same; only the values in the rating tables differ.
Which OmniStudio tool should the consultant recommend to meet this requirement?
- A. Class-based Calculation Procedure
- B. Grouped Calculation Matrix
- C. Aggregation Steps in a Calculation Procedure
- D. DataRaptor Transform with an interface Map
Answer: B
Explanation:
The OmniStudio tool that the consultant should recommend to meet this requirement is Grouped Calculation Matrix. A Grouped Calculation Matrix is a tool that can perform complex calculations based on multiple input variables and output values within groups. The consultant can use a Grouped Calculation Matrix to define the input variables, such as state and other factors, and the output values, such as rates. The Grouped Calculation Matrix can then apply rules and formulas to calculate the rates for each state separately, but using the same formula
NEW QUESTION # 60
A company needs to create a quoting process for its internal agents. During quoting, the agent selects a product that is passed to the OmniScript with product details including the unit price, and specifies the grade (A, B, C, D, E) and size (Small, Medium, Large, X-Large). 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 be used to meet these requirements?
Choose 2 answers
- A. Expression Set
- B. DataRaptor Extract
- C. Decision Matrix
- D. DataRaptor Transform
Answer: B,C
Explanation:
Comprehensive and Detailed In-Depth Explanation:The requirement involves creating a quoting process within an OmniScript where an agent selects a product (with a unit price), specifies grade and size, looks up a discount factor based on those inputs, and calculates the final quote. Two OmniStudio tools are needed to achieve this: Decision Matrix and DataRaptor Extract.
Here's why C. Decision Matrix and D. DataRaptor Extract are the correct answers:
* C. Decision Matrix:
* Purpose: A Decision Matrix in OmniStudio is a tool used to look up values based on multiple input conditions, returning a result that can be used in calculations or processes. It's essentially a configurable lookup table stored as a Salesforce custom object (DecisionMatrixDefinition).
* Application: In this scenario, the Decision Matrix is ideal for determining the discount factor based on the combination of grade (A, B, C, D, E) and size (Small, Medium, Large, X-Large).
For example:
* Grade A + Small = 0.9 (10% discount)
* Grade B + Large = 0.85 (15% discount)
* And so on for all 20 combinations (5 grades × 4 sizes).
* Integration with OmniScript: The OmniScript can call the Decision Matrix via an Integration Procedure or directly reference it in a Calculation Action, passing Grade and Size as inputs and receiving the DiscountFactor as output.
* Why It Fits: The requirement explicitly states "look up a discount factor," and Decision Matrix is purpose-built for such multi-variable lookups, making it more efficient than manual coding or other tools.
* D. DataRaptor Extract:
* Purpose: A DataRaptor Extract retrieves data from Salesforce objects and maps it into a JSON format usable by OmniScripts or other components.
* Application: The product details, including the UnitPrice, are passed to the OmniScript when the agent selects a product. A DataRaptor Extract is needed to fetch this product data from a Salesforce object (e.g., Product2 or a custom object like QuoteLineItem__c) based on the selected product's ID. The extracted data (e.g., { "ProductId": "01t...", "UnitPrice": 100 }) is then available in the OmniScript's data JSON.
* Role in Calculation: After the Decision Matrix provides the discount factor, the OmniScript can use a Calculation Action to multiply the UnitPrice (from the DataRaptor Extract) by the DiscountFactor (from the Decision Matrix) to compute the quote (e.g., 100 * 0.9 = 90).
* Why It Fits: The process starts with product selection, and DataRaptor Extract is the standard OmniStudio tool for retrieving Salesforce data like unit price.
* How They Work Together:
* DataRaptor Extract: Fetches product details (e.g., UnitPrice) when the agent selects a product.
* Decision Matrix: Looks up the discount factor based on Grade and Size inputs.
* Calculation Action in OmniScript: Multiplies UnitPrice by DiscountFactor to return the quote.
Now, let's examine why the other options are incorrect:
* A. DataRaptor Transform: A DataRaptor Transform manipulates or reshapes data (e.g., converting JSON structures or applying formulas) but doesn't retrieve data from Salesforce or perform lookups like a Decision Matrix. While it could theoretically calculate the quote after data is fetched, it's not needed here since a Calculation Action within OmniScript can handle the multiplication, and it doesn't address the lookup requirement.
* B. Expression Set: An Expression Set defines reusable formulas or conditions in OmniStudio, often used in Integration Procedures or Calculations. While it could compute the final quote (e.g., UnitPrice * DiscountFactor), it doesn't retrieve data or perform lookups based on grade and size. It's a supporting tool, not a primary solution for this requirement.
References:
* Salesforce OmniStudio Documentation: Decision Matrix Overview - Describes using Decision Matrices for multi-condition lookups.
* Salesforce OmniStudio Developer Guide: DataRaptor Extract - Details retrieving Salesforce data for OmniScript use.
NEW QUESTION # 61
A company plans to use OmniScript to digitally transform Its business. During the discovery phase of the project the team reviews all of the business processes including the Individual steps of each process. As a result of analysis, it is clear that many processes need to update contact data at different points in the process.
What solution should the consultant recommend to efficiently meet these requirements?
- A. Create an OmniScript that uses the reusable property to update contact data and embed it In other OmniScripts.
- B. Create a FlexCard for contacts, and add an Update Contact Details OmniScript as an action.
- C. Create an Integration Procedure to update contact data with "Chain OnStep" enabled and invoke it from all OmniScripts.
- D. Create an OmniScript to update contact data and invoke it when other OmniScripts complete.
Answer: A
Explanation:
The solution that the consultant should recommend to efficiently meet these requirements is to create an OmniScript that uses the reusable property to update contact data and embed it in other OmniScripts. A reusable OmniScript is an OmniScript that can be embedded in another OmniScript as a sub-process. This way, the consultant can create one OmniScript that updates contact data in a consistent way, and then use it in multiple OmniScripts that need to update contact data at different points in the process. This will improve the design and maintenance of the OmniScripts
NEW QUESTION # 62
Which two functions can be performed by DataRaptors?
Choose 2 answers
- A. Read and write data to Salesforce
- B. Combine requests into a single response
- C. Transform data
- D. Read and write data to external systems
Answer: A,C
Explanation:
DataRaptors are OmniStudio data tools that can perform various functions on data, such as reading, writing, transforming, and validating. They can work with Salesforce data and external data sources. The two functions that can be performed by DataRaptors are:
* Transform data: DataRaptors can use transformation rules to manipulate data, such as changing the format, applying calculations, mapping values, etc.
* Read and write data to Salesforce: DataRaptors can use SOQL or SOSL queries to read data from Salesforce objects and fields, and use DML operations to insert, update, delete, or upsert data to Salesforce.
The functions that cannot be performed by DataRaptors are:
* Combine requests into a single response: DataRaptors cannot aggregate multiple requests from different sources into one response. This can be done using Integration Procedures, which can orchestrate multiple DataRaptors or REST calls into a single process.
* Read and write data to external systems: DataRaptors cannot directly access external systems or APIs.
They need to use Integration Procedures or REST elements to invoke external services and pass the data to or from DataRaptors.
NEW QUESTION # 63
Which OmniStudio tool can be used to invoke scheduled jobs?
- A. DataRaptor Extract
- B. DataRaptor Load
- C. Integration Procedure
- D. Calculation Procedure
Answer: C
Explanation:
The OmniStudio tool that can be used to invoke scheduled jobs is Integration Procedure. An Integration Procedure is a tool that can execute multiple DataRaptor actions, such as Extract, Transform, and Load, and also invoke REST or SOAP services. An Integration Procedure can also be scheduled to run at a specific time or frequency using Apex Scheduler or Process Builder
NEW QUESTION # 64
A company has an existing OmniScript that agents use to create new billing accounts. It currently has three steps to capture the required information:
* Step 1: account name and legal number
* Step 2: billing cycle and monthly due date
* Step 3: email and telephone number
After each step, a DataRaptor is used to update the account information in Salesforce.
Following best practices, which two improvements can the consultant recommend for this OmniScript?
Choose 2 answers
- A. Combine the three steps into one step
- B. Configure the save for later property
- C. Use a single DataRaptor to save the information
- D. Create a reusable OmniScript for this process
Answer: A,C
Explanation:
When designing OmniScripts, the best practices that should be followed to optimize performance and user experience are:
* Use a single DataRaptor to save the information: Instead of using multiple DataRaptors to update the account information after each step, it is better to use a single DataRaptor at the end of the OmniScript to save all the information at once. This reduces the number of database operations and improves performance.
* Combine the three steps into one step: Instead of having three separate steps to capture the required information, it is better to combine them into one step with a simple layout. This reduces the number of page transitions and improves user experience.
The suggestions that are not best practices are:
* Create a reusable OmniScript for this process: This may not be necessary if the process is specific to creating new billing accounts and not used by other OmniScripts. Creating a reusable OmniScript may add complexity and maintenance overhead.
* Configure the save for later property: This may not be useful if the process is short and simple and does not require the user to resume it later. Configuring the save for later property may add unnecessary storage and retrieval logic.
NEW QUESTION # 65
A company has several customer support departments. Each
department has different case creation processes, but they want to unify them into a single LWC OmniScript. During the discovery, the consultant identifies two key requirements:
* Each department has different case fields they need to capture
* If the user cancels the process, they should return to a support
console app
Which two OmniScript features should the consultant recommend to meet
these requirements?
Choose 2 answers
- A. Use Conditional Views on steps for each department
- B. Add a Done action that redirects to the support console
- C. Set Enable Cancel in Setup
- D. Enable the Save for Later feature
Answer: A,C
Explanation:
* Set Enable Cancel in Setup (B) - This ensures that users can cancel the OmniScript process and be redirected to a specific URL (e.g., support console app).
* Use Conditional Views on steps for each department (C) - Conditional Views allow different fields to be displayed based on department-specific requirements, ensuring that each department only sees the fields relevant to them.
* A. Enable the Save for Later feature - This allows users to pause and resume the OmniScript later, but the question specifically asks about canceling the process, not saving progress.
* D. Add a Done action that redirects to the support console - The Done Action is used to submit the process, but the question focuses on handling the cancellation scenario, making "Enable Cancel" the better choice.
Comprehensive and Detailed In-Depth Explanation:Why not the other options?? Salesforce OmniStudio Reference:
* OmniScript Conditional Views
* OmniScript Enable Cancel Option
NEW QUESTION # 66
An insurance company decides to use calculation procedures and matrices to calculate premium costs for new Insurance policies. Prices change very frequently, resulting In multiplecopies of the rating or pricing tables.
What is an advantage of calculation procedures that the consultant should highlight in this scenario?
- A. Allows AI integration to calculate next best offer using policy attributes
- B. Allows multiple versions that will execute based on when the request is made
- C. Allows aggregate functions
- D. Allows text concatenation using algebraic operators
Answer: B
Explanation:
An advantage of calculation procedures that the consultant should highlight in this scenario is that they allow multiple versions that will execute based on when the request is made. A calculation procedure can have different versions with different effective dates, which determine when they are active or inactive. This way, the calculation procedure can use different rating or pricing tables depending on the date of the request, and handle frequent changes in prices
NEW QUESTION # 67
A Salesforce Omnistudio Consultant is tasked with integrating Salesforce Knowledge into an Omniscript to allow users to search and view Salesforce Knowledge Articles.
What must be enabled in the organization for the consultant to activate Knowledge in an Omniscript?
- A. Salesforce Classic
- B. Salesforce Lightning
- C. Omniscript Designer
- D. Salesforce Knowledge
Answer: D
Explanation:
* Salesforce Knowledge (A) must be enabled in the org to allow OmniScripts to retrieve and display Knowledge Articles.
* Once Salesforce Knowledge is activated, OmniScripts can fetch Knowledge Articles using DataRaptors or Integration Procedures and display search results dynamically based on user inputs.
* B. OmniScript Designer - This is a tool for building OmniScripts but does not enable Knowledge functionality.
* C. Salesforce Classic - OmniScripts are designed for Salesforce Lightning, and enabling Classic is not required.
* D. Salesforce Lightning - While OmniStudio works in Lightning, enabling Salesforce Lightning is not what activates Knowledge in OmniScripts.
Comprehensive and Detailed In-Depth Explanation:Why not the other options?? Salesforce OmniStudio Reference:
* Enabling Salesforce Knowledge
* Using Salesforce Knowledge in OmniScripts
NEW QUESTION # 68
A company needs to implement new verification processes for contacts in their org. This process relies on three Contact record types: Recruiter, Candidate, and Trainer. The verification process is different for each type of contact. For example, recruiters must pass a background check; trainers must complete mandatory training classes, and candidates must achieve certifications.
Which OmniStudio tools should the consultant recommend to meet these requirements?
- A. Specific FlexCards with Actions for each type of Contact
- B. Single FlexCard with an Action to invoke an OmniScript
- C. Single OmniStudio Action that invokes separate Omniscripts
- D. Multiple OmniStudio Actions that invoke separate OmniScripts
Answer: D
Explanation:
The OmniStudio tools that should be recommended to meet these requirements are single OmniStudio Action that invokes separate Omniscripts. OmniStudio Action can be used to conditionally launch different Omniscripts based on the record type of the contact. Omniscripts can be used to implement the verification processes for each type of contact. Specific FlexCards with Actions for each type of Contact would require creating redundant FlexCards and Actions for each record type. Multiple OmniStudio Actions that invoke separate Omniscripts would require creating redundant Actions for each record type. Single FlexCard with an Action to invoke an Omniscript would not allow for different verification processes based on the record type.
NEW QUESTION # 69
A business Implements FlexCards in their customer 360° view. The business wants to add a new action to on the FlexCards that redirects users to an external web page.
Which type of action should the consultant recommend to meet this new requirement?
- A. URL
- B. Event
- C. Redirect
- D. Navigate
Answer: D
Explanation:
The type of action that the consultant should recommend to meet this new requirement is Navigate. A Navigate action is a button or a link that can redirect the user to another web page or URL. The consultant can use a Navigate action to add a new action to the FlexCards that redirects users to an external web page
NEW QUESTION # 70
Which element retrieves data from a Salesforce picklist in an org?
- A. Mark this item for later review.
- B. Lookup
- C. DataRaptor Extract Action
- D. Select
- E. Calculation Action
Answer: D
Explanation:
In Salesforce OmniStudio, the Select element within an OmniScript is specifically designed to retrieve and display picklist values from a Salesforce object field, allowing users to choose from a predefined list of options. This element is used to create a dropdown or picklist interface in an OmniScript, enabling users to interact with Salesforce data by selecting a single value from the available options.
Here's why Select is the correct answer:
* The Select element in OmniScript supports multiple methods to populate its options, including retrieving values directly from a Salesforce picklist field. According to the official Salesforce OmniStudio documentation, you can configure the Select element's "Option Source" to "SObject," which allows it to fetch picklist values from a specified Salesforce object and field. For example, if you have a picklist field like Industry on the Account object, the Select element can retrieve all active picklist values (e.g., "Technology," "Healthcare," etc.) and present them as a dropdown to the user.
* The Select element is highly flexible and supports three option source types:
* Manual: Manually defined label-value pairs.
* SObject: Retrieves options from a Salesforce object field (such as a picklist).
* Custom: Uses an Apex controller for more complex logic.When set to "SObject," it directly queries the Salesforce schema to pull the picklist metadata, ensuring the values reflect what's defined in the org.
Now, let's examine why the other options are incorrect:
* A. DataRaptor Extract Action: A DataRaptor Extract is a powerful tool in OmniStudio used to retrieve data from Salesforce objects, transform it, and pass it to an OmniScript or FlexCard. While it can retrieve picklist data as part of a broader dataset (e.g., extracting a record with a picklist field value), it is not an "element" within an OmniScript, nor is it specifically designed to display or interact with picklist values in a user interface. Instead, it operates behind the scenes as a data retrieval mechanism.
The Select element, however, is the UI component that presents those values to the user.
* B. Lookup: The Lookup element in OmniScript is used to search for and select a record from a Salesforce object based on user input (e.g., finding an Account by name). It does not retrieve or display picklist values from a field; it retrieves entire records. While it can indirectly involve picklist fields as part of the record data, its primary purpose is record selection, not picklist value retrieval for display.
* D. Calculation Action: A Calculation Action in OmniScript performs mathematical or logical operations based on user input or data (e.g., adding two numbers or concatenating strings). It does not retrieve data from Salesforce picklist fields or interact with them directly. Its role is computation, not data retrieval or presentation.
The official Salesforce OmniStudio documentation, specifically the "OmniScript Elements" section, highlights the Select element as the appropriate choice for working with picklist fields in a guided process.
For instance, in a scenario where a user needs to choose a Case Reason from a picklist, the Select element fetches the active values (e.g., "Billing Issue," "Technical Support") from the Reason field on the Case object and renders them as a dropdown.
References:
* Salesforce OmniStudio Documentation: OmniScript Elements Reference - Details the Select element and its SObject option source capabilities.
* Salesforce OmniStudio Developer Guide: DataRaptors - Explains DataRaptor Extract's role in data retrieval, distinct from UI elements like Select.
* Salesforce Help: OmniScript Designer - Describes how to configure the Select element to connect to Salesforce picklist fields.
NEW QUESTION # 71
A company wants to create a new customer buying journey for their website. The buying journey should include the following functionality:
* Allow the user to enter contact and address information
* Require the user to enter age, gender, and optionally income bracket
* Compute a discount percentage per product based on the customer data provided
* Save the list of suggested products including discounts
Which three OmniStudio tools should the consultant use to design a solution that meets these requirements?
Choose 3 answers
- A. FlexCard
- B. OmniScript
- C. OmniStudio Action
- D. Integration Procedures
- E. Calculation Procedures and Matrices
Answer: B,C,E
Explanation:
The correct OmniStudio tools to design a solution that meets these requirements are OmniScript, Calculation Procedures and Matrices, and OmniStudio Action. OmniScript can be used to create a user interface for capturing customer information and displaying suggested products. Calculation Procedures and Matrices can be used to compute the discount percentage per product based on the customer data provided. OmniStudio Action can be used to save the list of suggested products including discounts to Salesforce or an external system. Integration Procedures are not needed for this scenario, as there is no data integration involved.
FlexCard is not relevant for this scenario, as it is used to display contextual data on record pages.
NEW QUESTION # 72
A business has a requirement to display cases in a console for service agents. Cases can have avariety of statuses, including Active, Closed, or Escalated. When a case is Closed, agents need to be able to reopen the case. When the case is Active or Escalated, agents should not have the option to reopen the case.
Which FlexCard functionality can be used to meet this requirement?
- A. Conditional View
- B. Flyouts
- C. State
- D. Styling
Answer: A
Explanation:
The FlexCard functionality that can be used to meet this requirement is Conditional View. A Conditional View is a property that determines whether a FlexCard element, such as a field or an action, is visible or hidden based on certain conditions. The consultant can use a Conditional View to show or hide the reopen case action based on the status of the case
NEW QUESTION # 73
Agents for an insurance company need to know the current and past weather conditions when creating claims for customers. The consultant implements a FlexCard for weather conditions in the console to ensure the agents have access to the information. The FlexCard needs to provide fields extracted from a weather API and an account field from Salesforce.
According to best practice, what data source should be used?
- A. REST
- B. DataRaptor Extract
- C. Integration Procedure
- D. Streaming API
Answer: C
Explanation:
An Integration Procedure is the best data source to use for a FlexCard that needs to provide fields from both an external API and a Salesforce object. An Integration Procedure can combine multiple DataRaptor actions, such as Extract, Transform, and Load, and also invoke REST or SOAP services. This way, the FlexCard can display data from different sources in one place
NEW QUESTION # 74
You want to update 500 Leads through a Data Loader. In the CSV file, you have three columns (ID, Email, and Phone). Also, there are some blank values in the rows (some records do not have email, and some do not have a phone). You do not want null values in the records when updating the values. Which of the following options should you use to do this?
- A. Open Data Loader --> Setting --> Check the "Ignore Null Values" checkbox.
- B. Open Data Loader --> Setting --> Uncheck the "Insert Null Values" checkbox.
- C. Modify the CSV file and remove the records which have null values, and update them manually.
- D. Null values do not get updated through Data Loader.
- E. Null values cannot be ignored. If they are present in CSV, they get updated as null.
Answer: B
Explanation:
The requirement is to update 500 Leads using Data Loader, ensuring that blank (null) values in the CSV file (for Email or Phone) do not overwrite existing values in Salesforce records. The Salesforce Data Loader provides a specific setting to control this behavior, making A the correct answer.
Here's why A. Open Data Loader --> Setting --> Uncheck the "Insert Null Values" checkbox is the correct answer:
* Data Loader Behavior: By default, when you update records via Data Loader, blank values in the CSV file are treated as nulls and will overwrite the corresponding fields in Salesforce with null, replacing any existing data. For example, if a Lead record has Phone = "555-1234" and the CSV has a blank Phone column for that ID, the update will set Phone = null unless configured otherwise.
* Insert Null Values Setting: The "Insert Null Values" checkbox in Data Loader's Settings (found under Settings > Settings) determines whether blank CSV values are treated as nulls.
* Checked: Blank values in the CSV overwrite existing field values with null (default behavior).
* Unchecked: Blank values in the CSV are ignored, and the existing field values in Salesforce are preserved.
* Meeting the Requirement: Unchecking "Insert Null Values" ensures that if a row in the CSV has a blank Email or Phone, those fields in the corresponding Lead record remain unchanged (e.g., retaining Email = "[email protected]" instead of setting it to null). Only non-blank values in the CSV (e.g., a new Phone number) will update the records.
* Process: Open Data Loader, go to Settings > Settings, uncheck "Insert Null Values," then proceed with the Update operation using the CSV file with ID, Email, and Phone columns.
Now, let's examine why the other options are incorrect:
* B. Null values cannot be ignored. If they are present in CSV, they get updated as null: This is false.
Data Loader provides the "Insert Null Values" setting specifically to ignore nulls when unchecked, contradicting this option.
* C. Open Data Loader --> Setting --> Check the "Ignore Null Values" checkbox: There's no "Ignore Null Values" checkbox in Data Loader Settings. The relevant option is "Insert Null Values," which must be unchecked (not checked) to ignore nulls, making this option incorrect due to inaccurate terminology and logic.
* D. Modify the CSV file and remove the records which have null values, and update them manually:
This is a workaround, not a best practice. Manually editing 500 records is inefficient and error-prone when Data Loader's built-in setting can handle this automatically.
* E. Null values do not get updated through Data Loader: This is false. By default, null values do update fields unless the "Insert Null Values" setting is unchecked.
References:
* Salesforce Data Loader Guide: Settings - Details the "Insert Null Values" option and its impact on updates.
* Salesforce Help: Updating Records with Data Loader - Explains handling null values in CSV imports
/updates.
NEW QUESTION # 75
......
Plat-Con-201 dumps Free Test Engine Verified By It Certified Experts: https://passleader.testpassking.com/Plat-Con-201-exam-testking-pass.html