I've searched through the DXL help files for "Project" and "Created" and several other possible keywords, and also searched the DXL forum here, but I can't seem to find a solution to this. Basically, I have a couple of projects in DOORS that have the same name, but are in different locations. One is at the level of the rest of the projects in our database and the other is tucked in a folder inside another project. I just want to be able to email the person who created this "duplicate" project and make sure it's OK to delete it - or at least introduce him to the other project. |
Re: Is there an easy way to determine who created a Project? Surely the person who created the project also created or edited modules inside it, and you can get a clue by looking at them. I suspect perhaps they thought they were creating a folder, and you will end up "converting" their project into a folder. No, you cannot have two projects in the same database with the same name. If they look identical then one has extra white space in it, perhaps at the end. "NameProj" and "NameProj " look alike.
|
Re: Is there an easy way to determine who created a Project?
Firstly - I'm surprised to hear that you have two Project folders with the same name - DOORS requires all Project folder names to be unique, so are you sure that they are exactly the same or is two standard yellow folders that have the same name?
Module m
Item i
string itemType
string modName, fullModName, modLastModBy
for i in current Project do
{
itemType = type i
if( itemType == "Formal")
{
fullModName = fullName(i)
modName = name(i)
m = read(fullModName,false)
modLastModBy = m."Last Modified By"
print modName ":\t" modLastModBy "\n"
close(m)
}
}
Paul Miller
|
Re: Is there an easy way to determine who created a Project? Mathias Mamsch, IT-QBase GmbH, Consultant for Requirement Engineering and D00RS |
Re: Is there an easy way to determine who created a Project? |
Re: Is there an easy way to determine who created a Project? Mathias Mamsch - Thu Mar 10 07:00:47 EST 2011 Mathias Mamsch, IT-QBase GmbH, Consultant for Requirement Engineering and D00RS Perhaps install post-module-open triggers in the modules that update some Config file with who and when, then consult the config file from time to time.
|