Summary
This table contains properties for filter conditions on alarm list descriptors.
|
Field name |
SQL type |
Description |
|---|---|---|
|
DESCINDEX |
INTEGER |
Unique number of the descriptor. |
|
FILTER |
INTEGER |
The number of this filter (0-based). |
|
CONDITION |
INTEGER |
The number of this condition (0-based). A maximum of 10 conditions can be defined on each filter. |
|
ANDOR |
INTEGER |
1 if the relation is a boolean AND with the other relations, 2 if the relation is a boolean OR. Note that AND has higher precedence than OR. |
|
VARIABLE |
INTEGER |
A number specifying the variable to filter on: 0 = Ack date and time |
|
TYPE |
INTEGER |
The type of the variable: 1 = String (VARIABLE = 9-14) |
|
RELATION |
INTEGER |
The type of relation used: For string (TYPE = 1) For dates (TYPE = 3): For values (TYPE = 4) |
|
STRING |
CHAR (128) |
The string to compare with. Only used when TYPE = 1, NULL otherwise. |
|
TIME |
TIMESTAMP |
The date to compare with. Only used when TYPE = 3 and RELATION is 0 or 1, NULL otherwise. |
|
ENDTIME |
TIMESTAMP |
The end date for a date interval, only used when TYPE = 3 and RELATION = 1, NULL otherwise. |
|
VALUE |
INTEGER |
Value to compare with. Only used when TYPE = 4, or TYPE = 3 and RELATION = 4 (to specify a number of days), NULL otherwise. |
|
ENDVALUE |
INTEGER |
The end value for an interval, only used when TYPE = 4 and RELATION = 4, NULL otherwise. |
See Also