Quantcast
Channel: Quality Center / ALM Practitioners Forum topics
Viewing all 5491 articles
Browse latest View live

How to get Release Information to Test Report section in HP ALM

$
0
0

In HP ALM Project Reporting, there is no option to get Release details (under "Add Report Section") directly. I have created a custom field under Release to capture Release Risk. Need to get that info to Project Report. But unable to do it.

Any suggesiton will be helpful.

Thanks,

Soum

 

 


http://myhealthpeak.com/hl12-customer-reviews/

$
0
0

Since your body realizes that hoisted glucose causes serious harm to organs, it tries to limit the harm by making cautious move. As hl12 rises the little veins begin to restricted, decreasing the stream of hl12 getting to the organs. The higher the glucose, the hl12 more the veins limit. Tragically this debilitates course, and decreases the measure of supplements and oxygen that get to the organs and nerves of the body, and in addition their capacity to divert cell squander. This starts to harm cells in the little nerves of the hands and feet (why you may have shivering, agony, or frosty hands and feet).

http://myhealthpeak.com/hl12-customer-reviews/

Updated data is missing in Test case

$
0
0

Hi

We are following below steps to update data/text in Test Plan

  1. Navigate to Test Plan
  2. Select the required test case
  3. Make changes to data/text
  4. click on Save button
  5. navigate to the next test case

When we navigate to the previous test case, changes which we made are gone.

Please share some input on why this is happening and what do we need to do to resolve this issue.

We are using HP ALM version 11.52

Thanks.

Migrating an ALM project from Oracle to MS SQL Sevrer

$
0
0

We have 2 ALM instances. Instance A (v11.5) runs on Oracle DB, Instance B (v12.5) on MS SQL Server. We have a need where we need to migrate one project in Instance A to Instance B. I went through older posts on this topic. They all suggest adding the new DB in Site Admin. That is not an option for us. 

I dont think a project export to qcp file is a viable option here as well. Only option seems to be exporting the db schema, file repository, editing dbid.xml and restoring them on the new instance. But if I had to do that, can a dmp file from oracle db be imported into MS SQL Server? I see in forums that it is not possible to import directly.

Has anyone gone through this excercise? Any advice/info is appreciated.  

How to acess AUDIT_LOG & AUDIT_PROPERTIES table using OTA VB script

$
0
0

I am newbie to OTA vb script. I am not QC Admin, so I would suppose I have limited acess to QC DB. As I can see "New Excel report" is disbaled in HP ALM 11 Dashabord->Analysis view for me.

I would like to extract a report where I have updated a defect comment field or other filed such as Assingn TO, using OTA. I found couple of SQL query that can access AUDIT_LOG & AUDIT_PROPERTIES to retreive the data. 

My question is,

1) How to use SQL query within OTA to acess these tables ?

2)Extract the report in Excel format.

Business views report Dynamic query

$
0
0

Hello All

We had a request placed that some of our users would like to be able to view all tests within a top level folder instead of diving into each test set folder to view tests and related defects.  The DQL query below works, but the problem is that it is  "hard coded" in the view report.  Is there any way by use of a variable or something else what would allow the user to enter file name within the business view excel report so it can be more dynamically, and use the string that they enter within the nested sub-query?  Thanks in advance!

 

Select test.id,
  test.name,
  test.exec_status,
  test.description,
  defect.id As "Defect ID",
  defect.status,
  test_set_folder.name As "Test Folder Name"
From test
  Left Join defect_link On test.id = defect_link.second_endpoint_id And
    defect_link.second_endpoint_type = 'TEST'
  Left Join defect On defect.id = defect_link.first_endpoint_id
  Inner Join test_instance On test_instance.test_id = test.id
  Inner Join test_set On test_instance.cycle_id = test_set.id
  Inner Join test_set_folder On test_set.parent_id = test_set_folder.id
Where test_set_folder.hierarchical_path Like (CONCAT((Select
    test_set_folder.hierarchical_path From test_set_folder
  Where test_set_folder.name Like 'Name of Folder Here'), '%'))

