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

Initialization has failed error on accessing the HP ALM 11

$
0
0

Hi,

 i know its repeated post, but i have tested with every browser and ALM explorer, whenever i click on Quality center or site adminsistrator, same issue, Initialization has failed  then i came across with ALM Client MSI Generator, i thought it will genrate client side component and i will be bale to access ALM login page, i ran this and got these files genrated, plz see attched file. but i am having the same issue, and i dont know wat to do with these file, do i need to copy and patse these files to some specific place? please help.

 

Thnaks


Re: Get list of tests from a subject folder in QC 12

$
0
0

You can add other conditions to the filter. For example:

 

testInstanceF.Filter("TS_USER_07") = Chr(34) & "R - VE20" & Chr(34)

testInstanceF.Filter("TS_USER_08") = "abc"

Re: C# ALM OTA API issue

$
0
0

Ramesh,

 

How would I add a comment to a test run?

 

RunFactory runFactory = (RunFactory)tsTest.RunFactory;

 

What would come next?

 

Thank you

Re: Upgrading issue: project migration from QC 10 to ALM 11.52

$
0
0

The schema owner has dba rights. The db admin account on the DB servers tab is System.

Install failing on another system with same configuration...

$
0
0

Hi,

I was able to install the HPQC v12.0 "PC standalone" on my desktop (screenshot attached). However when I try to install it on another system with same configuration (screenshot attached). It gives me error (OS not supported, screenshot attached). I want to set this new system so that another team can do there prototyping before adopting the tool.

 

Please suggest how to resolve this issue.

Re: Trial verison of ALM 12 for linux platform.

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

$
0
0

Thanks Schall. That's good to know.

 

Are you also able to confirm if the same issue, but for requirements has been fixed in 12.2?

That is, Business View 'Req Father' filter excludes requirements in sub-folders (inconsistent wth ALM UI)

ALM 11.52 - Column widths changing whenever business view is refreshed

$
0
0

Hi,

 

HAs anyone worked out how to prevent the colmn widths in Excel from changing whenever you refresh the data in a Business View?

 

Regards,

 

Israel


ALM in Cloud

$
0
0

Hi All,

 

I heard HP launched ALM in  cloud environment. Could anayone give me more information please?

 

Thanks

Re: REST API "Fast_Run_xxx" duplicate run entity issue

$
0
0

 

Same issue here in QC 11 through REST.

 

If you update the status in the Test Instance you will get a "Fast Run".  If you update it a second time on the same day,

you will only get another Fast Run if the status changes.  Changing other fields in the Test Instance will not trigger Fast Run creation if the last run has a name of Fast_Run_Date_Time.

 

From the User Guide definiiton of Run Name:

 

Fast_run indicates that ALM created this run when a user changed the Status field of the test instance manually without running the test.

 

 

Creating a run directly does not show a change in the Test Instance which is what people see when they look at a Test Set.

 

Still trying to find a workaround.  One idea is creating a run with the name Fast_Run_Date_Time and then updating the Test Instance.  But Time would have to match QC Server time to the second!

Re: ALM in Cloud

Re: ALM 11 “Object reference not set to an instance of an object”

$
0
0

I seem to only get this error when i try to save macro-enabled workbooks to ALM via the business view add-in.

 

Is that meant to work in later version of ALM?

This is what I currently have:

Product version: 11.52.341

Patch level: 1

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

$
0
0

Yes, for requirements too its working fine. I tested with ReQ Id and Req father ID in the filter.

 

Btw, I tested in 12.01 too. its working fine.

Re: ALM 11.52 - Column widths changing whenever business view is refreshed

$
0
0

HI,

By default , it is the width of maximum lenght of the data. ( i.e even you expand the column width , when refreshed, size will reset.)

but you can have few formattings, like Wraptext ( formatcells>wraptext), if the data lengthy.  this settings will remain even the report is refreshed.

 

Hope it helps.

 

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

$
0
0

