Links may not function; however, this content may be relevant to outdated versions of the product.
Optimizing strategies with allow list functions
When a globally optimized strategy cannot be optimized because its component or components contain expressions with unsupported functions, you can add the functions to the pyWhitelistfunction data transform or change the strategy logic to contain only supported functions.
In Dev Studio, you can verify which components are optimized to decide which functions you want to define as allow list functions on the strategy canvas or on the Global Optimization tab, as shown in the following figures:

Unsupported functions in strategy components

Unsupported function in a strategy component
Cause
A strategy component cannot be optimized when it contains functions that are not on the list of allowed functions. The following functions and the functions that are listed in the pxWhitelistFunction data transform are allowed:
Function | Ruleset | Library | Parameters |
---|---|---|---|
divide | Pega-RULES | Math | (BigDecimal::dividend, BigDecimal::divisor) |
today | Pega-RULES | DateTime | N/A |
normal | Pega-DecisionEngine | Random | N/A |
normal | Pega-DecisionEngine | Random | (double::mean, double::sd) |
random | Pega-DecisionEngine | Random | N/A |
random | Pega-DecisionEngine | Random | (double::min, double::max) |
and | N/A | N/A | (boolean::param...) |
or | N/A | N/A | (boolean::param...) |
getDate | Pega-RULES | DateTime | (String::strStamp) |
DateTimeDifference | Pega-RULES | DateTime | (String::beginTime, String::endTime, String::strPrecision) |
if | N/A | N/A | (boolean::condition, then, otherwise) |

Example of a function that can be optimized in globally optimized strategies
Solution
Investigate the strategy that you want to optimize and consider changing the strategy's logic. You might need to use different strategy components or reconfigure the existing ones to remove references to the functions that cannot be optimized. Alternatively, it might be possible to add these functions to the pyWhitelistFunction data transform that is applied in the pxWhitelistFunction data transform and enable optimization for the component that uses the functions.
Adding a new allow list function
When you add a function to the pyWhitelistFunction data transform, ensure that you comply with the following requirements:
- Use only the following supported parameters and return types for the new function:
- String
- BigDecimal
- java.util.Date
- double
- Double
- int
- Integer
- Boolean
- boolean
- Do not embed any public APIs in the function body.
- Do not modify the StepPage in the function body.
- Ensure that the function does not have any side effects.
- In the navigation panel of Dev Studio, click Records.
- Expand the Data Transform. section and click
- In the list of data transform rules, click pyWhitelistFunction.
- On the Definition tab, place the cursor in one of the first-level rows and click the button.
- Define the new function:
- From the list in the Action column, select Update Page.
- In the Target column, enter: .pyWhiteListFunction
- To propagate values from another page, from the list in the Relation column, select with values from and enter the page name in the Source column.
- Add and fill in the second-level rows with the following properties:
- .pyFunctionName
- .pyMethodName
- .pyLibraryName
- .pyRuleSetName
- .pyReturnType
- .pyParameters
For more information, see Data Transform form - Completing the Definition tab.
- Confirm the changes by clicking Save.
- Rerun the globally optimized strategy.
- On the Test tab of the optimized strategy, do a side-by-side comparison to see differences between non-optimized and optimized results.
The following figure shows a sample configuration of a new allow list function:

Adding a function to the pyWhitelistFunction data transform
For more information, see Activities, libraries and functions.
Previous topic Optimized strategy execution engine compatibility: known issues and fixes Next topic Predictive Analytics Director runs out of allocated memory