I used ClearQuest to export a query to a csv containing information about all my developer activities. However, the description is truncated. Is there a cleartool command that can output the full description of a given activity?
相关问题
- How to restrict VOB read access in ClearCase (Wind
- preserving history when using mercurial ontop of c
- How to use ClearCase annotate sub-command?
- listing files checked in during last 2 days
- VS2008 and ClearCase : opening solution requests a
相关文章
- Provide version to independent files in clearcase
- How to undo checkout a file checked out from anoth
- Getting present working view in Clearcase
- What is the nature of a “MVFS filesystem” with Cle
- How to list only the name of the baselines in UCM
- Reuse a ClearCase view
- Value of using Git with ClearCase, AccuRev or Perf
- ClearCase: change branch type name?
You can use something like...
This list the changed set for the activity (excluding @@).
Source:
http://www.snip2code.com/Snippet/961/list-files-changed-in-clearcase-ucm-stre?fromPage=1
You can try
You need to use the fully qualified name of the activity:
activity:xxx@\mypvob
(Windows) oractivity:xxx@/vobs/mypvob
(Unix)You can also look into
fmt_ccase
, in order to describe only what you want out of the long description given by a simpledescr -l
.%[versions]CQp
would list all the versions of a given activity%c
would only display the comment associated with the activitySo this could be enough:
The headline would be obtained with
%[headline]p
.This data should be available, even though in a ClearQuest-enabled project, any UCM activity is auto-transitioned to a ClearQuest work item, linked through its SQUID (SUM ClearQuest Integration Doodad).
As mentioned here,
%[crm_record_id]p
and%[crm_state]p
give you access to the ClearQuest® record ID and the activity's state.However, regarding the comment specifically, you won't find it on the ClearCase activity.
As illustrated by this technote, it looks like this:
So the ClearCase comment is a generated one.
For accessing the Description field of a ClearQuest record, you need to use the ClearQuest API (VB script for instance):
%[crm_record_id]p
, as mentioned above.That would be something like: