This is not supported but may help some people out:
If you want create view limitations based on custom properties you have created it isn’t currently possible ‘out of the box'.
However by editing this simple SQL query you can CREATE your own view limitations based on those very custom properties.
INSERT INTO LimitationTypes (LimitationTypeName, LimitationTypeTable, LimitationTypeField, Method, System, Advanced, Description)
VALUES ('Name', 'Nodes', 'NewProperty', 'pattern', 'N', 'Y', 'New Description')
Leave the first line ‘as is’
The second line should be edited as follows:
Name - this is the name of the view limitation the customer wants
Nodes - options are Nodes, Interfaces, or Volumes (depending on the custom property)
NewProperty - this is the columnname they have created (aka the custom property)
Pattern- leave this alone
N - leave this alone
Y - leave this alone
New Description - This is a brief description of the new view based upon the Custom property that will be displayed online (so be detailed)