ALM Analysis Report for the Number of Test Steps created in Test Plan
Question ID: 107341
0
0

We are in need of an analysis report for the number of test steps created in ALM. We have multiple folder levels in Test Plan, so we would like to report on a given folder level, as well as including some of the test steps from sub-folders from Test Plan.

Marked as spam
Posted by (Questions: 239, Answers: 31)
Asked on January 16, 2017 7:08 pm
146 views
Answers (1)
0
Private answer

The query below will get you the number of test steps created in Test Plan. You will need to tweak it some to fit your needs. First, you will need to access Site Admin, locate and expand the project you are wanting to gather the info from and select the 'CYCL_FOLD' table. Record the value(s) in the CF_ITEM_PATH column for the parent or child folder - For testing purposes, I used the Test_Folder_Parent - AAAAAA, and Test_Folder_Child - AAAAAAAAA as you will see in the queries below.

SELECT COUNT(DS_ID) As 'Test Step Count in Test Plan'
FROM DESSTEPS, CYCLE, CYCL_FOLD, TESTCYCL
WHERE CF_ITEM_PATH IN ('AAAAAA', 'AAAAAAAAA')
AND CF_ITEM_ID = CY_FOLDER_ID
AND TC_CYCLE_ID = CY_CYCLE_ID
AND TC_TEST_ID = DS_TEST_ID

Marked as spam
Posted by (Questions: 2, Answers: 300)
Answered on January 16, 2017 7:09 pm
EyeOnTesting

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

X
Scroll to Top