Document selection The <docset sel="filter" metainfo="filter"/> sections in the PPQ specify which documents in the runtime repository to select. You can use two types of filters: • Document property filters (sel="filter"). See Creating document property filters. • Metadata filters (metainfo="filter"). See Creating metadata filters. Filter operators You can use the operators shown in the table below when you create document property filters and metadata filters. Operator Description = Equal to. Numeric and string values. For example: metainfo="CustomerName="Eva Farrel"" < (<) Less than. Numeric and string values. For example: metainfo="CustomerNumber<1020" > (>) Greater than. Numeric and string values.For example: metainfo="CustomerNumber>1020" != Not equal to. Numeric and string values. For example: metainfo="CustomerNumber!=1020" >= (>=) Greater than or equal to. Numeric and string values. For example: metainfo="CustomerNumber>=1020" <= (<=) Less than or equal to. Numeric and string values. For example: metainfo="CustomerNumber<=1020" + Addition. Numeric and string values. - Subtraction. Numeric values only. * Multiplication. Numeric values only. / Division. Numeric values only. AND Logical AND. For example: metainfo="CustomerNumber<=1020 AND Country=SWE" OR Logical OR. For example: metainfo="Country=FIN OR Country=SWE"
=
metainfo="CustomerName="Eva Farrel""
< (<)
metainfo="CustomerNumber<1020"
> (>)
metainfo="CustomerNumber>1020"
!=
metainfo="CustomerNumber!=1020"
>= (>=)
metainfo="CustomerNumber>=1020"
<= (<=)
metainfo="CustomerNumber<=1020"
+
-
*
/
AND
metainfo="CustomerNumber<=1020 AND Country=SWE"
OR
metainfo="Country=FIN OR Country=SWE"