Change the Conditions Under Which a DEM Rule Runs

Service Manager will run a DEM rule only if the condition field evaluates to true. Out-of-the-box, no DEM rule has a condition statement that restricts when the rule runs, and all the integration DEM rules will always run by default.

You can update a DEM rule's condition statements if you want to restrict when Service Manager runs your DEM rules. For example, adding the following condition to the ucmdbNode DEM rule restricts the rule to desktop CIs.

subtype in $L.file="Desktop"

You can also use the condition field to create multiple DEM rules that apply to the same table name. For example, the following DEM rules both apply to the joinnode table.

DEM rules using different conditions to affect the same table

DEM rule Id

Table Name

Condition

ucmdbNode

joinnode

subtype in $L.file~="Desktop"

ucmdbDesktop

joinnode

subtype in $L.file="Desktop"

Typically, you will only need to add conditions if your business processes require the integration to take different actions with certain CI types or SLAs.