Skip to main content

This content has been archived and is no longer being updated. Links may not function; however, this content may be relevant to outdated versions of the product.

Support Article

Local action is running on all conditions

SA-17005

Summary



Dropdown property(list source is a datapage) is configured with onchange event Run Activity and call Local Action feature.
Before calling local action a when condition is set that is when a property(eg prop1) has value "1", then only local action will be triggered.
This local action is triggered even if when condition is failing i.e the property is not equal to 1.
The property value is getting updated inside the activity before the when condition is checked.

Error Messages



NA

Steps to Reproduce



1. Create a dropdown property.
2. Add a change event and add "Run Activity", "Launch Local Action" to it.
3. In Activity modify a property value and use that same property in a when condition before launching "Local Action"


Root Cause



A defect in Pegasystems’ code or rules: When condition does not take the updated property value if the property is being modified in same action .

Resolution



Perform the following local-change: 

Run script which will call activity from javascript and in turn the activity will return the updated value.Based on that value perform when logic and trigger button click which has open modal dialog action configured in it.

Below is the script used to resolve the issue:-

<script>
function OpenDialog(newParam){
var setPropURL = new SafeURL("className.activity");
setPropURL.put("ParamPropertyName","value");

var callback = {
success: function(oResponse) {
strResponse = trim(oResponse.responseText);
if(srtResponse === "0"){
$(".custom_btn").find("button").click();
},
failure: function(oResponse) {
console.log("Error!");
}
};
var request = pega.util.Connect.asyncRequest('POST', setPropURL.toURL(),callback);
}

Published January 31, 2016 - Updated October 8, 2020

Was this useful?

50% found this useful

Have a question? Get answers now.

Visit the Collaboration Center to ask questions, engage in discussions, share ideas, and help others.

Did you find this content helpful?

Want to help us improve this content?

We'd prefer it if you saw us at our best.

Pega Community has detected you are using a browser which may prevent you from experiencing the site as intended. To improve your experience, please update your browser.

Close Deprecation Notice
Contact us