Exclude Out-of-the-box PSP Parameters (Strategy Designer)
Strategy Designer offers you to use some of the out-of-the-box parameters calculated by PSP as blocks in your strategies. But if they are not configured properly in the PSP, they will not work and will result in errors in Strategy Designer. In such a case, it is better to hide them from the toolbox so the users do not use them.
If you do not want to use them, you can specify them in the list of excluded parameters and Strategy Designer will hide them from the toolbox.
The following PSP parameters are supported:
PRODUCT_COST – comes from the standard https://pricefx.atlassian.net/wiki/spaces/ACC/pages/4535258438
BASE_PRICE – comes from the standard https://pricefx.atlassian.net/wiki/spaces/ACC/pages/4535258453
PLUS_FOR_PRODUCT_ABSOLUTE – comes from the https://pricefx.atlassian.net/wiki/spaces/ACC/pages/4535258289
PLUS_FOR_PRODUCT_PERCENTAGE – comes from the https://pricefx.atlassian.net/wiki/spaces/ACC/pages/4535258289
PRICE_INCREASE_ABSOLUTE – comes from the https://pricefx.atlassian.net/wiki/spaces/ACC/pages/4535258379
PRICE_INCREATE_PERCENTAGE – comes from the https://pricefx.atlassian.net/wiki/spaces/ACC/pages/4535258379
Here is an example of the configuration object that hides the last four parameters:
"configuration": {
"excludedParameters": [
"PLUS_FOR_PRODUCT_ABSOLUTE",
"PLUS_FOR_PRODUCT_PERCENTAGE",
"PRICE_INCREASE_PERCENTAGE",
"PRICE_INCREASE_ABSOLUTE"
]
}
You can also easily hide all PSP parameters like this:
"configuration": {
"excludedParameters": "ALL"
}