cancel
Showing results for 
Search instead for 
Did you mean: 

Document the list of users of repositories

Former Member
0 Kudos

Hello Experts,

I need to excel(document) the list of users of all the repositories of a server

In how many ways can i do it ?

May i know the CLIX command to get the above result by repostiory specific

Kindly help me in this issue

Thanks,

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Thanks @Vignesh, @Ankush,

As you said, I tried as SELECT USERNAME FROM <REPOSITORY>-M000.A2I_CM_USERS; got the desired output

Former Member
0 Kudos

Hi Mahesh,

Since your query is resolved, so i request you to kindly close the thread.

Thanks and Regards,

Ankush Bhardwaj

Answers (3)

Answers (3)

Former Member
0 Kudos

If you do not wish to get into database or your company don't allow to access DB .

Then another options are

* Use exported repository schema.

1. Export repository schema.

2. Open schema file in text editor.

3. Copy user specific content into new text file.

4. Remote unwanted text using general replace functionality.

* Use api (Java, .Net, ABAP)

Java API provides GetUserListCommand (MDM Java API Library)

http://help.sap.com/javadocs/MDM71/com/sap/mdm/security/commands/GetUserListCommand.htmlYou should get equivalent command in .Net or ABAP api.

Former Member
0 Kudos

Hi Mahesh,

You can download Users of the repository from database tables directly. User of the repository are stored in database table A2i_CM_USERS. So you can create a select query on this table(as suggested in above post) to retrieve all the users. But this will give you only users and not the roles assigned to each user in the repository. If you need to download roles also along with users, then you would need to create a Join condition on Users and Roles tables and download the results.

And i don't thinnk that any CLIX command can give you the users of repository.

Please let me know if you have any other doubts as well.

Thanks and Regards,

Ankush

former_member226173
Active Participant
0 Kudos

Hi Mahesh ,

You can go to the Data Base Level , run the Command below post connecting it to the proper directory

Select * from ARICLE_M000.A2I_CM_USERS;

This will give you list of all the users which are in Your Repository.

Regards,

Vag Vignesh Shenoy