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

How to fetch Testcase being executed from scheduler ?

$
0
0

Hello 

 

I have a two part query. 

 

1. How one can get the test case being run via ALM Scheduler using OTA. Intention is to get the Current testcase under execution initiated by ALM Scheduler. 

2. If Query#1 if at all possible, is there any possibility to fetch the Target Cycle Assigned to Testcase being run by the scheduler ?

 

Any help or guidance will be appreciated. 

 

Thanks in advance. 

 


Anyone seen this error before?

$
0
0

Attempting to create a new linked project from a template. The template project has gone offline as well, which is a bit worrying to say the least...

oops.png

Attachments at step level via REST

$
0
0

Hi!

I am building a library for QC, and I am having trouble uploading files at step level.

I already have made attachments through defects and test case level, but I am not being able to attach files via REST at step levels.

This is for example what I made to attach at run level:

/qcbin/rest/domains/DEFAULT/projects/TestProject/runs/2/attachments

using POST as a multipart form data, perfect, but when I do try with steps:

/qcbin/rest/domains/DEFAULT/projects/TestProject/runs/2/run-steps/1/attachments

 

I get error 404, even though /qcbin/rest/domains/DEFAULT/projects/TestProject/runs/2/run-steps/1 exists, and steps in QC has attachments, I am not being able to attach files with it. Is it different than how it works with both defects and runs?

I am using Java with Apache fluent, all the rest is ok, but at step level I can't manage to make it work

 

If someone could help me with that, I will be very glad!

 

Thanks :) .

 

 

Re: How to hide fields in Execution Grid (Test Lab)

$
0
0

Did HP give you a solution for this. We tried the same and it did not work. 

Config PPM to new AD server

$
0
0

Hi experts,

We have new AD server, and need to link PPM to it.

Can help to advise what we need to change? Is it done via Admin Console or kConfig.sh?

Thanks for your help!

Calculate Defect TAT

$
0
0

I am looking for a query that can be used to calculate the Defect Turnaround time of a defect which satisfies the following condition.

TAT is calculated based on the time difference between Defect status = "new" and Defect Status "For Retest".

If Defect was raised against A and defect was closed against B , then the TAT hours should be calculated from only the time when the defect was assigned to B and not A until the defect was moved to retest.

 

I am using HP ALM tool.

Re: How I can Import Test Configurations into ALM

$
0
0

Hello, I waana import test configurations too but I'm pretty much new to workflows.

I'm ready to take time and learn it out

Could you please suggest me where I can start with

Problem OTA 64 bits

$
0
0

Has anyone found any solutions to the OTA 64bit problem?
I am using ALM 12.53 and this problem remains, I can only run with office 32bits.


QTP scripts is not running when we running the script by using OTA

$
0
0

QTP scripts  is not running when we running the script by using OTA.attaching the screen shot.Please help me on this.

XTools.Run to Invoke batch file. Code working with ALM 12 but not with ALM SaaS Trial.

$
0
0

I have used XTools.Run to Invoke a batch file from VAPI-XP test in Test Plan. Same code is working with ALM 12 Desktop version but not working with ALM SaaS Trial. Batch file is not getting invoked. What could be the possible reason? Help me in troubleshooting the same.

Export to Excel from Test Lab

$
0
0

I've seen a lot of similar problems on here but none that have clearly articulated the solution to extracting the Test Cases and their Test Steps from the Test LAB to an Excel spreadsheet.

Given the noise on the subject, why hasn't HP developed an extract that does this from the menu?

The problem I have is that I've a lot of Test Cases in the Test LAB which have been executed but they have no corresponding library entries in the Test Plan and I need to retro-fit the information.

Anything anyone can suggest (that works!) would be really helpful.

 

Compile Error : User-defined type not defined

$
0
0

Hi Team,

I am looking to connect perfromance center 12.20 using excel macro. 

facing "Compile Error : User-defined type not defined" at the first line of the code. which is - 'Public tdC As New tdConnection'

if i comment that line and try to create object using createobject function - "Set tdC = CreateObject("TDApiOle80.tdConnection")" facing error message "activeX component can't create object".

I suppose i am missing some dll files. kindly look into below code and suggest. Thanks in advance

 

Public tdC As New tdConnection


Sub ConnectToQualityCenter()

Dim qcURL As String
Dim qcID As String
Dim qcPWD As String
Dim qcDomain As String
Dim qcProject As String
Dim tdConnection As Object

On Error GoTo err
qcURL = "http://hppcbccwd2alm01:8080/qcbin/start_a.jsp"
qcID = "iiiiiii"
qcPWD = "ppppppppp"
qcDomain = "PERSONAL"
qcProject = "Migration"

Application.StatusBar = "Connecting to Quality Center.. Wait..."

Set tdC = CreateObject("TDApiOle80.tdConnection")

tdC.InitConnectionEx qcURL

