![]() |
Telelogic DOORS (steve huntington) | ![]() |
Topic Title: Search for Everyone else is set to R or RM or RMC or RMCD or RMCDA) in DOORS Structure Topic Summary: Created On: 25-Apr-2003 16:57 Status: Post and Reply |
Linear : Threading : Single : Branch |
![]() |
![]()
|
![]() |
|
I need a DXL program that will search from Database root through Projects, Folders, modules, and objects for Everyone else set to (R or RM or RMC or RMCD or RMCDA).
If Everyone else is set to R or RM or RMC or RMCD or RMCDA), then report the project, folder, module name to a text file. Chris Soihl ------------------------- Chris Soihl |
|
![]() |
|
![]() |
|
Chris,
The following script should get you started. It loops through all Items ( Projects, Folders, and Modules ) in a DOORS database, and report on Access Rights. It does not attempt to open Modules and get any Access Right information from inside the Modules. You can add your own checks for the specific Access Rights you are looking for, and update the output of the script accordingly. ------------------------- Michael Sutherland michael@galactic-solutions.com http://galactic-solutions.com |
|
![]() |
|
![]() |
|
I think Chris Soihl was looking for the Group (non-Group) "Everyone else" settings.
Bruce Tuskey ------------------------- Bruce Tuskey Sr. Principle Engineer Tuskey@gmail.com "All that is gold does not glitter, not all those who wander are lost:..." - Gandalf the Grey (JRR Tolkien) Edited: 1-Sep-2004 at 23:04 by Bruce Tuskey |
|
![]() |
|
![]() |
|
Default Access Records (those that apply to "Everyone Else") are those whose username is null. That fact will help you find the ones you are looking for.
string UName AccessRec ar { for ar in all mod do { UName = username(ar) if (null UName) UName = "Everyone else" yaddy... } } - Louie |
|
![]() |
FuseTalk Standard Edition v3.2 - © 1999-2009 FuseTalk Inc. All rights reserved.