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

Multiple Item cut

$
0
0

Hi there,

sorry for my english, i hope my question will be understandable. I'm quite new here.

Precondition: The user makes multiple selection in Req module and cuts them

My goal is to get somehow a list (@ ActionName: "act_req_cut") with all of the selected Req Items above. I would like to use these RQ_REQ_ID values for a specific function in my workflow. 

Any help would be appreciated.

HP ALM Ver. 12.21 

Thanks


Query to retrieve the latest status of test cases including No RUN

$
0
0

Hi All

I am looking for query to retrieve the test cases along with latest test status of test cases including NO RUN Status as well. I need below fields to be retrieved in excel report

Test Folder name

Test Set Name

Test Case Name

Test Status

Execution Date

Tester Name

Below I got from google but below doesnt include the NO RUN status and provides all the run status rather than latest run .

SELECT
CF_ITEM_NAME as "Test Set Folder Name",
CY_CYCLE as "Test Set Name",
TS_NAME as "Test Case Name",
RN_STATUS as "Test Case Status",
RN_TESTER_NAME as "Tester Name",
RN_EXECUTION_DATE as "Execution Date"
FROM TEST b, CYCLE c,RUN d,CYCL_FOLD e
where
c.CY_CYCLE_ID=d.RN_CYCLE_ID and
d.RN_TEST_ID=b.TS_TEST_ID and
e.CF_ITEM_ID=c.CY_FOLDER_ID and
RN_HOST IS NOT NULL and
RN_TESTER_NAME IS NOT NULL and
CF_ITEM_PATH like 'AAAAAL%'
ORDER BY cy_cycle ASC

 

Update Defect Detection Date When Status is Set to Reopen

$
0
0

Hello,

I was wondering if its possible to update the defect detected date to current date when ever the status is set to "Reopen".Just a note we currently have the detected on date set to readonly state once the date and time is captured when logging a defect.Please share if any sample workflow code that could be used for the same and the sub routine it has to possibly be implemented in defect workflow.

Thanks

Re: Using the HP ALM OTA API for creation of Test Sets

$
0
0

Hi Phil

Thanks for the post, in the end i did something slightly different but having given your code a whirl and that work as well!!

Thanks

Use of ALM 12.20 MSI

$
0
0

Hi 

I have a client who asked for the MSI for our instance. Using the MSI Add-In I packaged a MSI and gave it to them. They installed it successfully, however when then going to the ALM URL (in this case a FQDN) the ALM components downloaded.

I was under the impression if the MSI was installed that the ALM components would not download each time the URL was accessed., is this correct? I have had a quick go within our systems and the same behaviour was shown. Our client uses VDI to access ALM, so each time they end the VDI session all 'user' profile information is lost. Therefore each time a user tries to access ALM the components are downloaded each time. We were hoping using the MSI would overcome this.

So, before i go assuming the MSI has been generated incorrectly, the questions I have are:

Once a MSI has been installed will the ALM components download each time the ALM URL is accessed?

On installing the MSI does this update elements on the machines Registry (HKEY_CURRENT_USER\SOFTWARE\MERCURY ITERACTIVE\.......)?

 

Any help would be appreciated

Re: Update Defect Detection Date When Status is Set to Reopen

$
0
0

Quick update.The below worked for me.

If Bug_Fields("BG_STATUS").IsModified AND Bug_Fields("BG_STATUS").Value = "Reopen" Then
Bug_Fields("BG_DETECTION_DATE").Value = Date
End If

Re: New Defect .. "detected in" and "release" tab values issue

$
0
0

The "Detected in Release" and "Detected in Cycle" drop down values in defects module comes from the Management Module-->Releases .You can create your releases there and it shows up in defects drop down.

Re: Edit the Values of Project List

$
0
0

I couldn't understand your need properly.It seems you were using a custom list for a specific field and it seems to have 3 values and no sub items for the 3 values.So are you trying to add subitems under those 3 items ??

If so you go to that list from project entities (field -->Open list) or from the project lists and open it.Click on the item and create new subitem under it.You can also refer to the HP admin guide and project customization area for more information


Re: how to fix/prevent conversion of symbols

