Hi,
I am attempting to display a filtered table in Visual Overview where either 1 of 2 columns should match a given value (in the image below, columns Local Chassis ID and Remote Chassis ID).
For instance, when filtering on value "A", I would like to be able to show rows:
- A/A21
- A/A22
- C/C23
I have tried using TableRowFilter as documented here but I can only get the filtering to work as an OR operation if filtering twice on the same column and as an AND operation when using different columns.
Looking at this page, linked in the above one, I notice the existence of "FULLFILTER=" with which I manage to get a working filter with a dynamic table query but not within the Visual Overview.
Is this something that is not supported or is there a different way I can achieve my desired result?
The TableRowFilter is explained in the help as:
Use the “TableRowFilter” option to filter out specific rows. This is a server-side filter that accepts a semicolon-separated list of PID=value pairs.
Ex. IncludedPids:111,114|TableRowFilter:114=6*;111=row*
In the DataMiner Cube, the 'TableRowFilter' is converted into a server-side 'Value=' SubscriptionFilter. In fact, the string 'TableRowFilter:' is first trimmed off and then there is a split on ';'. Each part is then formatted with a 'Value=xxx' and joined back together with ';'.
We will need a 'new feature' task to support for example the 'SubscriptionFilter' shapedata for the ParameterControl Visio shapes.