State of all Instances of a Class with special Criteria

Hello!
We have a Class in SCOM named “URL.Class”. In this Class their is a property ‘Name’.
No I want to List all URLs with the Name “TEST*”.
But if I put in the field criteria “Name LIKE ‘TEST%’” nothing is shown. Because Name is a key-property ( How to use criteria when scoping objects – Dashboard Server SCOM Edition (squaredup.com))

In (Sub)Label it is possible to show this property with {{properties.name}}.

Is this also possible in criteria?

rg
Hansie

You’re going to have to play with the case. The link you put states that it is case sensitive and unfortunately the case you actually have in the xml is NOT the “correct” case (I have seen this with MPs I have coded). So definite trial & error till you find it…

Other workaround is to create a dynamic group in SCOM and then use that group to scope it instead…

1 Like

Criteria uses camelCase which would look like this:

properties.displayName

So try:

properties.name

1 Like