How do you find elements in SSRS by ID? I tried to use the identifier returned by another search result, a new string pointer and a small random string, all of which return the same error:
The ID field has an invalid value. ---> Microsoft.ReportingServices.Diagnostics.Utilities.InvalidElementException: the ID field has an invalid value.
Here is the code:
var request = new FindItemsRequest { Conditions = new[] { new SearchCondition { Name = "ID", Value = "test"} }, Folder = "/" }; return _ssrsService .FindItems(request) .Items
I am using SSRS 2005.
source share