SR-D79397 · Issue 546416
Rule-Utility-Function references updated with library information
Resolved in Pega Version 8.5
The "changeSystemName” operation failed. This was traced to the function “getLocalizedValue” (Rule-Utility-Function) being saved into the PegaFS library due to runtime resolution based on the function signature even though the actual Rule-Utility-Function from “Pega-Rules” ruleset needed to be picked in this case. To ensure the correct ruleset is picked, Rule-Utility-Function references have been updated with library information to resolve the resolution collision scenario.
SR-123681 · Issue 187957
AddTime calendar function corrected for calculating expiry times
Resolved in Pega Version 7.1.8
Using the out-of-the-box @addTime function to calculate expiry time was not calculating the correct time or was reporting a missing calendar when passed a calendar instance. The root cause of this problem was due to the calendar instance not using the time zone field while acquiring Gregorian Calendar in the class CalendarUtility. java. This datetime problem has been fixed.
SR-123815 · Issue 188298
AddTime calendar function corrected for calculating expiry times
Resolved in Pega Version 7.1.8
Using the out-of-the-box @addTime function to calculate expiry time was not calculating the correct time or was reporting a missing calendar when passed a calendar instance. The root cause of this problem was due to the calendar instance not using the time zone field while acquiring Gregorian Calendar in the class CalendarUtility. java. This datetime problem has been fixed.
SR-125851 · Issue 194660
Amended SmartInfo pop-up for auto-dismiss function
Resolved in Pega Version 7.1.8
A SmartInfo pop-up for the "Auto-dismiss on hover away" checkbox contained the message "When this is unchecked a close icon is added to the SmartInfo to explicitly dismiss it. Clicking outside the SmartInfo also dismisses it.", but clicking outside the window did not dismiss it. This pop-up contained incorrect information, and has been modified to remove the information about dismissing the window by clicking outside of it. If the checkbox is unchecked, the close icon will appear and must be used to dismiss the window.
SR-125851 · Issue 193930
Amended SmartInfo pop-up for auto-dismiss function
Resolved in Pega Version 7.1.8
A SmartInfo pop-up for the "Auto-dismiss on hover away" checkbox contained the message "When this is unchecked a close icon is added to the SmartInfo to explicitly dismiss it. Clicking outside the SmartInfo also dismisses it.", but clicking outside the window did not dismiss it. This pop-up contained incorrect information, and has been modified to remove the information about dismissing the window by clicking outside of it. If the checkbox is unchecked, the close icon will appear and must be used to dismiss the window.
SR-125934 · Issue 190270
Adjusted modal dialog height functioning with repeating grid
Resolved in Pega Version 7.1.8
When using a repeat grid to open a modal dialog to add rows, the modal dialog height was getting increased by scroll adjustment always, which should be done only when its scrollHeight is greater than offsetHeight. Code changes have been made in the setModalDialogHeight function to correct this.
SR-126044 · Issue 189648
Rule resolution class search corrected for performFlowACallback function
Resolved in Pega Version 7.1.8
When performing an operation on a grid and then switching to local action, the thread name was being appended as undefined. This was caused by the rules search running on @baseclass instead of the framework class. A null check has been added to the performFlowACallback function to correct this.
SR-126980 · Issue 192477
Chart control validation updated to handle aggregate functions
Resolved in Pega Version 7.1.8
When a chart control contained a Report definition with COUNTDISTINCT in the summarize field, the chart was not displayed at runtime. Manually executing the Report Definition displayed the data and the pie chart as expected. This was found to be an issue with chart control not rendering the chart at run time if the underlying RD source contained an aggregate function. To correct this, the pzIsChartReportColumnValid validate rule has been updated.
SR-126980 · Issue 190876
Chart control validation updated to handle aggregate functions
Resolved in Pega Version 7.1.8
When a chart control contained a Report definition with COUNTDISTINCT in the summarize field, the chart was not displayed at runtime. Manually executing the Report Definition displayed the data and the pie chart as expected. This was found to be an issue with chart control not rendering the chart at run time if the underlying RD source contained an aggregate function. To correct this, the pzIsChartReportColumnValid validate rule has been updated.
SR-131238 · Issue 199372
Corrected dual configuration OpenURL in New Window function
Resolved in Pega Version 7.1.8
If a button configured to open a URL in a new window specified both a data transform and an activity in the configuration, it did not work. If only the activity was specified, the behavior was as expected. This was a problem where escape characters were missing when building markup for data transform parameters, and has been fixed.