Newer Version Available
ActionableListDefinition
Parent Type
File Suffix and Directory Location
ActionableListDefinition components have the suffix .actionableListDefinition and are stored in the actionableListDefinitions folder.
Version
ActionableListDefinition components are available in API version 57.0 and later.
Fields
| Field Name | Description |
|---|---|
| actionableListDatasetColumns |
|
| actionableListMemberStatuses |
|
| batchCalcJobDefinition |
|
| datasetName |
|
| edgeMart |
|
| isActive |
|
| masterLabel |
|
| objectName |
|
ActionableListDatasetColumn
Represents the information about the columns in a dataset associated with an actionable list.
| Field Name | Description |
|---|---|
| dataDomain |
|
| dataType |
|
| displayOrder |
|
| isDefault |
|
| isGroupedByListDefObj |
|
| IsTypeAheadSearchEnabled |
|
| objectName |
|
| sourceColumnApiName |
|
| sourceFieldName |
|
ActionableListMemberStatus
Represents the status and the corresponding status icon details of an individual actionable list member.
| Field Name | Description |
|---|---|
| iconName |
|
| status |
|
Declarative Metadata Sample Definition
The following is an example of a ActionableListDefinition component.
1<?xml version="1.0" encoding="UTF-8"?>
2<ActionableListDefinition
3 xmlns="http://soap.sforce.com/2006/04/metadata">
4 <actionableListDatasetColumns>
5 <isDefault>true</isDefault>
6 <sourceFieldName>NewColumn1</sourceFieldName>
7 </actionableListDatasetColumns>
8 <actionableListDatasetColumns>
9 <sourceColumnApiName>ApiName</sourceColumnApiName>
10 <dataDomain>Dimensions</dataDomain>
11 <isDefault>false</isDefault>
12 <sourceFieldName>NewColumn2</sourceFieldName>
13 <objectName>Account</objectName>
14 <displayOrder>1</displayOrder>
15 <dataType>Text</dataType>
16 </actionableListDatasetColumns>
17 <actionableListMemberStatuses>
18 <iconName>NewMember1</iconName>
19 <status>Active</status>
20 </actionableListMemberStatuses>
21 <isActive>true</isActive>
22 <masterLabel>NewMember2</masterLabel>
23 <objectName>Account</objectName>
24 <isProtected>true</isProtected>
25 <batchCalcJobDefinition>Test1</batchCalcJobDefinition>
26 <datasetName>AccountDef</datasetName>
27</ActionableListDefinition>The following is an example package.xml that references the previous definition.
1<?xml version="1.0" encoding="UTF-8"?>
2<Package xmlns="http://soap.sforce.com/2006/04/metadata">
3 <types>
4 <members>*</members>
5 <name>ActionableListDefinition</name>
6 </types>
7 <version>62.0</version>
8</Package>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.