This is not true for the Test Plan structure in 12.01 as far as I can see. If I choose to filter on the folder, the Test Plan tree is available in the filter dialog, but you can't filter on the path like ^Subject\Folder1\Folder2^. You will only get a single folder ID without sublevels in the filter.


Re: QC10 to ALM11 Extract, seeing Error "SYS_connect_by_path is not a recognized built-in funct

$
0
0

Hi Jan

 

As I am not an SQL user do you know if there  is an alernate way of coding the requirement?

Re: Get list of tests from a subject folder in QC 12

$
0
0

Thank you Jan, that helps me to solve the problem.

 

SQL query on defect module in HP ALM

$
0
0

I want to merge two queries in order to get informations of sub tab 'Audit Log' situated under 'History' tab in Defect module. This query must return the requested columns following those restrictions :                                                                             * The BG_RESPONSIBILITY returned must be the new value affected after change . 

* The BG_STATUS must show the old and new value of each change.

I performed this query but it doesn't return the suggested result of the BG_RESPONSIBLE column . I doubt that the sub query under AP_FIELD_NAME column doesn't fit . Any help for me please.

this is my query: 

 

 

SELECT B.BG_BUG_ID as ID ,BG_USER_15 as Num_QC_EDF, BG_RESPONSIBLE as Proprietaire, BG_STATUS as Statut, BG_PRIORITY as Priorite, BG_SEVERITY as Severite, BG_DETECTION_DATE as Date_Soumission, AP.AP_OLD_VALUE as OLD_STATUS , AP.AP_NEW_VALUE AS NEW_STATUS, AL.AU_TIME as ChangeDate, AU_TIME - BG_DETECTION_DATE as NumberOfDays FROM BUG B
INNER JOIN AUDIT_LOG AL
ON AL.AU_ENTITY_ID = B.BG_BUG_ID
INNER JOIN AUDIT_PROPERTIES AP
ON AL.AU_ACTION_ID = AP.AP_ACTION_ID
AND AL.AU_ENTITY_TYPE = 'BUG'
AND AL.AU_ACTION_ID= AP.AP_ACTION_ID
AND AP_FIELD_NAME IN ('BG_STATUS', '"BG_RESPONSIBLE" = "SELECT AP_NEW_VALUE as Proprieratire FROM BUG B INNER JOIN AUDIT_LOG AL ON AL.AU_ENTITY_ID = B.BG_BUG_ID INNER JOIN AUDIT_PROPERTIES AP ON AL.AU_ACTION_ID = AP.AP_ACTION_ID AND AL.AU_ENTITY_TYPE = "BUG" AND AL.AU_ACTION_ID = AP.AP_ACTION_ID AND AP_FIELD_NAME ="BG_RESPONSIBLE" ORDER BY BG_BUG_ID, AU_TIME DESC" ')
AND BG_STATUS NOT IN('Annulé', 'Clôturé', 'Livré')
ORDER BY BG_BUG_ID, AU_TIME DESC

 

Export Project to file SAPI

$
0
0

Hello,
 
I cant export project to .QCP file with this code :
---
Sub ExportProject()
Dim sDomainName As String
Dim sProjectName As String
Dim sFileName As String
Dim sReply As String
On Error GoTo err
sDomainName = "Default"
sProjectName = "TEST"
sProjectName = "D:\export\TEST.qcp"

Dim m_SAClient As New SACLIENTLib.SAapi
m_SAClient.Login "https://*************:8443/qcbin", "admin", "******"
MsgBox ("Admin Logged ")

sReply = m_SAClient.ExportProject(sDomainName, sProjectName, sFileName)
MsgBox sReply

m_SAClient.Logout
Exit Sub
err:
MsgBox "Program failed:" + err.Description
End Sub
---
 
 I have a compilation error inthis line : sReply = m_SAClient.ExportProject(sDomainName, sProjectName, sFileName)
 
Thanks in advance

Need a Query to fetch current and previous status of Defect

$
0
0

Hi,

 

 

Can any of you help me out to get a defect report whihc has the current status (closed) and previous status(Rejected) of defect.

 

Thanks

Uttarraj

Viewing all 14708 articles
Browse latest View live


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