/** Get the IDs of all team processes in use by this dashboard dataset */
private Set<String> getTeamProcessIDsInUse() {
Set<String> templateIDs = getTeamProcessIDs();
Set<String> result = new HashSet<String>();
DashHierarchy hier = dashboardContext.getHierarchy();
for (Iterator i = hier.values().iterator(); i.hasNext();) {
Prop prop = (Prop) i.next();
String oneID = prop.getID();
if (oneID != null && oneID.endsWith("Root")) {
int slashPos = oneID.indexOf('/');
if (slashPos != -1) {