$
0
0

I'm using 12.01 and the Requirement Description can handle any character without converting.

Is your problem with some spreadsheet upload, or creation through OTA, or did you actually mean the Requirement Name which can't accept special characters.

 

 

Quality Center Installation

$
0
0

Hi

I want to install the Quality Center Express trial editional locally to evaluate its pros and cons. But unfortunately I havent been successful at all. I downloaded an ISO file which I extracted using Winrar and that opens up an ALM manager. I dont need access to other tools an utilities, just need Quality Center.

Can someone point me to the instructions/steps on how to download Quality Center on a Windows 7 machine that people can use on that machine? We just need this for evaluation purposes. If we like it, we will but the software.

Re: ALM 12 Database server setup failed

$
0
0

I read all the post online and no direct answer for me so far.

 

Finally I got the solution here. (I installed HP ALM 12.5 on windows server 2012 come along with SQL server 2012 standard):

 

1. Open cmd terminal:

Type "hostname";

2. Jump into ALM installment page, fill it in "DB host name" (where I orginally put "MSSQLSERVER" there).

3. You hit the "NEXT", then kiss the sky.

 

Short and sweet. Kudos!

 

Re: Quality Center Installation

$
0
0

Quality Center is a subset of the functionality available in ALM.

Where did you get your download? I found a variety of options available here:

http://www8.hp.com/us/en/software-solutions/quality-center-quality-management/try-now.html

The download should include documentation with installation instructions.

I'm not sure if the trial versions are supported on workstation class systems. The product generally is supported for installation only on server class machines. I've never gotten a trial copy, so I'm not sure if it can be installed on a workstation. That information should also be available in the documentation that comes with the download.

Re: Query to retrieve the latest status of test cases including No RUN

$
0
0

I suggest that you try retrieving data from the Test Instances rather than the Runs. The Test Instance will have a status value that is the most recent execution result, including No Run for those that have never been executed.

Test Instance information is in the TESTCYCL table.

Re: Use of ALM 12.20 MSI

$
0
0

Even if the MSI has registered the client files, on the first access the client files will be copied to the current user profile on the machine.

So if the user profile is deleted from the machine between sessions you will get a new copying of files on each new session.

Re: Multiple Item cut

$
0
0

You can analyze the contents of the Clipboard to find out this information - see this thread for example.


Re: ALM reports is not embeding attachments (text, JPG, PNG etc)

$
0
0

On the Configuration tab of the project report, on the root Document level, you should find a checkbox "Embed Text and Image Attachments".

Re: display full name in Test Lab

$
0
0

My guess is the problem you are trying to solve is that when you perform a Run you want the full name of the tester populate the Test Instance field that you created?

In that case, the problem is that TestSetTests_FieldChange will only execute when you update the field directly from the Execution Grid, but not when you perform the Run.

Try adding the following code to Run_AfterPost:

		Set myRun = TDConnection.RunFactory.Item(Run_Fields("RN_RUN_ID").Value)
		Set myTSTest = TDConnection.TSTestFactory.Item(myRun.TestInstanceID)
		'Update field in test instance with actual Tester name 
		myTSTest.Field("TC_USER_01") = User.FullName
		Set myRun = Nothing
		Set myTSTest = Nothing

Re: New Defect .. "detected in" and "release" tab values issue

$
0
0

Thanks for the reply but I already have release and cycle in management but still the values are not populating. Can this be an access level related issue?

Re: Running LeanFT tests from ALM

$
0
0

Any update on the ALM12.2X patch release from HP to support LeanFT or C# Tests to run.

Another question is, we Actually using our own framework using LeanFT, means we are not created tests as LeanFTMSTest or LeanFTNUnit. We created normal UnitTest. So can we upload such tests in ALM with the new patch or do we have any other process to support such c# tests to run

To Link Test Instance from Defect

$
0
0

Hello,

I am looking for linking Test Instance from defects module. i.e. I have raised a defect an now want to link it to the Test Instance but from Defects module. Is it possible and if yes then how??

 

Note - We know that we can link defect in Test Lab to the Test Instance but we are looking the other way round.

Viewing all 14708 articles
Browse latest View live


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