Is there a command in CC to get the latest UCM activity ID through which files were delivered to Integration stream from Developer stream.
Asked
Active
Viewed 116 times
1 Answers
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
-
Replace `aStream` by the integration stream name, and "`aPVob`" by the pvob of said stream. – VonC Dec 25 '13 at 08:25