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

How to get access to Groups and permissions tab?

$
0
0

I need access to Groups and permissions tab to customize data hiding for user, (Currently i am gold user for the project)
Can you please let me know how to get access to this module or for which user this access is provided?

 

Need access to-

Customize > Groups and permissions > Data-hiding > Defect


Requirements Factory - Trying to create excel traceability

$
0
0

Hey I am coding a subroutine in the Requirements module that I can execute that will pull all the requirements into Excel with certain fields as well as pulling Tests and their fields that the requirement is mapped to and I am having an issue knowing how to find all the Tests that a specific requirement is mapped to. 

Can anyone help? below is a code snippet...... (also for some reason the Target Release and Cycle returns nothing even though there is data there)

 

Thanks 

 

Set ireqF = TDConnection.ReqFactory.Filter

Set ListsOfReqs = ireqF.NewList()

For each req in ListsOfReqs
          With exportSheet.Cells(exportRow,exportCol)
              .WrapText = True
              .Value = stripHTML(req.Field("RQ_REQ_ID"))
              .Font.Size = 10
              .Font.Bold = False
              .HorizontalAlignment= xlLeft
              .VerticalAlignment = xlTop
          End With
          exportCol = exportCol +1
          With exportSheet.Cells(exportRow,exportCol)
              .WrapText = True
              .Value = stripHTML(req.Field("RQ_REQ_NAME"))
              .Font.Size = 10
              .Font.Bold = False
              .HorizontalAlignment= xlLeft
              .VerticalAlignment = xlTop
          End With
          exportCol = exportCol +1
          With exportSheet.Cells(exportRow,exportCol)
              .WrapText = True
              .Value = stripHTML(req.Field("RQ_TYPE_ID"))
              .Font.Size = 8
              .Font.Bold = False
              .HorizontalAlignment= xlLeft
              .VerticalAlignment = xlTop
          End With
         exportCol = exportCol +1
          With exportSheet.Cells(exportRow,exportCol)
              .WrapText = True
              .Value = stripHTML(req.Field("RQ_REQ_PRODUCT"))
              .Font.Size = 10
              .Font.Bold = False
              .HorizontalAlignment= xlLeft
              .VerticalAlignment = xlTop
          End With
          exportCol = exportCol +1
          With exportSheet.Cells(exportRow,exportCol)
              .WrapText = True
              .Value = stripHTML(req.Field("RQ_REQ_COMMENT"))
              .Font.Size = 8
              .Font.Bold = False
              .HorizontalAlignment= xlLeft
              .VerticalAlignment = xlTop
          End With
          exportCol = exportCol +1
          With exportSheet.Cells(exportRow,exportCol)
              .WrapText = True
              .Value = stripHTML(req.Field("RQ_TARGET_REL"))
              .Font.Size = 10
              .Font.Bold = False
              .HorizontalAlignment= xlLeft
              .VerticalAlignment = xlTop
          End With
          exportCol = exportCol +1
          With exportSheet.Cells(exportRow,exportCol)
              .WrapText = True
              .Value = stripHTML(req.Field("RQ_TARGET_RCYC"))
              .Font.Size = 10
              .Font.Bold = False
              .HorizontalAlignment= xlLeft
              .VerticalAlignment = xlTop
          End With
          exportRow = exportRow +1
          exportCol = 1
       end if
   Next

The matrix exceeds the maximum number of core requirements error in req module

$
0
0

Hi All, 

 

In requirement module > Tracebility matrix view when I click on any favourites to view the requirements I am getting this error message "The matrix exceeds the maximum number of core requirements error in req module " What is this /? how to get rid of this error ?? 

 

Please help we are on ALM 11 Patch 7 

 

 

Display User ID, Full Name and Role/Permission SQL Query

$
0
0

Hello,

 

I am trying out to display user info in query builder. Although I can display user IDs, I can't make an accurate list of corresponding roles/permission per user because I can't find the table of user and their role.

 

I am hoping you could help me out. I am new to HP ALM so i am trying to explore it more.

Error while creating a copy of Enterprise integration 2.6 Enabled project

$
0
0

Hi All,

I got below error while creating a copy of project from an Enterprise Integration for SAP 2.6 enabled project in ALM 11 patch 14 on JBoss with Oracle 11.2.0.3.

 

Failed to create HP ALM project;

Failed to create project 'Test_XXXXXX;

Failed to perform borrow operation for project 'Test_XXXXX;

Failed SQL: /* ~~QC */ ALTER TABLE test_alm_test_XXXXX_d.SEQUENCES ADD CONSTRAINT SQ_PRIMARYKEY PRIMARY KEY  (SQ_SEQ_NAME)

