Health-Cloud-Accredited-Professional Practice Test

Salesforce Spring 25 Release -
Updated On 1-Jan-2026

228 Questions

Which steps should a salesforce administrator complete to set up a warehouse that serves as a product fulfillment location to salesforce representative in a specific region, irrespective of the account? (Choose three)

A. Create Inventory Location and add Visitor Address as Location Address.

B. Create Record in Product Fulfillment Location.

C. Set-up Product Transfer and product request.

D. Select inventory location while creating visit

E. Create a product item entry inventory, a single entry for each product that will be replenished from industry.

A.   Create Inventory Location and add Visitor Address as Location Address.
B.   Create Record in Product Fulfillment Location.
E.   Create a product item entry inventory, a single entry for each product that will be replenished from industry.

Explanation:

A. Create Inventory Location and add Visitor Address as Location Address:
A Location record with the Inventory Location checkbox selected is the foundational object for representing a physical place where inventory is stored, like a warehouse. To ensure the sales reps in a specific region can find it, you must accurately add the Visitor Address to the Location record. This allows for geographical searches and proper product transfer management.
B. Create Record in Product Fulfillment Location:
The Product Fulfillment Location object links a specific product to an inventory location and a user (the sales representative responsible for it). By creating a record here, you're explicitly defining which products a particular sales rep can get from a specific warehouse. The key insight from the question is that it needs to serve reps in a specific region, irrespective of the account. This is precisely what the Product Fulfillment Location record does by associating the inventory location and the user.
E. Create a product item entry inventory, a single entry for each product that will be replenished from industry:
A Product Item record represents the actual inventory of a specific product at a given location. To have products to fulfill from the warehouse, you must create a Product Item record for each product that will be stored there. This record tracks the quantity on hand and links the product to the inventory location you created in step A.

Why Other Options Are Incorrect
C. Set-up Product Transfer and product request:
These are processes that happen after the fulfillment location and inventory are set up. A sales rep would use a Product Request to ask for an item, and a Product Transfer would be used to move an item from the warehouse (the fulfillment location) to the sales rep's inventory. These are actions, not setup steps.
D. Select inventory location while creating visit:
Selecting an inventory location during a visit is an action a sales rep performs to check for products available for an account they are visiting. This is not a setup step for the warehouse itself. The warehouse must be set up and stocked before a visit can reference it.

In which three ways can users access Provider Management standard objects? (Choose three)

A. By using Service Cloud

B. By assigning Health Cloud Platform Permission set licenses.

C. By assigning Health Cloud Foundation Permission set.

D. By assigning the Provider Permission set.

E. By using Health Cloud.

B.   By assigning Health Cloud Platform Permission set licenses.
C.   By assigning Health Cloud Foundation Permission set.
E.   By using Health Cloud.

Explanation:

Provider Management is a core component of Health Cloud. Access to its standard objects (like Provider (Contact), Provider Affilation, Care Provider Searchable Field, etc.) is governed by Health Cloud-specific user entitlements and permissions.

B. By assigning Health Cloud Platform Permission set licenses (PSLs):
This is the fundamental licensing requirement. The Health Cloud Platform PSL is a user permission set license that grants a user the right to access the Health Cloud application and its underlying data model, including the Provider Management objects. Without this PSL assigned, a user cannot access these features, regardless of other permissions.
C. By assigning Health Cloud Foundation Permission set:
This is the fundamental permissions requirement. The "Health Cloud Foundation" permission set (or a similar baseline permission set provided by Salesforce) contains the object-level and field-level permissions (e.g., Read, Create, Edit) necessary to actually view and work with the Provider Management objects. A user must have both the PSL (Option B) and an appropriate permission set like this one.
E. By using Health Cloud:
This is the correct abstraction. "Using Health Cloud" implies that the user has been properly licensed (PSL) and permissioned (Permission Set) and is working within the Health Cloud application context (e.g., via the Health Cloud app or console). This is the holistic way users access these objects.

Why the other options are incorrect:
A. By using Service Cloud:
While Health Cloud is built on the Service Cloud platform, simply using the Service Cloud console or application does not grant access to the Health Cloud-specific schema and objects. Provider Management objects are not part of standard Service Cloud. A user must be specifically licensed for and given access to Health Cloud.
D. By assigning the Provider Permission set:
This is a distractor. There is no standard, out-of-the-box permission set named "Provider Permission set." Access is granted through the more foundational Health Cloud permission sets and PSLs mentioned in the correct answers.

Reference:
Salesforce Help articles on "Assign Health Cloud User Permissions" and the official Health Cloud Implementation Guide detail the licensing (PSL) and permissioning steps required for user access. This is a fundamental concept for the "Access Management" section of the AP-211 exam.

