- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2022 04:29 AM
Does the count of requests under My active items in Employee Center represent the number of Open requests? For example, if it shows 9+ Requests, then I would expect there to be at least 9 items listed in open requests.
If this is true, then the count is not correct in our instance. I see a user where 9+ Requests is shown but they have zero open requests; they do have more than 9 closed requests.
As far as I know, no changes were made to this widget. We have added ideas and demands to My Request Filters.
What would cause this count to be off for some users? How can this be corrected?
Thank you
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2022 03:24 AM
I heard back from Now Support on this issue. It is actually a known problem. See below:
They confirmed the Request count is including both open and closed, this is a know defect tracked under the below PRB
PRB1585217: Employee Center(ESC): "My Active Items" widget is showing the incorrect requests count
This PRB is fixed in the upcoming SR - HR - Employee Center Bundle - August 2022 release.
They provided me with an update set to correct the issue on my instance.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2022 06:12 AM
Hi mah,
The My active items widget displays all user activity that requires your input or review.
Thanks,
Sandeep
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2022 09:28 AM
Hi Sandeep,
Thank you for the information. It confirms my expectation that the count is supposed to represent the number of open requests (i.e., requests that require action). But this is not what we are seeing.
We have turned off Tasks and made Requests primary. We made no changes to the widget itself or any scripts involved.
Looking for a way to correct this.
Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2022 12:19 PM
I believe I have found a solution (Rome/San Diego) to only count active requests instead of all requests.
1. Open the ActivityConfigurationUtilSNC Script Include:
/sys_script_include.do?sys_id=1dc8fe7253b03010067cddeeff7b1243&sysparm_view=&sysparm_domain=null&sysparm_domain_scope=null
2. Navigate to Line 423
3. Add reqQuery.addQuery('active', true); ...Before reqQuery.query();
Final result should look like this:
for (var i = 0; i < myReqConfigList.length && reqCount <= this.ITEM_SUMMARY_COUNT_LIMIT; i++) {
var myReqConfigRecord = myReqConfigList[i];
var reqQuery = this._getMyReqRecQuery(myReqConfigRecord, true);
reqQuery.addQuery('active', true);
reqQuery.query();
if (reqQuery.next())
reqCount += Number(reqQuery.getAggregate('COUNT'));
}
return reqCount;
},
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2022 06:15 AM
I will give this a try.
Thank you!