[Mercury][Oracle JDBC Driver][Oracle]ORA-02437: cannot validate (TEST_ALM_TEST_XXXXX_D.SQ_PRIMARYKEY) - primary key violated

;

 

Stack Trace:

java.sql.SQLException: Failed SQL: /* ~~QC */ ALTER TABLE test_XXXXXX_d.SEQUENCES ADD CONSTRAINT SQ_PRIMARYKEY PRIMARY KEY  (SQ_SEQ_NAME)

[Mercury][Oracle JDBC Driver][Oracle]ORA-02437: cannot validate (TEST_XXXXX_D.SQ_PRIMARYKEY) - primary key violated

 

at com.mercury.optane.core.db.CAbsStatement.createSQLExceptionWithSQLStatement(CAbsStatement.java:214)

at com.mercury.optane.core.db.CAbsStatement.doExecute(CAbsStatement.java:197)

at com.mercury.optane.core.db.CTdPreparedStatement.executeUpdate(CTdPreparedStatement.java:540)

at com.mercury.optane.core.db.spring.JDBCTemplate.executeUpdate(JDBCTemplate.java:1076)

                wrapped in com.mercury.optane.core.db.CTdDbException:

at com.mercury.optane.core.db.spring.JDBCTemplate.executeUpdate(JDBCTemplate.java:1081)

at com.mercury.optane.core.db.spring.JDBCTemplateWithRetry.access$001(JDBCTemplateWithRetry.java:14)

at com.mercury.optane.core.db.spring.JDBCTemplateWithRetry$1.exec(JDBCTemplateWithRetry.java:32)

at com.mercury.optane.core.db.spring.JDBCTemplateWithRetry$1.exec(JDBCTemplateWithRetry.java:28)

at com.mercury.optane.core.db.spring.JDBCTemplateWithRetry.executeWithRetry(JDBCTemplateWithRetry.java:91)

at com.mercury.optane.core.db.spring.JDBCTemplateWithRetry.executeUpdate(JDBCTemplateWithRetry.java:28)

at com.mercury.optane.core.db.spring.JDBCTemplate.executeUpdate(JDBCTemplate.java:978)

at com.mercury.optane.core.db.convertor.CAbsDBCreator.createPrimaryKey(CAbsDBCreator.java:248)

at com.mercury.optane.core.db.convertor.CDBWriter.createPrimaryKey(CDBWriter.java:1073)

at com.mercury.optane.core.db.convertor.CDBWriter.createIndexesAndPrimaryKey(CDBWriter.java:1052)

at com.mercury.optane.core.db.convertor.CDBConvertor.createTable(CDBConvertor.java:723)

at com.mercury.optane.core.db.convertor.CDBConvertor.convert(CDBConvertor.java:653)

at com.mercury.optane.core.db.convertor.CDBConvertor.convertXML2DBBeforeBorrow(CDBConvertor.java:450)

at com.mercury.optane.core.db.convertor.CDBProject.preBorrowDB(CDBProject.java:291)

at com.mercury.td.saserver.api.logics.CProjectLogic.copyExistingProject(CProjectLogic.java:3768)

                wrapped in com.mercury.optane.core.CTdException: Failed to perform borrow operation for project 'Test_XXXXX

at com.mercury.td.saserver.api.logics.CProjectLogic.copyExistingProject(CProjectLogic.java:3914)

at com.mercury.td.saserver.api.logics.CProjectLogic.createProject(CProjectLogic.java:2357)

                wrapped in com.mercury.optane.core.CTdException: Failed to create project 'Test_XXXXXXX'

at com.mercury.td.saserver.api.logics.CProjectLogic.createProject(CProjectLogic.java:2379)

                wrapped in com.mercury.optane.core.CTdException: Failed to create HP ALM project

at com.mercury.td.saserver.api.logics.CProjectLogic.createProject(CProjectLogic.java:2431)

at com.mercury.td.saserver.api.logics.CProjectLogic.createProject(CProjectLogic.java:2165)

at com.mercury.td.saserver.requests.CreateProject.execute(CreateProject.java:56)

at com.mercury.optane.core.web.RequestsDispatcher.execute(RequestsDispatcher.java:90)

at com.mercury.td.web.CAbsServlet.executeFunction(CAbsServlet.java:483)

at com.mercury.td.web.CAbsServlet.processRequest(CAbsServlet.java:475)

at com.mercury.td.web.CAbsServlet.doPost(CAbsServlet.java:349)

at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)

at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)

at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)

at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)

at com.hp.qc.core.utils.gzipfilter.GZIPFilter.doFilter(GZIPFilter.java:30)

at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)

at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)

at com.mercury.optane.core.state.ServerStatusFilter.doFilter(ServerStatusFilter.java:33)

at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)

at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)

at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)

at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)

at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)

at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:235)

at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)

at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:190)

at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:92)

