Unable to access automated test scripts in a specific ALM folder , causing errors in UFT One
Question ID: 110608
0
0

When attempting to expand a specific folder in Test Plan in ALM that contains automated test scripts, we are getting “Failed to Get Test Value” error and folder will not expand. This appears to be the cause of errors that are occurring in UFT One when trying to access test scripts within this folder. Will attach screenshots of errors.

Marked as spam
Posted by (Questions: 193, Answers: 14)
Asked on August 11, 2023 10:29 am
44 views
Answers (1)
0
Private answer

This error is a classic issue going back to ALM 11 (2014).

It relates to component instances that belong to tests but point to non-existing components - it could be due to manual DB manipulation or database corruption.

See this knowledgebase article/support tip for full narrative:

It has code that can identify and resolve the non-existing components.

https://community.microfocus.com/adtd/sws-qc/f/itrc-895/89882/qc-alm-support-tip-failed-to-get-test-value-error-in-test-plan-module

From the article:

Fix

In order to fix the issue the following SQL queries should be executed:

1. First verify the issue is caused by non-existing components by running below query:

      select t2.BC_CO_ID from
(select distinct t1.TS_TEST_ID, t1.BC_CO_ID, c.CO_ID from
(select t.TS_TEST_ID, BC_CO_ID
from TEST t
inner join BPTEST_TO_COMPONENTS btc on t.TS_TEST_ID = btc.BC_BPT_ID)t1
left join COMPONENT c on t1.BC_CO_ID = c.CO_ID where c.CO_ID is null and BC_CO_ID > 0)t2

2. If the above query returns one or more results then execute the following:    
  
      update BPTEST_TO_COMPONENTS set BC_CO_ID = 0 where BC_CO_ID in
(select t2.BC_CO_ID from
(select distinct t1.TS_TEST_ID, t1.BC_CO_ID, c.CO_ID from
(select t.TS_TEST_ID, BC_CO_ID
from TEST t
inner join BPTEST_TO_COMPONENTS btc on t.TS_TEST_ID = btc.BC_BPT_ID)t1
left join COMPONENT c on t1.BC_CO_ID = c.CO_ID where c.CO_ID is null and BC_CO_ID > 0)t2)
Marked as spam
Posted by (Questions: 4, Answers: 509)
Answered on August 11, 2023 10:33 am
EyeOnTesting

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

X
Scroll to Top