PEGA Report Filter with Last Hour Symbolic Date Equivalent
The property to be displayed is .pxCommitDateTime configured with UI Control Format DateTime-Long.
For our report filter, we want to report the LAST HOUR of committed cases. We have tried the argument:
.pxCommitDateTime IS GREATER THAN @addToDate(.pxCurrentDateTime, 0, -1, 0, 0)
The two issues with that attempted solution is:
1) .pxCommitDateTime is not comparable to .pxCurrentDateTime because of their different formats
2) Java functions, such as @addToDate(), is not allowed for defining filter values.
What is a good solution approach? Thank you for your attention.