at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.process(SecurityContextEstablishmentValve.java:126)

at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:70)

at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)

at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)

at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158)

at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)

at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:330)

at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:829)

at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:598)

at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)

at java.lang.Thread.run(Thread.java:619)

 

 

Please help.

 

Regards,

Gaurav

Displaying Target Release Value for Requirement

$
0
0

I have a subRoutine that gets all requirements and for each requirement it displays the value of certain fields.

I am pretty confused because this seems to work for all the fields EXCEPT Target Release and Target Cycle. I thought perhaps it was because the field was a multi-select but I tried the samething on another multi-select field and it worked. Any help greatly appreciated.

 

Code snippet:

Set ireqF = TDConnection.ReqFactory.Filter
Set ListsOfReqs = ireqF.NewList()

   
For each req in ListsOfReqs
          msgbox "Requirement: " & req.Field("RQ_REQ_ID")                            ' I get this one
          msgbox "Release: " & req.Field("RQ_TARGET_REL")                           ' I dont get this one

          msgbox " Hello"                                                                                                  ' I get this one
Next

Excel Tracebility Matrix in Requirements Module

$
0
0

The traceability Matrix that you can generate in Excel via the menu option in the requirements module is great. However I would like to modify it to include some additional columns before the Linked tests start of the Requirement Status, Priority etc.

How can we do that?

Direct Cover Status from Parent and Child Requirements

$
0
0

Hi all,

 

i have the problem that status of the parent requirements is not depended from the status of the child requirements.

The parent Requirements shows nothing or Not covered, even if i select the the checkbox Full Coverage in the Tab "Test Coverage".

The child Requirements are shown their correct status Information in the Direct Cover Status filed, but this will not inherited to the parent requirements.

I read in some boards, that i need to write a script in Workflow. Unfortunately I am new in HP ALM and hope somebody can support me.

 

Thanks in advance!

 

 


runs showing associated defects report

$
0
0

Hi 

 

I need a report that shows  runs showing associated defects ..

 

run id  >> linked defect 

 

I want to show all the defects linked to runs ...please help 

 

 

ALM11 - Login stuck on authenticate button

$
0
0

Dear Experts,

 

Last Thursday, I faced major issue on ALM11 login page. After typing valid username and password, ALM stuck on authenticate button. This issue affected to all my users. Below are my observations -

 

  • Left down of the screen, I can see message as 'License Get' and stuck here.

 

  • I have seen SA log and found error message - "Failed to obtain a connection to schema 'qcsiteadmin_db' - timeout expired"

 

  • Additional to this I observed ‘site connection’ which is 100% more than my license limit.

 

So issue is clear that ALM users failed to connect qcsiteadmin_db which contains login credentials of all ALM users.

 

After 30 minutes I have restarted ALM server and issue gets resolved and ALM works normally. (I am using ALM 11 patch 13, SQL2008)

 

Can anybody know root cause for this issue, I mean why this happened? Any precaution not to happen next time?

 

Can anybody face this issue earlier? Could you please share your experience?

Updating the test case name using C# in ALM

$
0
0

Hi ,

The requirement is updating the test case name by filtering test id in ALM(11) using C# in visual studio 2013.

 

TDConnection qctd = newTDConnection();

//Pass the QC server URL

qctd.InitConnectionEx("ALM Url");

//Connect with the QC

qctd.ConnectProjectEx("Domain Name", "Project Name", "UserName", "Password");

if (qctd.Connected)


 {
 

TestFactory testFactory = (TestFactory)qctd.TestFactory;

TDFilter testCaseFilter = (TDFilter)testFactory.Filter;

testCaseFilter["TS_TEST_ID"] = TestID;

List testsList = testFactory.NewList(testCaseFilter.Text);

if (testsList != null&& testsList.Count == 1)

}

 

 

Am getting the following Error Message .Please help me out to sort out this issue.

 

Thanks,

Karthiga

 

 

P.S. This thread has been moved from HP Support Center Feedback & Suggestions to Quality Center Support and News Forum. - Hp forum Moderator

 

Filter to report only the last run executed of a Test Instance

$
0
0

Hello,

I'm using HPQC 11,

In Analysis View, I've created a word report with Test Instances, Test Instance Runs, and Run steps.

 

I'd like to put a filter to report only the last run executed of a Test Instance.

 

It doesn't seem too complicated but I don't see the solution.

Thank you for your precious help.

Screen Recorder debug error

$
0
0

Just upgraded to ALM 11.52 and Screen Recorder 11.5x.  When I launch Screen Recorder I get an "HPSR Recorder has stopped working".  I've already installed the TD Connector and executed the Client Registration.  Any other ideas?

 

ALM 11.52 patch 5

Screen Recorder 11.5x

Windows 7

