Can we remove Resolved tickets from Open list in the left navigation panel without using filter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-22-2016 08:20 AM
I want to remove Resolved tickets from Open list in the left navigation panel without using filter, This means I dont want any active ticket which is in resolved state in the open list of the navigator without applying filter on it. Below is the screenshot attached.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-22-2016 08:58 AM
Hi Swapnil,
Why don't you want to use filters? It is the best way to remove records from a list. If you want to make the filter unalterable, you can modify the module and use the following tip: Restricting Filters and Breadcrumbs - ServiceNow Wiki
It fix the query so users cannot remove it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-22-2016 10:07 AM
I can't understand why you want to do this. filters in a module seems to be the right way to go. But, if you don't want to go with filters, you can do it with query business rules I guess. But it will demand more work that a filter in a module.
//Göran
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-22-2016 11:06 AM
You don't want to manually have to apply a filter, you don't want the filter to show up or you don't want your user to be able to modify the base filter?
If you don't want to have to apply it manually:
- Go in the Modules configuration menu
- Search for the module with Tittle = open, table = incident
- Change the link type to List Filter and set your filter, Active is true, State is not resolved
If you don't want your user to modify the base filter:
- Go in the Modules configuration menu
- Search for the module with Tittle = open, table = incident
- Change the link type to List of Records and in arguments put: &sysparm_fixed_query=active=true^state!=6
If you don't want the whole filter to show up, I'm not sure how you could do it as I'm unable to get a list view parameter in a business rule that would allow to hide Resolved incident.