You have 4 instances running on the same UNIX box. How can you determine which shared memory and semaphores are associated with which instance?
Can you give us an example of when you have provided excellent customer service?
what is the difference between filter and condition?
Explain the difference between the law of multiple proportions and the law of definite proportions?
Does chkdsk work on ssd?
How do you submit a form using JavaScript?
difference between latency and transaction response time
what are the domains we have in maximo?
What are the different ways of deployment in salesforce?
What are all the different types of prompt in cognos?
Explain about the data integration suite features?
What are the types of cyclo-converters?
What are the advantages of bjt?
Name some git commands and also explain their functions?
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