Using attribute definitions in the search function

Once we have created an attribute definition, we can assign attributes with said definition to specific entities, which will in turn allow us to search for those entities. To illustrate how this works, let us take a look at the following attribute definition "Danger Level":

Creating an attribute definition

The option to search by attribute is available in all lists that display any type of entity that can have an attribute assigned to it. The syntax is as follows:

attr_<identifier>.value: <value>

Searching by attribute

In our above example, we have searched for any operations that carry an attribute from the attribute definition "Danger Level" with the identifier "danger_level" and the value "hazardous".

The full search looks as follows:

attr_danger_level.value: hazardous

When searching for values that contain a space, the value must be put in quotes (attr_<identifier>.value: "this is one value").

×