cancel
Showing results for 
Search instead for 
Did you mean: 

How to search property allowed multi-values without "case-sensetive"?

Former Member
0 Kudos

Hi, SDN fellows.

I have a docuemnt that with a property which has an allowed multi-values, say:

BrandA, BrandB, BrandC, BrandD.I ticked the "BrandA" and "BrandB" values on the document. This property is marked as indexable.

After the document get indexed, I search for the word : "BrandA" , and it return the document. But when I type: "brandA" (it is lower-case this time), the document is not returned.

I am pretty sure that the text content is non-case-sentive in the search result, but when it comes to an allowed values property, the search result is case-sensetive.

My question is: How do I search the allowed values property in non-case-sensitive mode?

Thanks in advance.

Kent

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

solved.

D021954
Advisor
Advisor
0 Kudos

Hi Kent,

properties with allowed avalues are indexed with type 'String'. Specific properties are search on by search method 'EXACT'. That results into a case sensetive search.

There there is no way to enforce the property to be indexed in ype 'TEXT'.

The only option I see at the moment is to develop a Search Component and define a non-'EXACT' or case insensetive query.

How-To-Guide for Search Compoments:

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/41cbcb56-0701-0010-43b4-fbc...

Regards Matthias Röbig-Landau

Former Member
0 Kudos

Thanks for your suggestion, I am looking into it.

Kent