Newer Version Available
ActionableListDefinition (Beta)
Parent Type
This type extends the Metadata
metadata type and inherits its fullName field.
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 |
|
| isActive |
|
| masterLabel |
|
| objectName |
|
ActionableListDatasetColumn
Represents the information about the columns in a dataset associated with an actionable list.
| Field Name | Description |
|---|---|
| dataDomain |
|
| isDefault |
|
| 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 </actionableListDatasetColumns>
15 <actionableListMemberStatuses>
16 <iconName>NewMember1</iconName>
17 <status>Active</status>
18 </actionableListMemberStatuses>
19 <isActive>true</isActive>
20 <masterLabel>NewMember2</masterLabel>
21 <objectName>Account</objectName>
22 <isProtected>true</isProtected>
23 <batchCalcJobDefinition>Test1</batchCalcJobDefinition>
24 <datasetName>AccountDef</datasetName>
25</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>57.0</version>
8</Package>