1

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!

user3257666
  • 37
  • 1
  • 5

2 Answers2

0

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.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • Sorry,maybe because of my bad english im not being clear. I need the clearcase users (last users,like one year) I tought to export that info from the license but that is not possible since flex registry is registered only 16 licences (I dont know why). About what you say for the clarcase user group its fine but where I should find that info in the servers? – user3257666 Mar 25 '14 at 16:18
  • @user3257666 that would be for the Windows Admins to give you that list (provided your ClearCase admin give them the name of the group used to register all ClearCase users). If you know that group name and have enough right, you can try http://serverfault.com/q/49405/783. – VonC Mar 25 '14 at 16:23
0

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.

Erin Gibbs
  • 63
  • 1
  • 10