Hi All
New to forum.
We are in the process of migrating from QC10 to ALM 11, and I am attempting to run a query in ALM that works perfectly in QC 10.
The query is as follows and the error is attached. Can anyone suggest what the issue is (path disguised by asterisks?
select a.PATH as TestSetPATH, ts_name as "Test Name", cy_cycle as "Functional Area", TC_Status as "Test Status"
from (SELECT cf_item_name, cf_item_id, cf_father_id, SYS_CONNECT_BY_PATH(cf_item_name, '\') PATH, LEVEL FROM cycl_fold START WITH cf_father_id = 0 CONNECT BY PRIOR cf_item_id = cf_father_id ) a, ( SELECT AL_DESCRIPTION, AL_ITEM_ID, AL_FATHER_ID, SYS_CONNECT_BY_PATH(AL_DESCRIPTION, '\') PATH, LEVEL FROM ALL_LISTS START WITH AL_FATHER_ID = 2 CONNECT BY PRIOR AL_ITEM_ID = AL_FATHER_ID ) aa, cycle, testcycl, test where tc_cycle_id = cy_cycle_id and cy_folder_id = cf_item_id and tc_test_id = ts_test_id and TEST.TS_SUBJECT = aa.AL_ITEM_ID and a.Path like '%************************%' and TESTCYCL.TC_STATUS IN ( 'N/A', 'Failed', 'No Run', 'Not Completed', 'Passed' )