Hi Team,
I'm trying to get a row from a element table and monitor them separately, the input for the row is the display key which given from LCA. I tried using service param filter, which brings me the correct row when the display value is given fully(for instance- decoder-1) but when its given partially(for instance- decod) then nothing is returned from Dataminer. Please let me know if this is possible
var filter = new ServiceParamFilter();
filter.ParameterID = Convert.ToInt32(columnPid);
filter.IsIncluded = true;
filter.FilterType = Skyline.DataMiner.Net.Messages.FilterType.Display;
filter.Filter = tableInput;
Hi Hari Priya,
I think it's missing the wildcard character ('*').
Have you tried "-decod*" as tableInput?