I have a script which enumerates over all the commands in a program.
What it does, among other things is to help us convert reporting from legacy to GeoTol.
We are only updating those dimensions that are ballooned on the print. Anything that is reference only is not getting updated.
Below is part of my script:
If dmis_command.Type = 176 Then
dmis_command.Remove
End If
The analysis views that I want to delete, (because I'm going to be redoing them), will be exporting to stats.
What I'd like is to find a way to either find out what the NAME of the analysis view's dimension is, or else find out if it's exporting.
If it's not exporting, I'd like to leave the analysis view right where it is, because we're not going to replace the dimension with a GeoTol version.
How would I go about doing this?