SR-D15216 · Issue 487680
Email parameter handling updated for greater backwards compatibility
Resolved in Pega Version 8.1.6
After a major migration, email failures were seen with the message "Error sending email: To Address not available". This was traced to a difference in handling between the old and new system versions for fetching the details of workparty for the ToParty parameter, and has been resolved by modifying the newer Work-.pzGetEmailFromParty and Work-.pzSendEmail activities to handle party role as well for greater backwards compatibility.
SR-D17973 · Issue 489740
Corected parameter mismatch to allow deletes to be added to history
Resolved in Pega Version 8.1.6
Pega was not keeping track of a property if it was deleted from the data explorer tab, resulting in not being able to restore the deleted property. This was traced to a parameter mismatch: the Delete API adds the Memo parameter to the history, but while DeleteRecord accepted the Memo parameter, DeleteRecordInner accepted the HistoryMemo parameter. Because the parameters names were different, they were not propagated to the API. This has been corrected by setting the param.memo so that Rule-Delete API adds the history and the rule gets displayed correctly in recently deleted rules.
SR-D211 · Issue 481397
Case Assignment issue lock corrected
Resolved in Pega Version 8.1.6
After upgrade, an intermittent error was seen when browsing the screen flows of a child case type application, indicating "Users have lost the ability to make this change because a change elsewhere has taken precedence over the change you made here. Please click on the assignment again to continue". This was traced to a change made to address an issue with the Opener not properly honoring the aUnlockOnCommit flag that was passed in via the openIfStale() API: in a very specific use case following that change, the system would unlock work objects during openIfStale when it should not. This has been corrected.
SR-D3929 · Issue 444529
Auditing for automatic stage transitions improved
Resolved in Pega Version 8.1.6
The logic for pzCheckForAndDoAutomaticStageTransition has been updated to provide better audits for the movements related to automatic stage transitions.
SR-D22601 · Issue 499898
Fixed PEGA0069 alerts with Weblogic
Resolved in Pega Version 8.1.6
When Pega platform was deployed in a Weblogic application server, Alert PEGA0069 was not generated due to the cookie parser failing to parse what was found to be an incorrect Pega-Perf cookie value. The Pega-Perf cookie value has been corrected by removing quote characters surrounding it.
SR-D800 · Issue 487308
Mashup error resolved with try/catch block for Microsoft Internet Explorer framelement exception
Resolved in Pega Version 8.1.6
When a portal was launched using mash up, the intent tasks were not launched in Microsoft Internet Explorer when Add tasks button was clicked. This was found to be a site-specific use case only found with IE, and has been resolved by adding a try catch block for a window.framelement exception thrown by IE.
SR-D19625 · Issue 494822
Handling added to chart drilldown for apostrophe in operator name
Resolved in Pega Version 8.1.6
Chart drilldown was not working if the operator name contained an apostrophe. Handling for this has been added.
SR-D10820 · Issue 482683
RDL checkboxes appear properly in minimized window
Resolved in Pega Version 8.1.6
Checkboxes in RDL were not appearing properly in Microsoft Internet Explorer when the window was minimized if a dynamic layout of type inline quadruple was used. This was traced to the responsive breakpoints of a format overriding the styles for custom checkboxes, and has been resolved by updating the checkbox controls for responsive breakpoints to use a min-width and min-height instead of auto.
SR-D18907 · Issue 488900
Property references now supported for label and checkbox captions
Resolved in Pega Version 8.1.6
An enhancement has been added to support the use of a property reference for labels and checkbox captions when using the DX API.
SR-C88711 · Issue 439597
Handling added for exception caused by empty page list
Resolved in Pega Version 8.1.6
Attempting to map an auto-populated pageList property in a data transform was throwing a java IndexoutofBoundException. Investigation showed that the system was trying to access the second element of an empty Page List. To resolve this, the system has been updated to use a flat list DataProvider which will return null if the list does not exist rather than return a list that is not associated with the parent page.