SR-A99477 · Issue 266058
SaveCovered checks for stale Cover
Resolved in Pega Version 7.2.2
When resolving a Covered work object, a stale copy of the Cover was being saved which resulted in the opened Cover assignment becoming invalid. This was caused by the SaveCovered function not checking to see if pyWorkCover was stale or not before calling RecalculateAndSave. This has been resolved by adding steps in SaveCovered to check if pyWorkCover is stale and to open pyWorkCover if it is stale using Obj-Open-By-Handle.
SR-A96203 · Issue 270094
CreateCase rollback corrected
Resolved in Pega Version 7.2.2
While creating a sub-case and getting an error on any end-step of flow, Pega starts the rollback of the process, but was saving pxCoveredInsKeys in the Clipboard page of Case. This was a missing use case in AddCoveredWork to call RemoveFromCover if an error was thrown while creating a child case along with copying page pages from cover to primary, and has been corrected.
SR-A96203 · Issue 266909
CreateCase rollback corrected
Resolved in Pega Version 7.2.2
While creating a sub-case and getting an error on any end-step of flow, Pega starts the rollback of the process, but was saving pxCoveredInsKeys in the Clipboard page of Case. This was a missing use case in AddCoveredWork to call RemoveFromCover if an error was thrown while creating a child case along with copying page pages from cover to primary, and has been corrected.
SR-A91680 · Issue 259008
Resolved Null Pointer Error for resubmit of a corrected case with optimistic locking
Resolved in Pega Version 7.2.2
Work order case creation was throwing a null pointer exception in logs if optimistic locking was enabled on the case type and the case was resubmitted after correcting a validation error. This has been fixed with the addition of a null check for a clipboard page in use.
SR-A27796 · Issue 250774
Click of phone link preserves chart display
Resolved in Pega Version 7.2.2
A click on a "Telephone" link that generated a prompt for the user to allow access for launching an external application caused the charts used on the screen to disappear. To fix this, the pxFormatTelephone rule has been modified to add an onclick handler.
SR-A33704 · Issue 250630
Repeating grid refresh handling improved for mouse click location
Resolved in Pega Version 7.2.2
A numeric field in a repeating grid referenced by a Declare Expression with a "refresh on change" did not always persist the changed value on the clipboard. This was traced to a handling difference in the code where if the mouse was clicked somewhere outside the row being edited the section refreshed and the value reverted back to the previous value, but if the mouse was clicked within the row the value updated correctly. This has been fixed by updating the logic in isElementDirty to better consider number and decimal type controls.
SR-A22996 · Issue 250572
Logic updated for 'when' controlled edit modes in embedded sections
Resolved in Pega Version 7.2.2
Complex layers of 'when'-controlled edit modes were not being properly applied in embedded sections. For example, if the main section included another section and the read-only nature of the included section was controlled by a when rule and the included section went on to include another section that contained a Repeat Grid/ Row repeat, the edit mode of the parent was not considered when evaluating the edit mode of the child. This was an issue with the logic governing precedence considerations, and has been updated with additional checks.
SR-A22996 · Issue 252883
Logic updated for 'when' controlled edit modes in embedded sections
Resolved in Pega Version 7.2.2
Complex layers of 'when'-controlled edit modes were not being properly applied in embedded sections. For example, if the main section included another section and the read-only nature of the included section was controlled by a when rule and the included section went on to include another section that contained a Repeat Grid/ Row repeat, the edit mode of the parent was not considered when evaluating the edit mode of the child. This was an issue with the logic governing precedence considerations, and has been updated with additional checks.
SR-A22996 · Issue 248338
Logic updated for 'when' controlled edit modes in embedded sections
Resolved in Pega Version 7.2.2
Complex layers of 'when'-controlled edit modes were not being properly applied in embedded sections. For example, if the main section included another section and the read-only nature of the included section was controlled by a when rule and the included section went on to include another section that contained a Repeat Grid/ Row repeat, the edit mode of the parent was not considered when evaluating the edit mode of the child. This was an issue with the logic governing precedence considerations, and has been updated with additional checks.
SR-A62629 · Issue 250580
Improved format conversion handling added for Work Objects with custom date format
Resolved in Pega Version 7.2.2
Custom Date format was throwing an invalid date format error when trying to add an attachment to the Work Object if the read-only date format for one of the properties was given as DD-MMM-YYYY and it was displayed on the UI in the same format. In this issue, the entire form was submitted while uploading the file and the error occurred because the format was different from what the server was expecting. To resolve this issue, handling has been added to convert the date/time value to/from the expected format when interacting with the server.