HR Case User Acceptance - Reporting on 'rejections'?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-12-2020 07:51 PM
Hi - I would like to track which HR Cases were 'rejected' by the user during the User Acceptance process after a case is Closed Complete or Closed Incomplete.
I know the state doesn't go to "rejected" (ours just goes back to Work in Progress), so it's hard to distinguish which ones were rejected at some point.
Any pointers?
Thanks!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-12-2020 08:17 PM
Hi
The answer in this link looks similar to what you expect.
Hope this helps.
Regards
Omkar Mone

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-13-2020 05:22 AM
Thanks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-14-2020 06:56 AM
Hey KennonJ, going to respond to your comment in an old post onto yours.
No - from what I have seen, this is not a report coming from PA - although, I am sure it is something that can be built there. To report off of this, you would possibly want to create a custom field that collects the rejection count.
So, for my instance I created a true/false field called Case has been rejected. Then I wrapped it in the BR you saw from that old post:
(I would also throw in a UI Policy for when this field is visible - if you want it to be or not).
Then I have another custom integer field to grab the rejection counts, which is called Case Rejection Count. And within the same BR as above, you can add the the following script:
current.u_case_has_been_rejected += 1;
Now, when the case is rejected, the field will become true and the case count will be captured:
Again, I would wrap a UI Policy to show/hide these two fields to only show at a certain time. No need to have them there 100 Percent of the case life.
Now to report off the count, you can do so since there is an actual field.
Rejecting the Case again:
Showing a simple list view report:
Hope I have helped, if you decide to use this method.
Cheers!
-Rob