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.
AcctMgrTargetSettings
File Suffix and Directory Location
AcctMgrTargetSettings components have the suffix acctMgrTargetSetting and are stored in the acctMgrTargetSettings folder.
Version
AcctMgrTargetSettings components are available in API version 49.0 and later.
Special Access Rules
To use this metadata type, your Salesforce org must have the Manufacturing Cloud license.
Fields
| Field Name | Field Type | Description |
|---|---|---|
| acctMgrPeriodicTargetDstrCnt | int | The number of existing records in the AcctMgrTargetDstr object. |
| periodType | PeriodTypes (enumeration of type string) | Required. Indicates the type of period to use for an account manager target’s
distribution. The valid values are:
|
| pricebookId | string | The ID of the default price book selected for an account manager target distribution by product. |
| teamMemberHierarchyType | TeamMemberHierarchyType (enumeration of type string) | Required. The hierarchy type of team members for account manager target
assignments. The valid values are:
|
Declarative Metadata Sample Definition
The following is an example of a AcctMgrTargetSettings component.
1<?xml version="1.0" encoding="UTF-8"?>
2<AcctMgrTargetSettings xmlns="http://soap.sforce.com/2006/04/metadata">
3 <periodType>Month</periodType>
4 <teamMemberHierarchyType>ManagerHierarchy</teamMemberHierarchyType>
5</AcctMgrTargetSettings>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>AcctMgrTargetSettings</name>
6 </types>
7<version>49.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.