Quantcast
Channel: All Quality Center / ALM Practitioners Forum posts
Viewing all 14708 articles
Browse latest View live

Re: Mandatory fields left empty via OTA API

$
0
0

Please help me for the below issue.

 

Have written code for creating defect using OTA.Getting error at field 'Defect Type' as required field cannot be provided with empty or space filled.But this field is not mandatory in the ALM project I am working with.

 

 

Regards

Gayatri


Re: Can not install ALM 11 - This file has no digital signature or the publisher is untrusted

$
0
0

If you cannot apply the Patches to your ALM server for any reason (like me)

You can try following option:

 

http://[your_alm_server_name]:8080/qcbin/start_a.jsp?cancelcrlcheck=true

 

This solved the issue to me!!! :)

ALM REST API Problem with " (quote) and ' (apostrophe/single quote) in query

$
0
0

Hi,

 

I'm new here and I have problems to correctly escape the special characters (" and ') in the queries.

 

My goal is to get the id of the test-set-folder, given it's name and the id of the parent. For Folders without quotes this works fine as:

http://<server>/qcbin/rest/domains/<>/projects/<>/test-set-folders?query={name["test"];parent-id['3461']}&fields=id

 

But the trouble comes with the following folders, which are all in the same parent-folder:

- test'single

- test"double

- test'2'single

- test"2"double

- test"2'both

 

I was not able to find a solution for those with only one quotation mark.

.../test-set-folders?query={name["test'single"];parent-id['3461']}&fields=id,name

gives the error:

Invalid expression ["test'single"];parent-id['3461']. Message: literal '];parent-id[' is illegal

Exception Id: qccore.invalid-filter-expression
 
 
simillarly for .../test-set-folders?query={name["test\"double"];parent-id['3461']}&fields=id,name
Invalid expression ["test\"double"];parent-id['3461']. Message: literal '];parent-id[' is illegal
Exception Id: qccore.invalid-filter-expression

 

 

 

Surprisingly the ones with 2 quotation marks work by using " at the beginning and end:

- .../test-set-folders?query={name["test'2'single"];parent-id['3461']}&fields=id,name

- .../test-set-folders?query={name["test\"2\"double"];parent-id['3461']}&fields=id,name

- .../test-set-folders?query={name["test\"2'both"];parent-id['3461']}&fields=id,name

 

Has anyone an idea how to proceed to get the id's of folders with one quotation mark in their name?

 

Thank You

andrin

 

 

 

Error after migration from QC 10 to new server ALM 11.52

$
0
0

Hello,

after the migration from QC 10 to new server ALM 11.52 according the migration documents of HP, i face some problems in the test plan module.

Everything seems ok after migration, test case, requirement and test set are available.

 

But if I start to change some values of a test case some information like the description, design steps and some other UDF field values disappear in the test case.

 

Do someone faced with the same problem after migration ? or 

Any idea what could be the problem in this project ?

 

Thank you and Regards

 

Can we access Database views from Dashboard queries?

$
0
0

Hi,

 

I want to know, if we create views in database, can we access those views in Dashboard --> Analyse View reports ?

I dont know if it is relevant or not. but We are using 11.5 version. I have never seen or know how we can do it. So if you guys have any idea about it. Please point me out in right direction.

Installing HPQC for evaluation

$
0
0

Hi,

We are planinng to adopt HPQC but want to evaluate/prototype it first.

Can you share the links to:

  • Evaluation copy
  • System requireements
  • Client server Architecture diagram
  • Installation instructions

 

Dependent Fields in QC Run Details screen: Questions

$
0
0

I have quite a large number of fields that i need on the Run Details screen and i only want a subset of the fields to appear depending on values selected in 3 fields on the same screen.

 

I have added the code to the Step_MoveTo procedure within the Manual Runner script to set IsVisible = true or IsVisible = false for the dependent fields depending on the values of the 3 above-mentioned fields (I have 3 blocks of IF-THEN statements, one for each of the 3 fields, with the code to set the fields as visible within the IF-THEN blocks).

 

QUESTION:

1. Is the Step_MoveTo procedure of the Manual Runner script the best place for this? 

 

Re: Installing HPQC for evaluation

$
0
0

ALM trial copy for download, and info about accessing ALM SaaS for trial, can be found here:

http://www8.hp.com/us/en/software-solutions/alm-software-development-testing/try-now.html

 

Installation documents come with the download. System requirements for the trial copy may be less than for the full product, and would be specified in the installation document. Architecture information would also be in the Installation document.

 

System requirements for the licensed product can be found here.

https://hpln.hp.com/page/alm-qc-enterprise-technical-specifications


Re: Dependent Fields in QC Run Details screen: Questions

$
0
0

No.

 

If you want to change the properties of fields in the Run Details dialog based on values in other fields you need to use Run_FieldChange to detect the value changing in one of the prerequisite fields and then set the properties for other fields accordingly.

 

In ALM 11.52 the Run_FieldChange subroutine does not exist by default, but if you add it then the system will automatically consume it, like any other _FieldChange subroutine for any other entity.

Re: Installing HPQC for evaluation

