Field: IncidentCount
Description
The Incident Count field is a reference field for script assignments and automated test assignments. It is a calculated field that returns all the script assignments or automated test assignments with incidents within the parameters specified.
Examples
To find all the entities that have 1 or more associated incidents:
Code Block |
---|
|
IncidentCount >= 1
|
To find all entities that have 1-3 incidents associated with it:
Code Block |
---|
|
IncidentCount >= 1 AND IncidentCount <= 3
|
Or with the shorter range syntax:
Code Block |
---|
|
IncidentCount IN [1,3]
|
Supported Operators
=, <, >, <=, >=, IN, !=, NOT IN
Supported Indexes
Entity, Run
Supported Types
- AgileRun
- AutomatedTestAssignment
- AutomatedTestRun
- ScriptRun
- TestScriptAssignment
Supported Features
Feature | Supported? |
---|
Aggregation | Yes (Int32) |
Sortable | Yes |
Sub-selects | No |