- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-04-2022 08:18 PM
Hi all,
I am facing an issue in the My active items widget in employee center. The tasks is showing 0 but when i click into the task, there are multiple tasks pending. Below are some screenshots to illustrate:
- Figure 1: Showing 0 task under my active items
- Figure 2: But when user click on the tasks on the widget to get to my to-dos, it shows that there are tasks
- Figure 3: Activity configuration for Tasks
Appreciate some assistance or advice on how we have have the widget task count sync up with the to-dos
Many thanks in advance!!
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-07-2022 07:04 AM
Max - it's simple. Please create a new record in Activity Configurations. Please refer to below screenshot for configurations.
Muhammad

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-22-2024 06:23 AM
Have you managed to get the solution for this? I am also experiencing the same problem. The task count is not showing the approval tasks for Requested Item or Requests , but when when the user navigates to My To do list it is showing all those approval requests.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-07-2022 11:07 PM
Hi Max,
That count comes from primary activity.itemCount part of real only widget my-items. I would suggest checking widget instance options and you have correctly defined activity configuration. Still an issue then I suggest logging HI ticket if your activty config is correct instead of clone/customising OOB widget. You dont have much controll apart from activity config, because of read only protection policy.
Please mark as correct answer or helpful if the provided response resolves your query!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-09-2022 01:23 PM
The count being incorrect on "Requests" and/or not showing for other configured records is a known issue for the widget. I believe this was supposed to be fixed with the August release of the Employee Center applications. Validate that you have the latest versions installed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-04-2023 04:00 AM
Hi Guys,
Here I got solution for this just I used one more function i oob script include, I got count correct on active item widgets here is script below which solve this problem above
use this script inside script include(' ActivityConfigurationUtil' ).
getMyIncidentsCount: function(){
var logUser = gs.getUserID();
var incCount = new GlideRecord("incident");
incCount.addQuery("caller_id",logUser);
incCount.query();
var countInc = incCount.getRowCount();
return countInc;
},
I have tested and it is working fine for me...........thank you😊
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-08-2023 12:51 AM
Hi please check solution below working perfectly. let me know if you have doubt. do not forget to hit helpful