how can we hide the priority 4 & 5 for sc_task table
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2024 04:21 AM
how can we hide the priority 4 & 5 for sc_task table. However, we want these priorities to be appeared in other tables.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2024 04:41 AM
@VinayKumarA Yes, it will have an impact on the existing record as the options will be removed. To fix the existing records, I recommend you to write a background/fix script to change their priority.
Please consider marking my response helpful and accepted solution if it addresses your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2024 04:36 AM
Hi @VinayKumarA ,
Write onload client script on sc_task and use below script.
g_form.removeOption('priority',4);
g_form.removeOption('priority',5);
This won't show priority 4 & 5 on sc_task but it won't impact other tables.
If my solution works please mark it as helpful and don't forget to hit thumbs up button!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2024 04:42 AM
Will it impact the existing active records on sc_task table?