Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2018 08:48 PM
Hello,
I created a View name it as 'ITIL Custom View' which i need to set it as default all the ITIL Users on Incident table. Can anyone please help me out with this
Solved! Go to Solution.
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2018 10:21 PM
try this,
(function overrideView(view, is_list) {
if (gs.hasRole("itil")) {
answer = "ITIL_Custom_View";
return answer;
}
answer = "ess";
})(view, is_list);
Beth has ITIL role,
5 REPLIES 5

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2018 10:21 PM
try this,
(function overrideView(view, is_list) {
if (gs.hasRole("itil")) {
answer = "ITIL_Custom_View";
return answer;
}
answer = "ess";
})(view, is_list);
Beth has ITIL role,