Newer Version Available
Mass Update Advance Account Forecast Action
Update a measure of AdvAccountForecastFact records based on filter
condition of the selected list view.
For more information about how the massUpdateAdvAccountForecast action calculates the advanced account forecasting, see Use Manufacturing Actions in Flow Builder and Process Builder in Salesforce Help. This action is available in API version 56.0 and later.
To use this resource, you must have the Manufacturing Cloud and Advance Account Forecasting feature are enabled in your Salesforce org. See Enable Advanced Account Forecasting.
Special Access Rules
Supported REST HTTP Methods
- URI
- /services/data/vXX.X/actions/standard/massUpdateAdvAccountForecast
- Formats
- JSON, XML
- HTTP Methods
- POST
- Authentication
- Authorization: Bearer token
Inputs
| Input | Details |
|---|---|
| actionType |
|
| forecastReferenceId |
|
| isPercent |
|
| listViewId |
|
| measureFieldName |
|
| value |
|
Outputs
| Output | Details |
|---|---|
| errors |
|
| isSuccess |
|
Examples
Sample Request
1{"inputs" : [{
2 "actionType": "Increase By",
3 "forecastReferenceId": "0ogT10000000BekIAE",
4 "isPercent": false,
5 "listViewId": "00BT1000000WIUxMAO",
6 "measureFieldName": "custom_measure__c",
7 "value": "1"
8}]}Sample Response
1[ {
2 "actionName" : "massUpdateAdvAccountForecast",
3 "errors" : null,
4 "isSuccess" : true
5} ]