1

Is there a command in CC to get the latest UCM activity ID through which files were delivered to Integration stream from Developer stream.

KP -
  • 47
  • 4

1 Answers1

0

Not directly, but using cleartool lsactivity, you can list all activities of a given stream, and grep the ones with "deliver." in it, keeping the last one (the most recent one).

See more at "how to find the list activities delivered to integration stream on a particular day?": the command would be like:

cleartool lsact -in stream:aStream@\aPVob -fmt "%n\n"|grep deliver|tail
Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • Replace `aStream` by the integration stream name, and "`aPVob`" by the pvob of said stream. – VonC Dec 25 '13 at 08:25