SR-B46718 · Issue 304110
pyFLowSLA property added to support pxObjClass change
Resolved in Pega Version 7.3
Validation errors occurred when using a data transform which changes the pxObjClass of primaryPage. Pega Platform tries to validate internally for all the properties during the page change class; in order to support the DT, the new property pyFlowSLA has been introduced. The previous pxFlowSLA property has been deprecated.
SR-B47060 · Issue 303231
Fixed BulkActions filter reset
Resolved in Pega Version 7.3
In the Bulk Actions page, adding a new filter property caused the other conditions to be reset incorrectly. To resolve this, checks have been added to see if there is already a filter condition configured in the Embed-FCondition.pzDefaultOperators.
SR-B47227 · Issue 304654
Requirements template sets Excel input cells as text for security
Resolved in Pega Version 7.3
For increased security in Pega Platform Excel files, the Requirements template has been changed to set all the input cell types as text instead of general.
SR-B47384 · Issue 303522
Fixed focus reset for page number click in grid layout
Resolved in Pega Version 7.3
An anchor element generated for the active page in a repeat grid had "#" as href but did not have an onclick handler defined, causing a click of the Page number in a Grid layout to move focus to the top of the page. This has been corrected with the addition of an onclick handler in pzGridActivePage custom control for inactiveLink in 123 pagination.
SR-B48146 · Issue 305146
CheckedOutRulesBulk updated with null check
Resolved in Pega Version 7.3
The MyCheckedOutRulesBulk ruleset was taken as null for operators with rule checkout disabled, causing them to see all the non-rule resolved classes as private edits. To correct this, additional criteria have been added to fetch records only with pyClass starting with 'RULE-' and the List views MyCheckedOutRulesBulk and MyCheckedOutRulesBulkPM have been changed to check for null values.
SR-B509 · Issue 277331
Turkish characters supported in autocomplete filtering
Resolved in Pega Version 7.3
Support has been added for Turkish locale special characters in autocomplete filtering.
SR-B5224 · Issue 277207
Fixed intermittent override default template failure
Resolved in Pega Version 7.3
The override default template was displaying inconsistent behavior due to the fromLocalAction function not correctly resetting. This has been corrected.
SR-B5450 · Issue 274669
Tab layout focus corrected for "show next error"
Resolved in Pega Version 7.3
The "Show Error" and "Show Next Error" functionality in the layout group of type tab were not giving focus to the correct element when clicking the 'show next error' if an autocomplete was present. Instead, focus was given to the element whose CSS property display was set to none. To correct this, an additional filter condition has been added to ensure the expected focus.
SR-B5618 · Issue 281402
Autocomplete works in grid layout
Resolved in Pega Version 7.3
If a data transform was in the data class and the same was used as a source for the autocomplete inside a repeat grid, the data was not present in runtime. The configuration did work if the data was in the work class. This was traced to missing context, and has been fixed by ensuring the pre-datatransform and pre-activity have the grid row page context.
SR-B5678 · Issue 277570
Fixed out of bounds issue for deleting nested grid row
Resolved in Pega Version 7.3
An IndexOutOfBoundsException was generated when trying to delete a row in a nested grid. This was due to an incorrect base_ref being generated by the tools.getActive function for the second cell because the first cell also had a grid. To fix the issue, the cell generation has been changed to use tools.getStepPage instead.