Welcome to the Jazz Community Forum
How to get RTC component list
2 answers

Well, you open the Eclipse client, connect to the repository and the project area.Then you open the Source Control node in the Team Artifacts view and you can see all components visible to you.

John,
in Eclipse RTC client open search --> Jazz Source Control --> Components, pick your server and set the project / team area as owner. This will display a list of components at least with owner. However, the list is not exportable.
To get an exported list with all info you require currently mandates to script against the SCM CLI. The following commands will create the list you envision:
>scm list components -r <repo> --projectarea <projectAreaName>
parse the output and pipe the list of component IDs into:
>scm get attributes --name --ownedby --visibility -C <ComponentID>
If you have a long list of components do set the -max parameter in the first command.
If you have access to Perl this would be a quick script of a few lines, all the easier as the scm commands support -json output which you could easily parse and write out as .csv
- Arne
in Eclipse RTC client open search --> Jazz Source Control --> Components, pick your server and set the project / team area as owner. This will display a list of components at least with owner. However, the list is not exportable.
To get an exported list with all info you require currently mandates to script against the SCM CLI. The following commands will create the list you envision:
>scm list components -r <repo> --projectarea <projectAreaName>
parse the output and pipe the list of component IDs into:
>scm get attributes --name --ownedby --visibility -C <ComponentID>
If you have a long list of components do set the -max parameter in the first command.
If you have access to Perl this would be a quick script of a few lines, all the easier as the scm commands support -json output which you could easily parse and write out as .csv
- Arne