Hi,
Could someone help me with a query to list all test cases under a test plan folder with the folder structure included?
I am able to generate a list of all the test cases but this doesnt include the folder structure/path.
SELECT t.TS_TEST_ID,
t.TS_NAME,
t.TS_STEPS,
t.TS_SUBJECT,
t.TS_STATUS,
t.TS_ATTACHMENT,
t.TS_EXEC_STATUS
FROM TEST t, ALL_LISTS a
WHERE t.TS_SUBJECT = a.AL_ITEM_ID
AND a.AL_ABSOLUTE_PATH LIKE 'AAAAAJAABABRAAB%'
Any help would be much appreciated.
Thanks.