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

quality center maintenance and licenses?

$
0
0

Do licenses stop working when the maintenance contract expires?


How to Change ALM URL ?

$
0
0

Hi all,

 

       We currently accessing ALM using URL similar to  http://172.xxx.xxx.xxx:8080/qcbin

 

       But we need to change the url name like http://alm:8080/qcbin

 

 

       I know the network team can change this by mapping DNS or something like that.

        

       But I need to change using qcbin.war Files in installed folder (C:\Program Files\HP\HP Application LifeCycle                      Management 11.52\application\ ).

 

 

   NOTE : 

 

                  I Have Server access and using ALM 11.52

Help needed -Doc to setup LDAP authentication

$
0
0

can u please send the doc for how to set up LDAP authentication.

Activate Defect Module on Login?

$
0
0

Hi , is there any url or code by which we can directly login to a particular mode? as  in this case defect module?

I have readit somewhere qcbin/DefectsModule worked for earlier versions may be. but on ALM 11, it doesnt seem like working.

 

So any help would be great, to activate defect module automatically on login, doesnt mater where user last logged off.

 

Thanks

Getting the number of times all the test cases in a particular folder are run

$
0
0

Hi,

 

I am trying to get a report that will show me the number of times the test cases located inside a particular folder are run.

 

I browsed through the forum and find out the two parts:

 

1. How to get all the runs of a particular test:

 

Select * From RUN Where RN_TEST_ID = '20229'     

 

2. How to get all the unique test cases in QC:

 

SELECT
t.TS_TEST_ID as "Test ID",
t.TS_NAME as "Test Case Name",
tc.TC_STATUS as "Status",
tc.TC_ACTUAL_TESTER as "Tester",
tc.TC_ASSIGN_RCYC as "Release Cycle"
FROM TEST t
INNER JOIN TESTCYCL tc ON (t.TS_TEST_ID = tc.TC_TEST_ID)

 What I do not know is, how do I combine these? or Is there an effective way to get this done?

 

I want the output as an excel sheet and it should have the

 

Test ID

Test Case Name

Test Set Name

Executed Date

Status

Tester

Target Cycle in which it was executed

 

Any guidance?

Unable to Purge Test Execution Runs using OTA

$
0
0

Hi all,

 

I get an automation error on the last part of the code please see the screenshot, is someone able to help identifying the problem, i am using QC 11,52 and Excel VBA to run the code.

 

Public Sub PurgeTestSetRuns()

Dim tdc
Dim tsFoldername
Dim tSetName
Dim TSetFact, tsList
Dim theTestSet
Dim tsTreeMgr
Dim tsFolder
Dim nPath

Dim KeepLastCount
Dim DateUnit
Dim NumOfDateUnits
Dim PurgeStepsOnly

Set tdc = CreateObject("TDApiOle80.TDConnection")
tdc.InitConnectionEx "*"
tdc.Login "*", "*"
tdc.Connect "*", "*"


KeepLastCount = 4 'Keep at least 4 of each test's runs
DateUnit = 1 'Days
NumOfDateUnits = 4 'Purge starting 4 days ago
PurgeStepsOnly = False ' Purge both the runs and steps.