Business View Excel Report "Row Limit" gets stuck

$
0
0

I can generate Business View Excel Reports from HP ALM or within the "HP ALM" add-in tab in excel for 30 or less rows.
But when I change the "Row Limit" within the excel add-in tab to any number over 30 and refresh the report, it gets stuck on the dialog below:

"Generating Data For Worksheet: ...

Server executing query: Project 1 of 1"

Any help on how to resolve this issue is greatly appreciated.

Thanks.

System Info:
HP ALM v12.50
Oracle 12c
MS Excel 2013 (15.0.4911.1000) 32-bit

In HP ALM Analysis view > New Business View Excel Report
Installed the "Excel Report Add-In" from the created BV Excel Report "Configuration" tab.

For Excel 2013 - Installed "Business Views Microsoft Excel Add-in" 12.50 1.7 MB Dec 16, 2015 from
https://marketplace.saas.hpe.com/appdelivery/content/business-views-microsoft-excel-add

Host becomes not operational during test runs

$
0
0

Hi,

I'm using ALM 12.01, UFT 12.2 and have Lab Management enabled. 

Currently there is only one testing host.

Following scenario:

  • The functional test set has 8 Tests. The total run time is about 2 ½ hours.
  • During the runs the host becomes “Not operational” 
  • Error message: Host 'myhostname' ('1010') is about to become non operational and be replaced. The host is used by BVS run '1519' of BVS '1559' (timeslot '1558'). Reason: ALM Lab Service could not reserve the testing tool after 5 retries because The testing tool is currently running a test..
  • This occurred at this timestamp: 22.03.2017 11:33:31
  • The error message is kind of true… There is a test running. The test case finished with a Passed status at  11:37:14
  • The next test in line will not start because of the status “Not operational”

Can you please explain why this is happening? Why does ALM tries to start a new testrun while the other test is still running? 

Is there any setting that I'm missing? Is there anything that I need to configure in the UFT tests?

Thanks and best regards

Beate


New to SQL ALM - Test Instance link to Defect

$
0
0

Hi,

I am new to ALM, and have beginner experience in building select statements in PL/SQL but not much else.

I need a new report showing defects with an outer join on test instance, and I have seen plenty of examples in community with others asking for the same.

However when i try an copy and paste the SQL, the objects/tables aren't found.  For example;

SELECT
BG_BUG_ID, TS_TEST_ID, RN_RUN_ID
FROM
BUG
INNER JOIN LINK ON (BG_BUG_ID = LN_BUG_ID AND LN_ENTITY_TYPE IN ('TEST','RUN'))
LEFT JOIN TEST ON (LN_ENTITY_ID = TS_TEST_ID AND LN_ENTITY_TYPE = 'TEST')
LEFT JOIN RUN ON (LN_ENTITY_ID = RN_RUN_ID AND LN_ENTITY_TYPE = 'RUN')

There is no Bug table in my version of ALM (V12.53). Am i missing something obvious? Where does 'bug' come from? (Older version maybe?)

Jan! Help!

$
0
0

For all actually but probably in Jan's area of expertise....

I am in workflow for a template project and I am trying to get the value of STEP_DESCRIPTION for step 1 of the selected test in a test set in the test lab through Template_ActionCanExecute ....

 

Function Template_ActionCanExecute(ActionName)
  On Error Resume Next

  Template_ActionCanExecute = Template_DefaultRes
  On Error GoTo 0

  if ActiveModule =  "Test Lab" and ActionName = "RunSQLTest" then
   msgbox "yes"
   dim mytest
    mytest = TestSetTest_Fields.Field("TC_TEST_ID").Value

    myteststep = Test_Fields("TS_STEPS")

    Step_Fields.Field("ST_DESSTEP_ID").Value
    myteststepvalue = Field("ST_DESCRIPTION").Value
  end if

  msgbox mytest
  msgbox myteststep
  msgbox myteststepvalue

End Function

So I can get the ts_test_id from the first statement, kind of stuck where I go from there, any help?

 

