Does anyone have an tips for finding tags when you are unfamiliar with where the tag might be located in the OPC Browser?
I have a handful of machines with no documentation that we are looking to figure out throughput, quality, efficiency, etc. But just this one machine has thousands of tags. Are there any tricks to filtering them?
My plan is to reach out the manufacture but I was hoping I might be missing something.
Oy! Just from that screenshot, it looks like the manufacturer didn't organize tags into any UDTs or arrays. Not only will it always be difficult to find what you need, but communications performance will suck, too. Sorry.
If you can, it might help to check if the information you want to gather is available on the machine HMI. If so, you may be able to narrow down your search to the HMI tags.
If you have access to the HMI source code then you should be able to examine the display component properties and find out which tag they're monitoring. Make a list and then find them in your browser.
Failing that you may have to dig into the PLC code.
If you feel like scripting a search function, you could use system.tag.browse() to search through the tag providers and give it input tag names with or without the wildcard '*'. Kind of only helpful if you already have a rough idea of what the tag name is or would have in it. We use something similar as a search tool for the end user to search through all of the tag providers.
You can have the script print the results or add them to an array for you to get the path to the tags you need.
The find/replace tool might help too since it can search through tag providers, but that might only give you results if there is a UDT type for it.