Hi All,
Could some one please suggest a way to write a report script to find all the groups/folders name that contain a particular model.eg- suppose a model abc is present in Group A,Group B and Group G.
so the script should display :
Model Group Name
abc Group A
Group B
Group G
Robert Goldenbaum on
Hello,
well (once again), a model is always "used" in only one group. Meaning that you always get the name of the group of a single model with: oModel.Group().Name(nLoc)
But if you want to output where models with the same name are stored (in which groups), I would recommend using a hashmap with the name of the model as key and an array with all models for the same name as value.
Then you can just go through the keys and output the group names of the models...