It's all about the answers!

Ask a question

Delivered change set with someone else tasks associate with it.


Rahi J (29335) | asked Mar 06 '19, 6:10 a.m.

Hello,


Is there any possibility or utility available in SCM where I can see the Delivered change set with someone else tasks associate with it. within a streams ?
Input - Stream Name
Expected Output - CSV report with all the changes from all the components with the creator and task owner details.

Thanks,
Rahi


Comments
Ralph Schoon commented Mar 06 '19, 6:47 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER

One answer



permanent link
Shashikant Padur (4.2k27) | answered Mar 06 '19, 10:20 p.m.
JAZZ DEVELOPER
To get the information you need you have to write a script using the scm command line.

To get the change sets delivered by an user:
scm list changesets -r <repository_url> -w <stream_name_or_itemId> --creator <userid>

To know which work items were associated with each of the change sets:
scm list changes -r <repository_url> <change_set_itemId>

Your answer


Register or to post your answer.