I can not find a method to create a report that can show either the files and path of folders that include particular TAGs.
I would like to be able to create a report that allows selecting a Filer and then finding all folders or files & path that have, say the UK-Passport Tagged.
Chris, I believe the ask to be how to query tags using a equivalent match versus say all tags. We know that tags are a result of classification and meeting a specific policy that then 'tagged' the file with a remnant defined in the policy. Multiple tags could be assessed were it true that multiple policies triggered on the object which then assigns a tag to the path..
We know you can verify a tag in the workspace:
To review the tags assigned to file paths:
a. Navigate to the Workspace > Shares view.
b. Select the appropriate share.
c. In the right pane, on the Summary panel, expand the Tags section. The tags assigned to the files under the shares are listed.
d. Use Workspace filters to search for files with specific tags and perform remediation actions.
That will provide you a quick and easy mechanism to find the tags you are interested in and double check they exist.
I also take it you are searching the reports that are canned or come with the product but are you aware that we have templates you can customize?
Another option is to run a Data Insight Query Language (DQL) report to review the tags assigned to the files submitted for classification.
As example the OLH (OnLine Help) does provide detailed steps and explanations in some of the areas you are pursuing; a good starting point when run on the Management Server (MS) itself or a browser with access to the MS and its' name replacing localhost < https://localhost/symhelp/ShowInTab?locale=EN_US&vid=v125236158_v125239294&ProdId=DISYMHELPV_6_1_CG >. This is a good starting point to modify the existing query for your use.
Note: the forums have a lot of detail on DQL, its use and the specific 'views' available. The manual also ships with the installation media as the SDK / Programmer's Guide.
Your goal seems to be filtering data via the DQL report to meet your criteria. If we chose the 2nd template listed the default choice would be:
Template 2: Get PST files with PII information
/*
Template1
Find PST files with PII
The path object gives various attributes of path
path.device.name would give the filer name (web app name when share point will be supported)
Our templates are version specific. You can safely assume the newer the version the greater the number of templates. As example in version 5.2 we have:
whereas in 6.1 names have changed to:
I probably should have referred you to the PII (Personally Identifiable Information) template as you are likely running the latest. Sorry about that screenshots come from the lab I am running at the time and I am sure you can understand these change practically daily.
As to how to filter down further to a device or even a share you would need to add an additional to the WHERE clause in your report.
example for the filer device use AND path.device.name='<Filer name>'
and to filter at the share level use AND path.msu.name IN ('<ShareName>')
These do assume you have gotten these values with your get statement.
In the statement about we use an IF statement and you need to change 'filer' to the device's name under
IF device.name='Filer'
Rod
NOTE: The bolded values do need to be changed to a valid match.