tdC.Login qcID, qcPWD

tdC.Connect qcDomain, qcProject

Application.StatusBar = "........QC Connection is done Successfully"
Exit Sub
err:
'Display the error message in Status bar
Application.StatusBar = err.Description
End Sub

Re: How I can Import Test Configurations into ALM

$
0
0

Hi Jan Czajkowski,

can you please tell me how to connect excel macro to ALM or performance center12.20 

i am using below code, but facing errors.

facing error at "Set tdC = CreateObject("TDApiOle80.tdConnection")" - "ActiveX component cant create object". please suggest


Dim qcURL As String
Dim qcID As String
Dim qcPWD As String
Dim qcDomain As String
Dim qcProject As String
Dim tdC As Object

On Error GoTo err
qcURL = "http://hppcbccwd2alm01:8080/qcbin/start_a.jsp"
qcID = "iiiiiii"
qcPWD = "ppppppppp"
qcDomain = "PERSONAL_COMMERCIAL_US"
qcProject = "Mipod_Migration"
'Display a message in Status bar
Application.StatusBar = "Connecting to Quality Center.. Wait..."


' Create a Connection object to connect to Quality Center
Set tdC = CreateObject("TDApiOle80.tdConnection")

'Initialise the Quality center connection
tdC.InitConnectionEx qcURL
'Authenticating with username and password
tdC.Login qcID, qcPWD
'connecting to the domain and project
tdC.Connect qcDomain, qcProject
'On successfull login display message in Status bar
Application.StatusBar = "........QC Connection is done Successfully"

Re: Creating custom alerts based on field of one's choice

$
0
0

This is an old post, but since there is no reply. 

I wrote the following script to add an alert whenever the requirement comment is changed. It works but it's not ideal since it keeps on adding alerts even if one has been added. Better if you can query if there is an existing unread alert before adding a new one. I'm still figuring out how to do that. Any tips appreciated.   

Sub Template_Req_FieldChange(FieldName)
  On Error Resume Next

  ' Get the Req ID of the requirement field that changed.
  ' If it is NULL this is a new requirement so no action is needed
  rID = Req_Fields("RQ_REQ_ID").value
  If Not IsNull(rID) And Not IsEmpty(rID) Then
        ' Get the current Req object
        Dim tdc
        set tdc = TDConnection
        Dim ReqF 'As ReqFactory
        Set ReqF = tdc.ReqFactory
        Dim thisReq 'As Req
        Set thisReq = ReqF.Item(rID)

        '
        ' If the comment changes add an an alert to track open comments
        '
        If FieldName = "RQ_DEV_COMMENTS" then
          call thisReq.AddAlert("REQ", rID, _
               "Comment updated by " & User.FullName & ", Req ID: " & rID, _
               "") ' ReqFields("RQ_DEV_COMMENTS").value
        End if

  End If ' Not IsNull(rID)

  PrintError "Req_FieldChange"

  On Error GoTo 0
End Sub

Re: Compile Error : User-defined type not defined

$
0
0

Is this related to missing reference. to OTAClient.dll . if yes, where to download it from and how to add it in Excel Vba.


Best practice for workflow editing in Template Projects

$
0
0

Hi, I find the process of developing workflow scripts in a Template project to be laborous. Everytime I want to test a change I need to:

  1. Save the script
  2. Cross-project customization Verify and then Apply
  3. Exit Template Project customisation 
  4. Switch to my target test project
  5. Perform the test
  6. Switch back to template project
  7. Enter customization and open the script again  

That's very tedious. Probably there's a better way, I'd love to hear about it. thanks in advance.

How to create Custom Field in project report creation - ALM 12.53

$
0
0

Hi All,

I want to create project report using different templates. I have customized template as per the requirement but im fingind it difficult to use Custom field.

e.g. 1. if i want to use Author on first page and it should pick value from ALM how will that work.

2. When im trying to use cross refeence in filter i want to pick data from different section. e.g. i am creating table where im fetching testcase details and i also want host name which is available in Run its not getting populated as required.

If anyone has come across such issue please suggest how did you resolve it 

Re: Project Reports - Connect two sections

$
0
0

Hi im working on 12.53 and not able to connect two different sections please suggest

HP Excel Addin to Import Test Cases from HP ALM to Excel

$
0
0

I am using the Excel Addin to import test cases from test plan folder in HP ALM to Excel.

In the wizard - 4 to 6, where i can choose the folders and sub folders. I can see a difference that looks like a bug.

there are few folders that are displayed with sub folders (+) expand mark, and few with no sub folders.

But the Actual folder in ALM had sub folders, I dont know whats the difference disabling the view of subfolders for few of them.

Kindly help me how to solve this, let me know if you need illustrations to explain.

Re: How I can Import Test Configurations into ALM

$
0
0

Remove "start_a.jsp" from the URL.

Viewing all 14708 articles
Browse latest View live


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