ps.. this is what I get back when I run the action...

Error at Line 43, (character 5)

Type mismatch: 'Step_Fields':

====================

mytest = TestSetTest_Fields.Field("TC_TEST_ID").Value

==> myteststep = Step_Fields("ST_DESCRIPTION").Value

====================

 

Ed.

 

 

JIRA 7.3.3 compatible with HP ALM Synchronizer 12.53 ?

$
0
0

We are required to upgrade our JIRA from 7.0.4 to 7.3.3.

We also have connectivity with HP QC via synchronizer 12.53

Is JIRA 7.3.3 compatible with HP ALM Synchronizer 12.53 ? 

If not, what latest version of JIRA is compatible with HP ALM Synchronizer 12.53 ? 

Appreciate for earliest response, as our upgrade activities are now waiting for this confirmation 

Thanks much in advance.

 Regards,

Lokesh

ALM REST API: Locking test-instance receives error "Missing frec attribute 'TESTSET'"

$
0
0

hi,

I've come pretty far thx to these forums in the usage of the HP ALM REST API.

I can create tests, test-sets and test-instances.

but when i try to lock a test-instance I get this error:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?><QCRestException><Id>qccore.general-error</Id><Title>Failed to lock object</Title><StackTrace>com.hp.alm.platform.frec.CTdFrecException: Missing frec attribute 'TESTSET'
at com.hp.alm.platform.frec.CFrecRecord.getMustValue(CFrecRecord.java:257)
at com.hp.alm.platform.frec.CFileRec.getMustValue(CFileRec.java:625)
	wrapped in com.hp.alm.platform.frec.CTdFrecException: Fail to get a must attribute 'TESTSET'

shouldn't my request to generate the test instance have already brought this up. Here's the XML:

<Entity><Fields><Field Name="test-config-id"><Value>231676</Value></Field><Field Name="test-id"><Value>230674</Value></Field><Field Name="cycle"><Value>6269</Value></Field><Field Name="cycle-id"><Value>6269</Value></Field><Field Name="subtype-id"><Value>hp.qc.test-instance.MANUAL</Value></Field></Fields></Entity>

all mandatory fields are set.

and here the generated entity response xml:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?><Entity Type="test-instance"><ChildrenCount><Value>0</Value></ChildrenCount><Fields><Field Name="test-instance"><Value>15</Value></Field><Field Name="eparams"><Value/></Field><Field Name="pc-mobile-attributes"><Value/></Field><Field Name="user-template-01"><Value/></Field><Field Name="pc-mobile-host"><Value/></Field><Field Name="pc-host-name"><Value>Any</Value></Field><Field Name="plan-scheduling-date"/><Field Name="plan-scheduling-time"><Value/></Field><Field Name="id"><Value>150505</Value></Field><Field Name="ver-stamp"><Value>1</Value></Field><Field Name="pc-mobile-host-name"><Value/></Field><Field Name="os-config"><Value/></Field><Field Name="pc-testing-host"><Value>Host with purpose(s):</Value></Field><Field Name="host-name"><Value/></Field><Field Name="test-config-id"><Value>231676</Value></Field><Field Name="data-obj"><Value/></Field><Field Name="name"><Value>ermittleAngebote [15]</Value></Field><Field Name="has-linkage"><Value>N</Value></Field><Field Name="pinned-baseline"><Value/></Field><Field Name="pc-purpose"/><Field Name="exec-date"/><Field Name="cycle-id"><Value>6269</Value></Field><Field Name="cycle"><Value>6269</Value></Field><Field Name="assign-rcyc"><Value/></Field><Field Name="exec-time"><Value/></Field><Field Name="last-modified"><Value>2017-03-29 09:07:53</Value></Field><Field Name="status"><Value>No Run</Value></Field><Field Name="iterations"><Value/></Field><Field Name="pc-mobile-purpose"><Value/></Field><Field Name="exec-event-handle"><Value/></Field><Field Name="actual-tester"><Value/></Field><Field Name="is-dynamic"><Value/></Field><Field Name="attachment"><Value/></Field><Field Name="order-id"><Value>22</Value></Field><Field Name="test-id"><Value>230674</Value></Field><Field Name="subtype-id"><Value>hp.qc.test-instance.MANUAL</Value></Field><Field Name="pc-location"><Value/></Field><Field Name="pc-attributes"><Value/></Field><Field Name="environment"><Value/></Field><Field Name="owner"><Value/></Field><Field Name="bpta-change-awareness"><Value/></Field></Fields><RelatedEntities/></Entity>

