Is there a way to export the list of clearcase/quest users?
I saw the utility in the "user administration" program but it export everything and I only need the users that use clearcase/quest for the last year.
thanks!
Is there a way to export the list of clearcase/quest users?
I saw the utility in the "user administration" program but it export everything and I only need the users that use clearcase/quest for the last year.
thanks!
It seems that such an export should differ between ClearCase and ClearQuest, since only the latter has a user database (while the former -- ClearCase -- relies on system account).
You can check, for Clearquest:
ClearCase users are usually registered in a Windows group dedicated for that application (like "ClearCaseUsers
").
So you could try and list all the users of that group (or any group you configured ClearCase to use) in order to get the list of ClearCase users.
What kind of list are you looking for?
You can use ClearQuest OSLC CM REST API found here (https://jazz.net/wiki/bin/view/Main/RcmRestCmApi) to issue an http request and get a XML list of all ClearQuest users:
http://localhost:8080/oslc/cqrest/repo/7.0.0/db/SAMPL/record/?oslc_cm.query=&rcm.type=users
Where:
http://localhost:8080/oslc/cqrest/repo/7.0.0/db/SAMPL/record/
is a sample base URL. You would have to figure out what your base URL is. The following API documentation helped me figure that out https://jazz.net/wiki/bin/view/Main/CqOslcV2
You just submit that request through your browser (not IE) or in code and get back an xml response with the list of users.