1

In UCM I have a view A and I want to find out on which UCM stream is created.
How can I find an UCM view on which stream corresponds?

Command "cleartool lsview -properties -full A" doesn't tell me anything about the stream.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
AlexM
  • 111
  • 4

1 Answers1

0

You can try:

cd /path/to/my/view
cleartool lsstream -cview

That allows you to get other information from that stream, like foundation baselines or baselines for a component.

Adding the -anc option, you see where that stream is located:

cleartool lsstream -cview -anc

With fmt_ccase, you can get its name directly:

cleartool lsstream -fmt "%n" -cview
Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • I forgot to mention, I already tried "cleartool lsstream ...." but is not working on a view created by another user. If I try the command on a view created by me it works. – AlexM May 12 '15 at 12:30
  • @AlexM what error message do you get? It shouldn't matter that the view is not created by you. `cleartool lsstream -view anotherView` doesn't work? – VonC May 12 '15 at 12:56