private String getWorkflowParent(String path) {
   String result = null;
   while (path != null) {
     if (getValue(path, "Workflow_Source_ID") != null) result = path;
     path = DataRepository.chopPath(path);
   }
   return result;
 }