I'm wondering if there is a way to perform a case insensitive search for a Configuration Item's text fields? As far as I have discovered, searches in the CI 'Name' field are case insensitive but all other (self defined) text fields are only searched case sensitive.
I'm thinking that there should be some kind of addition in the CI Class definition. Below a snippet of code for a typical field in my 'Computer' class definition that I would like to search case insensitive:
Code: Select all
{
Key => 'Serial',
Name => 'Serial',
Searchable => 1,
Input => {
Type => 'Text',
Size => 50,
MaxLength => 100,
},
},