I've got a peculiar problem in Hybris Backoffice. When I search for Promotion Rules (Marketing->Promotion Rules), one of the available fields is Type. Yet, when I try to use that field, the comparator in the advanced search widget is incorrect. The type of status field is HybrisEnumValue. However the comparator only contains three options: In, Is Empty and Is not empty:
As an example, Order Status is also a field with type HybrisEnumValue, however in the advanced search it does show correct comparator options:
Obviously, this In operator causes problems down the line when searching. How can get it to display the correct comparator values, that is, Equals instead of In?
EDIT: As evident from the answer by @geffchang I didn't make it clear that I can only select a single value:
Further, when Hybris translates the query into SQL, it ends up with a wrong WHERE clause: WHERE item_t0.p_status IN ? - instead of in it should have =



What issues are you seeing?
Personally, I think this is fine.
Inlets you select multiple values inORfashion. So, Status in (Published,Unpublished) gives you both published and unpublished rules. If you wantPublishedonly, that's also fine.