Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
ReferencedDashboard
Parent Type
File Suffix and Directory Location
ReferencedDashboard components have the suffix .refdash and are stored in the wave folder.
Version
ReferencedDashboard components are available in API version 57.0 and later.
Special Access Rules
To view referenced dashboards, you need the Enables Tableau Dashboards in CRM Analytics permission.
Fields
| Field Name | Field Type | Description |
|---|---|---|
| application | string | Required. The internal name of the Analytics app. |
| description | string | The dashboard description that appears in the user interface. |
| embedUrl | string | Required. The URL to the referenced dashboard. |
| masterLabel | string | Required. The dashboard name that appears in the user interface. |
| templateAssetSourceName | string | Links the dashboard to the template used to create it. Null for assets not created from a template. |
| visibility | string | The visibility of the dashboard. Valid values are: ALL and LIMITED. |
Declarative Metadata Sample Definition
The following is an example of a WaveDashboard component.
1<?xml version="1.0" encoding="UTF-8"?>
2<ReferencedDashboard xmlns="http://soap.sforce.com/2006/04/metadata" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3 <application>my_app</application>
4 <masterLabel>ReferencedDashboard1</masterLabel>
5 <description>My Tableau Dashboard</description>
6 <embedUrl>https://public.tableau.com/views/Superstore_24/Overview</embedUrl>
7 <visibility>ALL</visibility>
8</ReferencedDashboard>Wildcard Support in the Manifest File
This metadata type supports the wildcard character * (asterisk) in the package.xml manifest file. For information about using the manifest file, see Deploying and Retrieving Metadata with the Zip File.