getTacticKPIs

This method returns the list of editable and editable calculated KPI's on tactic level for the input ppromotion template and tactic template. It returns all the possible KPI's that are part of the tactic template defined KPI subset in the order defined by the sort field.

Input Parameters

Name Description
promoTemplate SFDC ID of the promotion template.
tacticTemplate SFDC ID of the tactic template.

Input Sample

{
    "class": "NewPromotionWizardCallable",
    "method": "getTacticKPIs",
    "params": {
        "promoTemplate": "{! promoTemplate.Id }",
        "tacticTemplate": "{! tacticTemplate.Id }"
    },
    "cache": true
}

Response Sample

[
    {
        "ValueDecimalPlaces": 10,
        "Name": "Variable Amount",
        "Id": "ProVarAmountPriceCut"
    },
    {
        "ValueDecimalPlaces": 2,
        "Name": "Fixed Amount",
        "Id": "ProFixedAmountLumpSum"
    }
]

Response Properties

This method returns a list of items with the following properties:
Name Description
Id KPI name
Name KPI description label.
ValueDedimalPlaces

Maximum amount of decimal places expected for a value of the KPI based on the KPI type:

Possible Values:
  • Money: 2
  • Percentage: 2,
  • Price: 2
  • Volume: 0
  • None: 10