@brandon1967
I take your question is whether a custom Structure variable can be accessed via the HMI, isn't it?
That's actually possible.
Say you create a Structure Data Type like so : st_Water
Pressure Type: REAL
Temperature Type: REAL
You then assign a Global Variable in the PLC program like so : plcWater Type: st_Water
Then, in your NA project, you can map it the Variable Mapping section like so : User Variables: plcWater Type: st_Water Variable: hmiWater
Now, say you want to display the Pressure, put a DataEdit control, then under the Variable property, just type in hmiWater.Pressure
Similarly for Temperature, in the Variable property just type hmiWater.Temperature
The auto-complete feature will actually shows you those structure members after you key in the dot.
While clustering by PLC Program (as in Local Variables) is not possible, this method already helps a lot, rather than mapping each members one by one.