Is it possible to filter on the list of resources on status (e.g. to show only the resource in maintenance)? This was not immediately listed under the options in the docs: Creating a list view | DataMiner Docs
Michiel Saelen [SLC] [DevOps Enabler] Selected answer as best 23rd August 2022
Hi Michiel
I'm able to do this with a shape containing the following shape data
- Component: ListView
- Source: Resources
- Filter: Resource.Mode[Int32] ==2
The number '2' in my example refers to the 'Maintenance' status, because internally it's an enum:
public enum ResourceMode
{
Undefined = 0,
Available = 1,
Maintenance = 2,
Unavailable = 3
}
Hope this helps!
Michiel Saelen [SLC] [DevOps Enabler] Selected answer as best 23rd August 2022