Version Status field in QC11
Question ID: 104917
1
0

In QC 10, there is a field called Version Status for both requirements and test cases. For projects that have version control, a user can query on this field to find out if test cases or requirements are checked out or not.

In QC 11, I can’t seem to find this field. Can you tell me how to find out if test cases/requirements are checked out in QC 11 Enterprise Edition, for projects that have versioning enabled?

Marked as spam
Posted by (Questions: 122, Answers: 3)
Asked on March 22, 2013 1:28 pm
45 views
Answers (2)
2
Private answer

Lungri,

These fields have been taken out of the project. However, they are still available in the database as RQ_VC_STATUS (REQ table) and TS_VC_STATUS (TEST table). Your users should be able to write a query (perhaps via Excel report) to obtain this information.

ex.

 SELECT TS_VC_STATUS from TEST where TS_TEST_ID = '1000' 
Marked as spam
Posted by (Questions: 3, Answers: 168)
Answered on March 22, 2013 1:30 pm
0
The below query will return the Test IDs of any tests that are checked out. SELECT TS_TEST_ID FROM TEST WHERE TS_VC_STATUS = 'Checked_Out'
( at March 22, 2013 1:32 pm)
1
Private answer

Thanks for this, Jafar.

How would we query on a list of any checked out test cases, returning the test IDs for each?

Marked as spam
Posted by (Questions: 122, Answers: 3)
Answered on March 22, 2013 1:31 pm
EyeOnTesting

Welcome back to "EyeOnTesting" brought to you by Orasi Software, Inc.

X
Scroll to Top