Retrieving "selected" multiple values in Workflow

$
0
0

Hi,

 

I would like to retreive "selected values" from user field "RQ_USER_20" which allows multiple values in Req_AfterPost.

 

Req_Fields (“RQ_USER_20).Value gives me a list of selected values which are concatenated by ; like value1;value2;value4

 

Is there any way to retreive it one by one?

 

Thanks,

Esti

Defect Report

$
0
0

I am looking to create a report for defects that includes the summary, details, description, comments, and only certain history items. 

 

I know I can use the Document Generator and a Project Report to pull this information but when I do this it includes ALL the history changes.  I want to create a report just like these but with a way to filter for certain history changes, just like you can when in the Audit Log of the defect.  

 

Is there anyway to create this type of report with a filter for the History fields?  We are using HPQC 11.00 Enterprise Edition with Patch 9.

 

Thanks


Running a script written in workflow at the defined time or in the difined interval

$
0
0

Hello,

 

Currently I add a button in Requirement which run a method (script) written in workflow.

However, I would like to run this method(script) automatically without clicking the button either at the defined time or in the defined interval like At 9:00 AM, or Every 12 hours.

 

Is it possible to do so?

 

Many thanks,

Esti

 

is it possible to create a new requirement from Workflow?

$
0
0

Hi,

 

I would like to create new sub requirements based on parent requirement's values while creating parent requirement.

For example, when i creat a requirement with the user field " release languages"  which allows multiple values, it will create folder type requirements  of which names are selected languages under the requirement.

 

 

Is it possible to create a new requirement from Workflow?

 

Thanks,

Esti

Authentication error, while connection to HP ALM 12 from third party tool!

$
0
0

Hi Advisors,

 

Tools: HP ALM version 12 & Rational Adapter for HP ALM 1.1 & Internet Explorer 9 & Windows 7

 

I can directly connect to HP ALM 12,  when i try to connect to HP ALM 12 server from Rational adapter, I get this error below:



CRIHP2009E: The adapter server could not authenticate this user ID with the HP ALM server. java.lang.RuntimeException: java.net.ConnectException: Connection refused: connect
 
I have one thing in my mind which could be the problem;
Can I use HTTPS instead of HTTP for connection to HP ALM 12 from third party tool ?
 
Because HP ALM 11.52 which is with "http" is working, so what can be the problem with version 12 ?
 
Kind Regards
Baran Goru 

Https connection to HP ALM 12 server ?

$
0
0

Hi, 

 

I can connect directly to HP ALM 12 with HTTPS, but not from third party tool. I have an error below: 

 

"The adapter server could not authenticate this user ID with the HP ALM server."

 

Any solution or idea what could be the problem ? Can the problem be connection with "Https" ?

 

Thanks in advance!

 

ALM Query to retrieve test parameter actual values of no-run test instances

$
0
0

Hi All

I need to do a query to retrieve initial parameter values i choose when i added the test configuration instance of my tests to the testlab, it is quite good but i need to retrieve the test parameter values (name and order) also when the parameter is not setted for the instance of the test (there is no record for the testcycl_id,test_parameter_id in the step_params table)

 

SELECT CYCLE.CY_CYCLE AS TEST_SCENARIO, TESTCYCL.TC_TEST_ORDER AS Step_Num, TEST_CONFIGS.TSC_NAME AS Step, TEST_PARAMS.TP_ORDER AS Param_Num, TEST_PARAMS.TP_NAME as Param_Name, STPAR.SPAV As Param_Value, STPAR.TPTID as Test_Id

FROM CYCLE,TESTCYCL,TEST_CONFIGS, TEST_PARAMS, (SELECT TEST_PARAMS.TP_TEST_ID AS TPTID, TEST_PARAMS.TP_ID AS TPID, STEP_PARAMS.SP_PARAM_ACTUAL_VALUE as SPAV, STEP_PARAMS.SP_OWNER_ID as SPOID FROM TEST_PARAMS,STEP_PARAMS where STEP_PARAMS.SP_TEST_PARAM_ID = TEST_PARAMS.TP_ID(+)) STPAR

where
CYCLE.CY_CYCLE = 'MYCYCLE' AND TESTCYCL.TC_CYCLE_ID = CYCLE.CY_CYCLE_ID AND
TEST_CONFIGS.TSC_ID = TESTCYCL.TC_TEST_CONFIG_ID AND
TESTCYCL.TC_TESTCYCL_ID = STPAR.SPOID(+) AND
TESTCYCL.TC_TEST_ID = STPAR.TPTID(+) AND
TEST_PARAMS.TP_ID(+) = STPAR.TPID

 

i'm doing some mistakes but i can't find where.

 

thank you in advance for your help. 

 

Giuliano

Viewing all 5491 articles
Browse latest View live


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