"My Items" widget Customization
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2025 05:33 AM
In the "my items" widget If we go to TASK, It also shows all the "no approval required" tasks also.
Our requirement Is to filter-out those task whose approval are not required.
How could we filter-out these?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2025 06:44 AM
Hi @MohitSaxena ,
Please check this script include ActivityConfigurationUtil and Activity Configurations under Employee Center.
Find the part of the script that pulls the tasks.
Add a condition that says:
Only show tasks where approval is required.
gr.addQuery('approval', '!=', 'not_required');
"Only show tasks where approval is NOT set to 'not required'."
Approval Field: The approval field is typically used in sc_task, change_task, and hr_task. Ensure your widget is querying the correct table.
Custom Tasks: If you're using custom task types, verify if they have an approval field or equivalent.
Performance: Avoid overly complex filters in client scripts; use server-side filtering when possible.
-
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2025 10:44 AM - edited 10-12-2025 10:45 AM
Thanks for your solution. @pavani_paluri
I had added below codes in
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2025 07:05 AM
Hi @MohitSaxena,
please check
My request is filtered.
Here, edit the filter for the portal page. Here you can edit the filter and also control which data fields can be visible on the portal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2025 01:13 AM
Hi @TejasSN_LogicX , Thanks for your reply.
I actually didn't get this solution. Will that make the adjustments in Each users Employee center profile?