the request to lock is just a simple http "POST" request to url
${serverUrl} +"/qcbin/rest/domains/X/projects/Y/test-instances/150505/lock"

can anyone see what i'm doing wrong? or what's actually missing?

any help appreciated.

 

ps i tried the same code to update the exec-status on the test. it worked fine...

so I'm confident it's just something with the generation of the test-instance entity... or something else I overlooked...

 

pps we are currently using hp alm 12.20

i want to merge 2 sql queries in ALM for pulling excel reports,can anyone help me out??

Aris 9.8 problem

$
0
0
Hi, I am trying to import Aris xml file and getting following error :
Import Failed. Exception while posting model 'fbfc8141-ede2-11e6-5106-00155d849c0d'.
Exception: Failed to Import Model Post Process at Mercury.TD.Client.Ota.QC9.IBPModel.ImportPostProcess(Boolean UpdateFlag, Int32 ParentId)
at HP.ALM.QC.OTA.Entities.Core.BPModel.ImportPostProcess(Int32 parentReqId, Boolean updateRepReqFlag)
at HP.ALM.QC.OTA.Entities.Core.BPM.BPModelImportManager.PostModel(BPModelDataDescriptor modelDataEntity, BaseModelImporter modelImporter, Dictionary`2 folderMap, Int32 targetFolderID, Int32 targetRepReqFolderID, BPModelAttributeMapping attributeMapping, String fileName, Boolean shouldUpdateRepReq, String& resultMessage)

Does anyone knows what could be problem please ?

Regards,

Krešimir

new defect field is incorrectly display only

$
0
0

I am adding a new field to the defects module (version 12.01). It worked in the test environment and in one pro project, but in the other pro project it is display only. I am not doing anything to make it this way and cannot figure out any way to fix it. I would upload picutres but I don't seem to have the permissions to do that. Can anyone help me with this issue?

 

 

 


ALM REST API: Locking test-instance error: Missing frec attribute 'TESTSET'

$
0
0

hi,

I've come pretty far thx to these forums in the usage of the HP ALM REST API.

I can create tests, test-sets and test-instances.

but when i try to lock a test-instance I get this error:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?><QCRestException><Id>qccore.general-error</Id><Title>Failed to lock object</Title><StackTrace>com.hp.alm.platform.frec.CTdFrecException: Missing frec attribute 'TESTSET'
at com.hp.alm.platform.frec.CFrecRecord.getMustValue(CFrecRecord.java:257)
at com.hp.alm.platform.frec.CFileRec.getMustValue(CFileRec.java:625)
	wrapped in com.hp.alm.platform.frec.CTdFrecException: Fail to get a must attribute 'TESTSET'

shouldn't my request to generate the test instance have already brought this up. Here's the XML:

<Entity><Fields><Field Name="test-config-id"><Value>231676</Value></Field><Field Name="test-id"><Value>230674</Value></Field><Field Name="cycle"><Value>6269</Value></Field><Field Name="cycle-id"><Value>6269</Value></Field><Field Name="subtype-id"><Value>hp.qc.test-instance.MANUAL</Value></Field></Fields></Entity>

all mandatory fields are set.

and here the generated entity response xml:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?><Entity Type="test-instance"><ChildrenCount><Value>0</Value></ChildrenCount><Fields><Field Name="test-instance"><Value>15</Value></Field><Field Name="eparams"><Value/></Field><Field Name="pc-mobile-attributes"><Value/></Field><Field Name="user-template-01"><Value/></Field><Field Name="pc-mobile-host"><Value/></Field><Field Name="pc-host-name"><Value>Any</Value></Field><Field Name="plan-scheduling-date"/><Field Name="plan-scheduling-time"><Value/></Field><Field Name="id"><Value>150505</Value></Field><Field Name="ver-stamp"><Value>1</Value></Field><Field Name="pc-mobile-host-name"><Value/></Field><Field Name="os-config"><Value/></Field><Field Name="pc-testing-host"><Value>Host with purpose(s):</Value></Field><Field Name="host-name"><Value/></Field><Field Name="test-config-id"><Value>231676</Value></Field><Field Name="data-obj"><Value/></Field><Field Name="name"><Value>ermittleAngebote [15]</Value></Field><Field Name="has-linkage"><Value>N</Value></Field><Field Name="pinned-baseline"><Value/></Field><Field Name="pc-purpose"/><Field Name="exec-date"/><Field Name="cycle-id"><Value>6269</Value></Field><Field Name="cycle"><Value>6269</Value></Field><Field Name="assign-rcyc"><Value/></Field><Field Name="exec-time"><Value/></Field><Field Name="last-modified"><Value>2017-03-29 09:07:53</Value></Field><Field Name="status"><Value>No Run</Value></Field><Field Name="iterations"><Value/></Field><Field Name="pc-mobile-purpose"><Value/></Field><Field Name="exec-event-handle"><Value/></Field><Field Name="actual-tester"><Value/></Field><Field Name="is-dynamic"><Value/></Field><Field Name="attachment"><Value/></Field><Field Name="order-id"><Value>22</Value></Field><Field Name="test-id"><Value>230674</Value></Field><Field Name="subtype-id"><Value>hp.qc.test-instance.MANUAL</Value></Field><Field Name="pc-location"><Value/></Field><Field Name="pc-attributes"><Value/></Field><Field Name="environment"><Value/></Field><Field Name="owner"><Value/></Field><Field Name="bpta-change-awareness"><Value/></Field></Fields><RelatedEntities/></Entity>

the request to lock is just a simple http "POST" request to url
${serverUrl} +"/qcbin/rest/domains/X/projects/Y/test-instances/150505/lock"

can anyone see what i'm doing wrong? or what's actually missing?

any help appreciated.

 

ps i tried the same code to update the exec-status on the test. it worked fine...

so I'm confident it's just something with the generation of the test-instance entity... or something else I overlooked...

 

pps we are currently using hp alm 12.20

Re-order Folders/Subfolders under Test Plan inn ALM

$
0
0

Hi All,

 Is there any way to reorder existing Folders/SubFolders under Test Plan in ALM?

 Regards,

Leya

ALM Synchronizer Server (Window System) Migration - Change of the Local Hosting System

$
0
0

Hi,

Presently we have installed ALM synchronizer in a test system for sync defect data between ALM and TFS. Here synchronizer is working fine. But due to change in company policy, we need to change ALM synchronizer hosting system.

Could you please suggest for an way to migrate the existing sync data (which is stored in the existing sync server's database).

Thanks in advance.

Kumaresh Mondal

Issue:Multiple test Set execution after schedulling multiple test Sets ifrom ALM QC 12.21

$
0
0

Hi,

I am facing issue regarding batch run of automation cases

I want to schedule my test set with following scenario

1.Test set 1  having schedule time 11:00 AM with 5 Test cases

2 test set 2 having schedule time 11:10 with 5 test cases

3. start execution from first test set

Issue: till 11:10 first test set is running fine but whateve test cases which are left in test set 1 is skipped and started running second test set.

Question is how to define exect finishing time of test set 1 so we can manage second one and so on..

Is there any varibale where we can configure last finished time and start run after this for test set 2?

 

Please help me:I have 15000 automation cases to run.............So required batch executions........................

Migrating DB server in Application life cycle management

$
0
0

Hi All,

We are migrating DB server from SQL server to new SQL server

I would like to know the steps involved in making this happen

 

Regards

Vishnu V

Viewing all 5491 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>