What is the latest FHIR model aligned to Health Cloud?

A. V5

B. V4

C. V3

D. V1

B.   V4

Explanation:

The latest Fast Healthcare Interoperability Resources (FHIR) model aligned with Salesforce Health Cloud is FHIR V4 (also referred to as FHIR Release 4 or R4). Salesforce Health Cloud supports FHIR R4 for its interoperability features, enabling standardized data exchange for patient records, care plans, and other healthcare data. This version is widely adopted in healthcare systems for its robust support of modern APIs and data formats, making it the most relevant for Health Cloud implementations.

Why the other options are incorrect:
A. V5: There is no FHIR V5 as of the latest updates. FHIR R5 is in draft status and not yet fully supported in Health Cloud.
C. V3: FHIR V3 (or R3) is an older version and not the latest aligned with Health Cloud, which has moved to R4 for enhanced capabilities.
D. V1: FHIR V1 is an outdated version and not relevant for current Health Cloud implementations.

Reference:
Salesforce Health Cloud documentation on FHIR interoperability (Salesforce Help).
Health Cloud Accredited Professional exam resources, which cover FHIR standards for data integration.
Official HL7 FHIR documentation confirming R4 as the current standard (hl7.org).

A bug is assigned to a developer stating that when an address contains data in the Address Line 2 field, the FlexCard display adds additionalline, causing formatting issues.
How should the developer handle this in a DataRaptor without changing the underlying data structures?

A. Modify the Extract DataRaptor to concatenate the address fields by using a formula.

B. Replace the Extract DataRaptorwith a Transform DataRaptor to convert the data as needed.

C. Create a new Turbo Extract DataRaptor to trim the Address data in both fields.

D. Add a Load DataRaptor to write the data into one new custom field.

A.   Modify the Extract DataRaptor to concatenate the address fields by using a formula.

Explanation:

A. Modify the Extract DataRaptor with a formula ✅
Best practice: Use formulas in DataRaptor Extract to combine multiple fields (Address Line 1 + Address Line 2) into a single display-friendly format.
This solves the extra line bug without modifying database schema or requiring downstream loads.

B. Replace Extract with Transform DR
Transform DR is used for data transformations between external systems and Salesforce objects.
Overkill here. We don’t need to replace; we can solve this with a simple Extract formula.

C. Create a new Turbo Extract DR
Turbo Extract is a lightweight, no-formula DR for high-performance read-only use cases.
Since we need a formula transformation, Turbo DR is not appropriate (formulas aren’t supported).

D. Add a Load DataRaptor to write into a new custom field
This would change the data model (new custom field) and write data unnecessarily.
The requirement explicitly says: without changing the underlying data structures.

Reference:
Salesforce OmniStudio Developer Guide:
Use DataRaptor Formulas to Transform Extracted Data
Best practice: “Formulas allow combining and formatting fields at runtime without modifying data models.”

Exam Tip:
If the requirement says “fix display issue without changing data structures” → always think DataRaptor Extract with formulas (not Turbo, not Load).

Bloomington Caregivers want to offer its patients remote monitoring to bring data from patient devices into Health Cloud. Which set of records should an administrator populate to implement this functionality?

A. Units of Measure, Remote Monitoring Device Types, Care Observations, Code Sets

B. Code Sets, Units of Measure, Care Metric Targets, Care Observations

C. Code Sets, Biometrics, Care Observations, Chart Metrics

D. Units of Measure, Code Sets, Remote Monitoring Device Types, Care Episodes

B.   Code Sets, Units of Measure, Care Metric Targets, Care Observations

Explanation:

To implement remote monitoring functionality in Health Cloud, an administrator should populate the following records:

Code Sets: These are records that define the codes and descriptions for various types of data, such as care metrics, care observations, or units of measure. Code sets help standardize the data and enable interoperability with external systems1.

Units of Measure: These are records that define the units of measurement for various types of data, such as weight, blood pressure, or temperature. Units of measure help convert the data into a common format and enable comparison and analysis2.

Care Metric Targets: These are records that define the target values or ranges for various types of care metrics, such as blood glucose level, heart rate, or oxygen saturation. Care metric targets help monitor the patient’s health status and identify any deviations or risks3.

Care Observations: These are records that store the data collected from patient devices, such as blood pressure monitors, glucose meters, or pulse oximeters. Care observations help track the patient’s health progress and provide insights for care management4. Remote Monitoring Device Types, Biometrics, Chart Metrics, or Care Episodes are not records that are required for remote monitoring functionality.

Health-Cloud-Accredited-Professional Exam Questions - Home Previous
Page 7 out of 46 Pages