How can we retrieve the Bug Ids which are open&Reopen in status through QTP scrit?Please find the script which i tried... Dim objBugFactory, objBug Dim BugId Set TDConnection = QCUtil.TDConnection Set objBug = TDConnection.BugFactory If QCUtil.IsConnected then Reporter.ReportEvent 0, "Connected", "Connected to server: " + QCUtil.TDConnection.ServerName + chr (13) +"Project: " + QCUtil.TDConnection.ProjectName + chr (13) + "Domain: " + QCUtil.TDConnection.DomainName Reporter.ReportEvent 0, "Current time on server is","==>" & TDConnection.ServerTime Else Reporter.ReportEvent 1, "Not connected", "Not connected to Quality Center" End If If mybug.Status="Open" Then BugId=mybug.DefectId MsgBox BugId End If 'OR**********************************--------------------- -----********************************** If Bug_Fields("BG_STATUS").Value ="Open" Or "Re Open"Then BugId=Bug_Fields("BG_BUG_ID").Value MsgBox BugId End If
3044How to improve the performance of a pl/sq stored procedures or functions or triggers and packages ?
12 29258Post New TCS Interview Questions
Why is ice wrapped in gunny sacks to prevent it from melting
Explain autocomplete attribute of html5?
How does hdfs provides good throughput?
What motivates you the most?
What is an adapter in android?
Tell us do you have medical-billing certification? If not, are you planning to get certified or are you in the process of getting certified? : insurance health
Maximum number of processes that can be run in one runtime resource
What are the advantages of double entry system?
How to write the output of a command to a file?
What is an enterprise?
Why do you think erp is the most effective with large enterprises?
What are the advantages and disadvantages of row-based tables?
I have placed a PO for an item 100 qty Rs.10/Per qty , therefore total cost of the item is Rs. 1000, and this PO Is GR based invoice verification checked. Vendor is sending me 100 QTY but my store keeper doing GRN only for 98, because he is saying that he lost two quantity, so the GRN has been made for Rs 980. Now the vendor is sending me the invoice for total 100 Qty , which is coming to RS.1000 in total. Now you need to do invoice verification for this RS. 1000 to vendor. Will you able to do? If so how? If not why?
You are in the middle of a sprint and suddenly the product owner comes with a new requirement, what will you do?
Hi, I got error message as "object does not support this property or method: "Test.Actions" when i execute the following line of script on QTP 9.0 Dim qtApp, qtRep Set qtApp = CreateObject("QuickTest.Application") Set qtRep = qtApp.Test.Actions("Action1").ObjectRepositories Can anyone tell me where i am wrong.