View change
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2024 01:25 AM
Hi All,
I want to change the from view for assigned to and assignment group.
I have created a new view but I want that view is only visible to assigned to and assignment group only how I can achieve that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2024 01:32 AM
@keshav77 Did you try to refer the below link for controlling the view?
(function overrideView(view, is_list) {
//Force non-itil users to use the ess view
if (gs.hasRole("itil"))
{return;}
if (view.startsWith("ess"))
{return;}
// do not change view if it starts with sys_ (e.g. sys_ref_list)
if (view.startsWith("sys_"))
{return;}
answer = "ess"; // set the new view to answer
})(view, is_list);
Sujatha V.M.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2024 03:16 AM - edited 12-15-2024 03:48 AM
Hi @keshav77
Create a view rule by Navigate to All > System UI > View Rules ( Create a view rule ) and put the condition as below
Please mark this as helpful and accept it as a solution if this resolves your query.
Thank You!
Chandra