' Get the test set tree manager from the test set factory
'tdc is the global TDConnection object.
Set TSetFact = tdc.TestSetFactory
Set tsTreeMgr = tdc.testsettreemanager
' Get the test set folder passed as an argument to the example code
nPath = Trim("Root\AMX\Umbrella\System Tests\Automation_Testing\")

Set tsFolder = tsTreeMgr.NodeByPath(nPath)
If tsFolder Is Nothing Then
Err.Raise vbObjectError + 1, "RunTestSet", "Could not find folder " & nPath
End If

' Search for the test set passed as an argument to the example code
Set tsList = tsFolder.FindTestSets("ES_CITY_EXPORT_LIST_1")

If tsList Is Nothing Then
Err.Raise vbObjectError + 1, "RunTestSet", "Could not find test set in the " & nPath
End If

If tsList.Count > 1 Then
MsgBox "FindTestSets found more than one test set: refine search"
Exit Sub
ElseIf tsList.Count < 1 Then
MsgBox "FindTestSets: test set not found"
Exit Sub
End If
Set theTestSet = tsList.Item(1)

Dim TSTestFact, TestList
Dim tsFilter
Dim TSTst
'Get the test instances from the test set
Set TSTestFact = theTestSet.TSTestFactory
Set tsFilter = TSTestFact.Filter
tsFilter.Filter("CY_CYCLE") = theTestSet.Name


MsgBox "Filter Text" & tsFilter.Text

tdc.PurgeRuns tsFilter.Text, _
KeepLastCount, _
DateUnit, _
NumOfDateUnits, _
PurgeStepsOnly

MsgBox "Purge completed"

End Sub

 

Thanks in advance,

Fred

HP/ALM 11 - Need an Excel report showing all Tests and include linked defects

$
0
0

Hello - I have been tasked to provide a report of all tests but to also include the linked defect (BG_BUG_ID), should one exist.  Thanks to this forum I have the way to get tests that only have linked defects; but I am also needing to show all tests and I do not know how.  I know enough SQL to be dangerous, but not enough to figure out how to pull this as a report.  Below is what I have so far..(only showing a limited number of field required due to the size)

 

SELECT
BG_BUG_ID As 'Defect#'
, BUG.BG_USER_02 As 'Defect Type'
, TESTCYCL.TC_EXEC_DATE As 'Execution Date'
, TESTCYCL.TC_STATUS As 'Status'
, TESTCYCL.TC_TESTER_NAME As 'Responsible Tester'
, TESTCYCL.TC_ACTUAL_TESTER As 'Tester'
, TEST.TS_USER_04 As 'Test: Release'
, TEST.TS_USER_27 As 'Test: Business Requirement'
, TEST.TS_NAME As 'Test: Test Name'
, TEST.TS_USER_06 As 'Test: Master Project'
, TEST.TS_RESPONSIBLE As 'Test: Owner'
, TESTCYCL.TC_PLAN_SCHEDULING_DATE As 'Planned Exec Date'
, TESTCYCL.TC_USER_26 As 'Remarks'
, TESTCYCL.TC_PINNED_BASELINE As 'Baseline'
, TESTCYCL.TC_USER_05 As 'Borrower Name'
, TESTCYCL.TC_USER_04 As 'Borrower SSN'
, RUN.RN_BPTA_CHANGE_AWARENESS As 'Change Detection Mode'
, TESTCYCL.TC_USER_23 As 'CLV' ......

 

FROM
BUG

INNER JOIN LINK ON (BG_BUG_ID = LN_BUG_ID AND LN_ENTITY_TYPE IN ('TEST','RUN','TESTCYCL','CYCLE','TEST_CONFIGS'))
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')
LEFT JOIN TESTCYCL ON (LN_ENTITY_ID = TC_TESTCYCL_ID AND LN_ENTITY_TYPE = 'TESTCYCL')
LEFT JOIN CYCLE ON (LN_ENTITY_ID = CY_CYCLE_ID AND LN_ENTITY_TYPE = 'CYCLE')
LEFT JOIN TEST_CONFIGS ON (LN_ENTITY_ID = TSC_ID AND LN_ENTITY_TYPE = 'TEST_CONFIGS')

WHERE
TEST.TS_USER_06 = 'MP xxxxxx'

 

Any assistance you may provide will be most appreciated.

Query on permissions

$
0
0
We are using HP ALM 11.52.

Do we have an OTA script or any query to pull the roles and permissions that are available in the ALM project?

The report should have the details that we can see from 'Groups & Permissions' module.

Report should include all the modules and the permissions allowed by role

If you could help me , that would be great.

Scripting Validation check

$
0
0

Hi,

 

I am new to scripting, so excuse me for asking a really simple question.

 

I need to add a validation rule for defects. The status of a defect can only be set to Fixed, if also a Target release is filled in (i.e. the value of the field is <> "")

Where would I need to place such a check? Would this be in Bug_CanPost ? Also anyone that can share an example of the code for such a check?

 

Thanks

Delta between Test Lab and Test Plan

$
0
0

Hi,

 

I'm trying to extract a list of test cases in Test Plan not included in any of the test sets in a specific folder, but I'm not able to get it right.

 

Any idea on how to extract such a list. This is an ectract of the test cases I have in Test Plan which are not included in any test set in a specific folder in Test Lab.

 

Best fo regards,

Fredrik

How to upgrade a template project from ALM_v11.50(oracle server) to ALM_v12(sql server) ?

$
0
0

can the qcp file of the template project from v11.50(on oracle) be imported to the same version v11.50(on sql) without restoring the database of the project from oracle to sql? and then get upgraded to v12(sql)?

 

the ALM platforms are deployed on different application servers.

 

kindly guide me on this.

 

regards,

Rishi

How to change default "Subject" field in manual email via OTA?

$
0
0

Hey everyone,

 

I would like to adjust the default "Subject" field in a manual email via OTA, but I can't find anywhere what the field name of this field is. Each email ( for the defect and requirement module) should contain the release number in the subject. I already searched for the field names in the "Project Entities" but I can't find the fields of Email.

 

I'ts the Subject field in the following window:

http://prntscr.com/5t3hxd

 

Can someone please help me with this?

 

Thanks!

external resources could not be uploaded to the qc server repositery

$
0
0

i am exporting test cases from qtp to alm executing time i am getting this type of error.

 

 

external resources could not be uploaded to the qc server repositery.

When will ALM 12 have its Test Module on all the browsers

$
0
0

Hi All,

 

In my BU, we are using ALM 11.5, and we mostly use it for Test Management (Test Lab and Test Plan)

Last time i checked,  ALM 12.0 works on all the browsers but only the defect and requirement modules.

For Test Management you still had to use IE.

 

Does anyone know when the Test Module of ALM will be available for use on different browsers ?

 

Thanks,
Shreyance

How to change the photo on ALM landing page

$
0
0

I would like to change the photo which comes on the landing page of ALM 11.5, to a photo which shows the name of our Firm .

Is there any way to do that ?

 

 


HP ALM 12.01

$
0
0

Has anyone had anyone had any problems upgrading ALM 12.00 to ALM 12.01?  We have attempted to do this on a new Virtual Machine running Win Server 2008 R2.  HOwever, it is failing before it completes the install of ALM 12.01.

 

Thanks,

Exception has been thrown by the target of an invocation in HP ALM

$
0
0

Hi All,

 

 

i am getting an Error in HP ALM 11.5 VERSION, While running a test set in test lab, i am getting the Error message as"Exception has been thrown by the target of an invocation"

 

Regards,

Gopi

 

Custom Test Type Example InitializeComponent

$
0
0

I am trying to create a custom test type in .NET  following the example.

I pasted the code in the example, but some of the methods and attributes are not resolving.

 

Specifically the m_textBox, InitializeComponent() and TestTypeResource references are not being found.

What do I need to do to clean this up?

I am very new to .NET and would really appreciate some guidance to get me started on this.

Thanks in advance.

ALM metamodel documentation?

$
0
0

Is there any documentation for the full metamodel of the entities and relationships used in ALM? I have access to ALM V12, and I can try and reverse engineer all of the entity types and relations but surely there must be a document describing the information model inside ALM? My searching has not found any.

 

 

 

P.S. This thread has been moved from Requirements Management Information and News  to Quality Center Support and News Forum. - Hp Forum Moderator

Getting '' is not a valid floating point value error on trying to generate excel report in ALM_11

$
0
0

Hi,

 

I am trying to generate an excel report using HP ALM 11. On clicking the generate button, I am getting '' is not a valid floating point value error. see attached screenshot.

 

I have ALM 11.0 and MS-excel 2007. Please help me debug the issue.

 

Regards,

Ravi 

Viewing all 5491 articles
Browse latest View live


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