Just attaching the files
Re: OTA integration in Java
Oracle Query to validate whether the test cases are having attachment in Test La
Hi All,
I am new to ALM and I need a query or report to see the test cases which are not having an attachment in Test Lab. During one of the audit, it was found that most of the test cases which are passed or failed do not have screenshots attached to support the test cases.
So I need a query or report to find out the test cases which do not have an attachment either at test cases level or run level or step level. Few testers attach the screenshots at step level and few attaches at run level and few at test cases level. So need to validate all three conditions and get an output of the test cases which doesn't have an atttachment.
Can anyone of the expert can help me to find out a solution for it?
Thanks in Advance.
Re: Oracle Query to validate whether the test cases are having attachment in Test La
We are using Oracle DB and the ALM version is 11.52
Oracle Query to Export test cases from Test Lab to excel - ALM 11.52
Hi All -
I am new to ALM and I need a Oracle query to export the test cases with test runs along with the status to excel for a given folder. We are using ALM 11.52 and the query I had for QC is not working anymore in ALM.
Appreciate your help.
Thanks in advace.
Re: ALM 11.52: Business View 'Subject' filter excludes tests in sub-folders (inconsistent wth ALM UI
Good point.
I guess if i add a tab that includes all of the folder names and their paths, then that would require less maintenance, but still allow the business user to modify the filters.
Thanks for pointing that out.
Regards,
Israel
Re: how restart hp alm 12 on linux ?
>
Navigate to the /var/opt/HP/ALM/wrapper or opt/HP/HP_ALM_Server/wrapper directory or , and run the following
commands:
To stop: HPALM stop.
To start: HPALM start.
Re: ALM 11.52: Business View 'Subject' filter excludes tests in sub-folders (inconsistent wth ALM UI
Business View 'Subject' filter excludes tests in sub-folders (inconsistent wth ALM UI)
> I do not see this issue in 12.2
Re: Error after migration from QC 10 to new server ALM 11.52
HI,
I suggest you to raise support case to HP.
Thanks
QC10 to ALM11 Extract, seeing Error "SYS_connect_by_path is not a recognized built-in function name"
Hi All
New to forum.
We are in the process of migrating from QC10 to ALM 11, and I am attempting to run a query in ALM that works perfectly in QC 10.
The query is as follows and the error is attached. Can anyone suggest what the issue is (path disguised by asterisks?
select a.PATH as TestSetPATH, ts_name as "Test Name", cy_cycle as "Functional Area", TC_Status as "Test Status"
from (SELECT cf_item_name, cf_item_id, cf_father_id, SYS_CONNECT_BY_PATH(cf_item_name, '\') PATH, LEVEL FROM cycl_fold START WITH cf_father_id = 0 CONNECT BY PRIOR cf_item_id = cf_father_id ) a, ( SELECT AL_DESCRIPTION, AL_ITEM_ID, AL_FATHER_ID, SYS_CONNECT_BY_PATH(AL_DESCRIPTION, '\') PATH, LEVEL FROM ALL_LISTS START WITH AL_FATHER_ID = 2 CONNECT BY PRIOR AL_ITEM_ID = AL_FATHER_ID ) aa, cycle, testcycl, test where tc_cycle_id = cy_cycle_id and cy_folder_id = cf_item_id and tc_test_id = ts_test_id and TEST.TS_SUBJECT = aa.AL_ITEM_ID and a.Path like '%************************%' and TESTCYCL.TC_STATUS IN ( 'N/A', 'Failed', 'No Run', 'Not Completed', 'Passed' )
Re: Get list of tests from a subject folder in QC 12
Do you mean using the OTA API? Post the code that you are using now in that case.
Re: QC10 to ALM11 Extract, seeing Error "SYS_connect_by_path is not a recognized built-in funct
SYS_connect_by_path is only available on Oracle. So if you changed to SQL Server that query won't work anymore.
Re: Upgrading issue: project migration from QC 10 to ALM 11.52
Did you guys checked with DBA ?
it can be a permission issues with the DB Admin account (user id which you see in DB Servers tab in Site Admin) should have all permission in DB also..
Re: How to modify email template in: QC 12, ALM 11.52
If you create a StyleSheets folder in the project repository you can put a copy of the style sheet there and modify it. Then the project specific style sheet is supposed to take precedence over the global one in that project.
However, adding items to the project repository has become complicated since the introduction to the smart repository, so I don't know if HP Support has any workaround for that.
Re: Error after migration from QC 10 to new server ALM 11.52
Share the Verify,Repair and upgraded logs...
Re: how restart hp alm 12 on linux ?
Thank you so much Schall for your reply.
Could you please tell me what is the performance center and DB services names? (same as you described for ALM).
Trial verison of ALM 12 for linux platform.
I need Trial verison of ALM 12 for linux platform. Anybody knows where i can find this setup file?
Re: How to modify email template in: QC 12, ALM 11.52
Thank You all for your answers.
It looks like there are two leads:
1. modify existing template in location:
ALM Installation\data\sa\DomsInfo\StyleSheets
But question is which one?
Below is the picture with content of this folder, and no template looks to be connected with BUG EMAIL TEMPLATE.
Note, that none of them was edited and all have a date when ALM was installed.
In my opinion all of them are report templates, and can be edited via TOOLS>Customize>Project Report Templates.
Any suggestion here?
2. Jan's way: putting a new folder in project repository and make a template for specific project.
This sounds good, because not all projects may want to share the same email template.
But, what should be the name for a folder, name of template, and what to start with when creating own one.
Most important: how it would be handled by ALM when smart repository is used?
best regards
Jacek Okwieka
Re: Get list of tests from a subject folder in QC 12
Yes over OTA, I want to use the filters settings in the FAVORITES table (see red marked).
If I paste this red marked filter setting to the test in QC it works.
And if I Copy the Filter Settings it is like
[Filter]{
TableName:TEST,
ColumnName:TS_USER_07,
LogicalFilter:"\"R - VE20\"",
VisualFilter:"\"R - VE20\"",
NO_CASE:
}
BUt I can find the old settings liek the green marked filter not in the database.
Code :
Dim SpecFolder As QC9.SubjectNode
Dim testList As QC9.List
Dim TestInstFilter As TDFilter
Dim testInstanceF As TestFactory
Dim FilterStringCB As String = String.Empty
testInstanceF = SpecFolder.TestFactory
TestInstFilter = testInstanceF.Filter
FilterStringCB = "<Filter Entity="test"><Where><Field Name="TS_USER_07" Value=""R - VE20"" CaseSensitive="false" /></Where><Sort /><Grouping /><TestsNotInAnyTestSet NotCovered="False" /><TestsWithNoRequirementCoverage NotCovered="False" /></Filter>"
TestInstFilter.Text = FilterStringCB
testList = SpecFolder.FindTests("", False, TestInstFilter.Text)
nodeIDs = New List(Of String)
For i = 1 To testList.Count
...
Next
Re: Get list of tests from a subject folder in QC 12
Try setting the filter like this:
testInstanceF.Filter("TS_USER_07") = Chr(34) & "R - VE20" & Chr(34)
Re: Get list of tests from a subject folder in QC 12
I want to use the whole flter functionallty from QC for listing the test cases.
There can be more filter settings available like Subject or other UDF in our project.