$
0
0

Thanks for your response.

 

I have downloaded HPQC v12.0 and will be installing a "PC Standalone" type on my local/windows 7 operating system. I will have Oracle v11 database on the same/local/Win7 system.

This should work, correct? or do you anticipate any issues in prototypoing with the above specifications?

Unable to login into HPQC v12

$
0
0

Hi,

I installed "PCStandalone" copy of HPQCv12 on my system (Windows7) and have the Oracle 11.x database. After completing the installation (summary attached), it directed me to "http://localhost:9443/qcbin/start_a.jsp" and is asking for username, password. I tried entering "Site Administrator Credentials", "HP ALM Service credentials". Which are the right credentials to be used?

Attached is error received. Please let me know how to get over it...

ALM 11.52: Business View 'Subject' filter excludes tests in sub-folders (inconsistent wth ALM UI)

$
0
0

Hi ALM Support Network,

 

I have just discovered Business Views and think they are amazing!

 

However, I have encountered an issue when attempting to filter tests based on the 'Subject' filter (which represents the parent folder in the tree view).

 

In the regular ALM UI, when this filter is applied, all tests in the given folder or in sub-folder are returned.

 

Howevere, when the same filter is applied for tests in the Business View Configuration Panel, only tests that are directly located in the given folder are returned.

 

See screenshot attached where 0 tests were returned even though the root folder was selected.

 

If this functionality is meant for the business user, then there needs to be a simple way to achieve this filtering.

 

Any advice?

 

Regards,

 

Israel

Re: Dependent Fields in QC Run Details screen: Questions

$
0
0

Thank you, 

 

Re: Unable to login into HPQC v12

$
0
0

Hi

 

This is due to the fact that you have no Project. You have to login to Site Admin

 

http://localhost:9443/sabin

 

and either load the Demo Project or create a project from scratch - then assign the user to the Project

 

Thanks

Martin

 

NOTE : The views expressed here are entirely my own

How to create new user field in test ?

$
0
0

I am unable to create new User field . While creating new  User Field in Test using QC integration . For QC integration we use TDAPIOLELib.dll and OTAClient.dll  . please provide the solution


Re: ALM 11.52: Business View 'Subject' filter excludes tests in sub-folders (inconsistent wth ALM UI

$
0
0

Yes, this is the flaw that really surprised me when I found it. There are enhancement requests raised already, and I hope HP will fix this soon.

 

Meanwhile, what you can do is use the fields representing the paths - in the case of Test Plan, use the AL_ABSOLUTE_PATH with a wildcard at the end for the relevant test folder.

ALM Robot problem

$
0
0

I am usingALMrobotto copyprodversion ona test host, and thento upgrade toALMversion 12.

now i have ALM 11.52, when I usea self-checkbefore copying,error is presented

Icompleteda customer registrationand site administration, what could it be? look at attachment too.

 

Error: Invalid server response[ERR_SEP]<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1"/>
<title>Error 404 Not Found</title>
</head>
<body>
<h2>HTTP ERROR: 404</h2>
<p>Problem accessing /servlet/tdsiteadminservlet/TDAPI_GeneralWebTreatment. Reason:
<pre>    Not Found</pre></p>
<hr /><i><small>Powered by Jetty://</small></i>
                                                
 </body>
</html>
Possible solutions:
1. Register HP Site Administration. Open the ALM destination server via Internet Explorer. Click on the Add-ins or Tools link. Click on HP ALM Client Registration  and select Register HP ALM Site Administration.
2. Remove all previous ALM Site Administration installations and register only a new one.
3.  Open your destination or source ALM server and check if the ALM service is running. If not, open Administrative Tools- > Services and try to re-run the ALM service                                              

How to modify email template in: QC 12, ALM 11.52

$
0
0

Hello,

 

is there any way to customize email template used in QC when automailing Defects?

If default template is used there is a lot of redundant fields, and I want to get rid of them.

 

As I administer few instances, this question applyes to QC12 and 11.52

 

best regards

Jacek

how restart hp alm 12 on linux ?

$
0
0

Dear All, I am using ALM 12. I want to restart my ALM VMs. Could you please help me.

1) Should we shut down PC, ALM, and the database prior to shutting down the VMs in order to take a snapshot?

2) If we should, how do we do that? I mean Linux commands / steps will be really helpful.

3) When we restart the VMs, will PC, ALM, and the database restart automatically, or do we need to start them? In what order should they be started?

 

please provide ALM,DB,PC services names and path.

Re: ALM 11.52: Business View 'Subject' filter excludes tests in sub-folders (inconsistent wth ALM UI

$
0
0

Thanks for the tip Jan.


What I ended up doing was creating fields to capture all of the parent folder names.

This needed Right Outer Joins (rather than just inner joins between parent folder ID and folder ID) so that i.e. if the most amount of parent folders used to store a test case in is 5, all test cases will be returned even if they don't have a value for the 'great-great-great grandparent folder' field.

 

Hope that enhancement request is closed soon so such messy workarounds aren't required :)

Viewing all 14708 articles
Browse latest View live


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