SR-B73599 · Issue 324612
Filtering fixed for properties defined by @@CaseWhen()
Resolved in Pega Version 7.3.1
Filtering was not applied for properties defined by @@CaseWhen() . This was due to some function alias calls needing double quotes for literal parameters. The double quotes are removed after section XML is submitted and hence the param available to the grid (via html attribute sortField) did not have the double quotes. To correct this, a function alias call in RD bound grid will set the pyColumnName to pyFieldName since the pyColumnName does not have the double quotes that are needed by some functions.
SR-B73664 · Issue 322173
Text area - Disable when fixed
Resolved in Pega Version 7.3.1
A Text Area control was not disabling with When conditions or expressions. The control was disabled correctly if set to "Always". This was due to an incorrect condition in pzpega_ui_template_textarea.js, and has been fixed.
SR-B76216 · Issue 325540
Localization support added for Indonesian
Resolved in Pega Version 7.3.1
pyLanguage has been modified to add the new value in_ID in the prompt list that will provide localization support for Indonesian (Indonesia).
SR-B77544 · Issue 326629
Scroll bar issues fixed for freeze column pane
Resolved in Pega Version 7.3.1
A vertical scroll bar was displayed on the screen and the horizontal scroll was not working as expected when the freeze column pane option was selected in the repeating grid. This was traced to styles missing from the base-grids.css that were needed for fixed column configuration, and these have been added.
SR-B57565 · Issue 316702
Fixed encoded special characters in 'Field values'
Resolved in Pega Version 7.3.1
Special characters in 'Field values' were being displayed as encoded in the grid. This was due to missing handling, and has been fixed in the generateCellContent RUF.
SR-B54277 · Issue 336406
Trimmed unneeded properties from doUIAction call
Resolved in Pega Version 7.4
Null pointer exceptions were generated when relaunching the manager portal after saving a work-object, and the error "Request-URL Too Large. The requested URL's length exceeds the capacity limit for this server" appeared. This was traced to the number of properties included in the doUIAction call; unnecessary parameters have been removed to resolve this issue.
SR-B66164 · Issue 325166
Handling improved for pzActiondropdown's Action label value
Resolved in Pega Version 7.4
When an alternate flow action was picked from LocalAction's list and then submitted, the presence of any page-set messages would cause the submission to fail and the flow remained on the same flow action. This was an issue with handling the changed value of the FlowAction label, and the pzActionDropdown control has been modified to get the correct pyDefaultActionIndex parameter value.
SR-B70422 · Issue 326897
Removed unnecessary add/delete history entries related to empty page properties
Resolved in Pega Version 7.4
The field level auditing configured for page group or list property types was creating multiple add and delete entries in the history of the case even though the pagelist/pagegroup had not been modified. This was traced to method used by the pagelist change audit process to compare current pages to the previous value of the pagelist pages: during pagetostring conversion, sometimes the empty properties in page are present in the String and sometimes they are not, resulting in a difference that generated the non-essential audit entries. This has been fixed by changing the getProperty references in getPageAsString function to use getIfPresent instead. Null checks have also been added.
SR-B70595 · Issue 328754
Out of box REST API creates Page Lists with pxObjClass
Resolved in Pega Version 7.4
Page-Merge-Into was implemented in such a way that the pxObjClass was added for a page but not for a Page List until the case was created. This interfered with validating pagelists and identifying problems with the message data that would allow the case to be rejected before creation. To allow for more flexibility, the pzCreateCaseInternal activity contains an added a property-set so that the pxObjClass is updated on embedded pages.
SR-B74583 · Issue 325617
SendEmail smart shape fixed to populate PartyRole correctly
Resolved in Pega Version 7.4
Due to issues with populating the pxPartyRole property, emails were not being sent to all members in a repeat party after upgrading. This was traced to a missing call in the modified SendEmail smart shape, and has been fixed.