Accelerate Agents 1.1.1

This document summarizes major improvements and fixes introduced in the Accelerate Agents release version.

Version

1.1.1

Release Date

September 19, 2025

In this document:

Upgrade Notes

Update Action Item Extensions

  1. Launch the IntelliJ IDEA with the Pricefx Studio plugin.

  2. Go to Tool Window.

  3. Click PfxFetch.

  4. Fetch the existing ActionItemAttribute extensions.

  5. Go to ActionItemAttribute.

  6. Find the attributeExtensions with the pfxAcc_AG_ prefix.

    attributeExtension___pfxAcc_AG_benchmarkImpact.json
    attributeExtension___pfxAcc_AG_benchmarkImpactMeasureName.json
    attributeExtension___pfxAcc_AG_costsImpact.json
    attributeExtension___pfxAcc_AG_costsImpactMeasureName.json
    attributeExtension___pfxAcc_AG_othersImpact.json
    attributeExtension___pfxAcc_AG_othersImpactMeasureName.json
    attributeExtension___pfxAcc_AG_profitImpact.json
    attributeExtension___pfxAcc_AG_profitImpactMeasureName.json
    attributeExtension___pfxAcc_AG_revenueImpact.json
    attributeExtension___pfxAcc_AG_revenueImpactMeasureName.json
    attributeExtension___pfxAcc_AG_trendsImpact.json
    attributeExtension___pfxAcc_AG_trendsImpactMeasureName.json
    
  7. Update readOnly attribute to true.

    JSON
    "readOnly" : true,
    
  8. Add the following newly added attributeExtensions files:

    1. attributeExtension___pfxAcc_AG_targetImpact.json

      JSON
      {
        "fieldType" : 1,
        "fieldValueOptions" : { },
        "formatType" : "NUMERIC",
        "label" : "pfxAcc_AG_targetImpact",
        "labelTranslations" : {
          "" : "pfxAcc_AG_actionItem_attributeExtension_targetImpact"
        },
        "readOnly" : true,
        "requiredField" : false
      }
      
    2. attributeExtension___pfxAcc_AG_targetImpactMeasureName.json

      JSON
      {
        "fieldType" : 2,
        "formatType" : "TEXT",
        "label" : "pfxAcc_AG_targetImpactMeasureName",
        "labelTranslations" : {
          "" : "pfxAcc_AG_actionItem_attributeExtension_targetImpactMeasureName"
        },
        "readOnly" : true,
        "requiredField" : false
      }
      
  9. Use PfxDeploy to deploy changes made to your partition.

Update Advanced Configuration Options

  1. Login to your partition.

  2. Go to Administration > Configuration > Advanced Configuration Options.

  3. Search for pfxAcc_AG_actionItem_impactDefinition_attributeExtension_mappings option.

  4. Click Edit.

  5. Add the following mappings:

    JSON
    {
        "Profit": {
            "actionItemAttributeExtensionMeasureName": "pfxAcc_AG_profitImpactMeasureName",
            "actionItemAttributeExtensionImpact": "pfxAcc_AG_profitImpact",
            "optionOrder": 1
        },
        "Revenue": {
            "actionItemAttributeExtensionMeasureName": "pfxAcc_AG_revenueImpactMeasureName",
            "actionItemAttributeExtensionImpact": "pfxAcc_AG_revenueImpact",
            "optionOrder": 2
        },
        "Costs": {
            "actionItemAttributeExtensionMeasureName": "pfxAcc_AG_costsImpactMeasureName",
            "actionItemAttributeExtensionImpact": "pfxAcc_AG_costsImpact",
            "optionOrder": 3
        },
        "Trends": {
            "actionItemAttributeExtensionMeasureName": "pfxAcc_AG_trendsImpactMeasureName",
            "actionItemAttributeExtensionImpact": "pfxAcc_AG_trendsImpact",
            "optionOrder": 4
        },
        "Target": {
            "actionItemAttributeExtensionMeasureName": "pfxAcc_AG_targetImpactMeasureName",
            "actionItemAttributeExtensionImpact": "pfxAcc_AG_targetImpact",
            "optionOrder": 5
        },
        "Benchmark": {
            "actionItemAttributeExtensionMeasureName": "pfxAcc_AG_benchmarkImpactMeasureName",
            "actionItemAttributeExtensionImpact": "pfxAcc_AG_benchmarkImpact",
            "optionOrder": 6
        },
        "Others": {
            "actionItemAttributeExtensionMeasureName": "pfxAcc_AG_othersImpactMeasureName",
            "actionItemAttributeExtensionImpact": "pfxAcc_AG_othersImpact",
            "optionOrder": 7
        }
    }
    
  6. Click Save Changes.

Update Internalization File

  1. Launch the IntelliJ IDEA with the Pricefx Studio plugin.

  2. Go to Tool Window.

  3. Click PfxFetch.

  4. Fetch the existing Internalization files.

  5. Open the en.json internalization file.

  6. Add the following label translations:

    JSON
    {
      "key" : "pfxAcc_AG_actionItem_attributeExtension_targetImpactMeasureName",
      "overriddenValue" : "Target Impact Measure Name",
      "value" : "Target Impact Measure Name"
    }, {
      "key" : "pfxAcc_AG_actionItem_attributeExtension_targetImpact",
      "overriddenValue" : "Target Impact",
      "value" : "Target Impact"
    }
    
  7. Use PfxDeploy to deploy changes made to your partition.

Fixed Issues

Bug Description

ID

Making changes to the detection rules in a Dashboard Agent causes significant performance delays.

PFPCS-9891

The Impact Type dropdown in the Impact Calculation displays items in an incorrect order.

PFPCS-9916

The action item attribute extension for impacts is not read-only.

PFPCS-9922

When an Agent is recalculated with an updated Impact Definition, the old value in the Action Item Attribute Extension is not removed.

PFPCS-9923

It is not possible to change a Measure in the Impact Calculation table after the calculation is finished in the Summary step.

PFPCS-9924

The PlatformManager shows an incorrect documentation link when deploying the Agents Accelerator.

PFPCS-9927

An error occurs when adding a row to the Impact Calculation table in an Agent's Action Definition.

PFPCS-9933

The Target impact type is missing in the Impact Calculation.

PFPCS-9934

The Impact value does not show in the Applied Rules Results summary for a Dashboard Agent.

PFPCS-9939