Hi Daniel,
I understand how that default setting can be inconvenient. Unfortunately, there isn't a direct way to change the default search filter criteria in SCSM 2022 through the user interface. However, you can create a custom view or use PowerShell scripts to achieve a similar result.
One approach is to create a custom view that filters incidents based on your preferred criteria (e.g., Status = Open). This way, you can quickly access the incidents you need without manually adjusting the search filter each time.
If you're comfortable with PowerShell, you can use the Get-SCSMObject
cmdlet to filter incidents based on specific criteria. Here's a basic example:
$incidentClass = Get-SCSMClass -Name "System.WorkItem.Incident"
$openIncidents = Get-SCSMObject -Class $incidentClass -Filter "Status -eq 'Open'"
This script retrieves all incidents with a status of "Open." You can adjust the filter criteria as needed.
Thanks for your feedback. I'll try to forward your thoughts to the product team. Hopefully, your ideas will be incorporated into the next version.