AcctMgrTargetSettings
Represents the settings of account manager targets. These
settings define the distribution frequency, the hierarchy of team members for assignments, and
the default price book of account manager targets. This type also displays the record usage
details by account manager targets in your Salesforce org. This type extends the Metadata
metadata type and inherits its fullName field.
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.
<?xml version="1.0" encoding="UTF-8"?>
<AcctMgrTargetSettings xmlns="http://soap.sforce.com/2006/04/metadata">
<periodType>Month</periodType>
<teamMemberHierarchyType>ManagerHierarchy</teamMemberHierarchyType>
</AcctMgrTargetSettings>
The following is an example package.xml that references the previous definition.
<?xml version="1.0" encoding="UTF-8"?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
<types>
<members>*</members>
<name>AcctMgrTargetSettings</name>
</types>
<version>49.0</version>
</Package>