ContributionsMost RecentMost LikesSolutionsTest Complete same scripts executed with different Organizations and reporting to Zephyr Squad My scenario is the following: I run the same test scripts with two different organizations. For example, once with the "BBUA" organization and once with the "ORCL" organization. I want the results of running both ways in Zephyr. But I get in Zephyr is just the results of the last setting "ORCL" because it overwrites the status of the previous run. A script may pass in "BBUA" but fail in "OCRL". How to configure the Test complete zephyr connection so that I run one test case somehow that indicates the status separately for "BBUA" and "ORCL"? Thank you Re: Test Complete Connection with database Hi Abishek, Thank you for your reply. I have read this link before I post this, but no luck to get connected. I would really appreciate If someone can help me by giving example (step by step would be more helpful). Test Complete Connection with database I have been trying to connect to the Oracle SQL developer using TestComplete (version 15). The following is the connection string that I am trying to use to connect to Oracle. For database connection, I use the following and gets connected: Host: hostName , Sid: sidname, Port: portNuber, UserName: userName, Password: password But I am not able to connect via TestComplete. I have done some research and found the following example to run a store procedure, but not able to connect. function CreatingStoredProcedure() { var SProc; SProc = ADO.CreateADOStoredProc(); SProc.ConnectionString = "Provider=SQLNCLI;Server=SERVER_NAME;" + "Database=DATABASE_NAME;Uid=USER_NAME; Pwd=PASSWORD;"; SProc.ProcedureName = "dbo.SelectFromTable"; // Adding a return parameter SProc.Parameters.AddParameter();....... ................. If I use the CONNECTION STRING in that format, I got "Provider not found message". I am not sure what would be my PROVIDER name (I'm a new user of Testcomplete). Can someone please help me to solve this problem? What value should be given to the "Provider"? Where is the Provider located? It would be appreciated if you give connection string format and an example with it. Thank you in advance. Find Test cases that do not have any test steps I am using Zephyr for Jira of the Atlassian cloud instance. I have a lot of test cases that do not have any test steps. What is the best possible way to find those TCs that do not have the steps? Thank you. Saving an Excel file Hi, Can someone please help me how to save an excel file using Jscript? I am using Excel 2016. Scenario: Perform a search Export the search result to Excel file Save the Excel file Verify that all values are exported to Excel.