Silk Central The Reporting Data Mart

Size: px
Start display at page:

Download "Silk Central The Reporting Data Mart"

Transcription

1 Silk Central 13.0 The Reporting Data Mart

2 Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA Copyright Micro Focus All rights reserved. Portions Copyright Borland Software Corporation (a Micro Focus company). MICRO FOCUS, the Micro Focus logo, and Micro Focus product names are trademarks or registered trademarks of Micro Focus IP Development Limited or its subsidiaries or affiliated companies in the United States, United Kingdom, and other countries. BORLAND, the Borland logo, and Borland product names are trademarks or registered trademarks of Borland Software Corporation or its subsidiaries or affiliated companies in the United States, United Kingdom, and other countries. All other marks are the property of their respective owners ii

3 Contents Overview... 4 Architecture... 5 How to Create Reports with the Data Mart...6 Writing Data Mart Queries...6 Reliability of Tests in an Execution Plan... 6 All Failed Tests in an Execution Folder...7 Testing Cycle Status... 8 Execution Tree Status...10 Configuration Suite Status Troubleshooting Wrong or Missing Data...13 The Data Mart Slows Down the System Reference: Data Mart Tables and Views DM_TestStatus RV_TestStatusExtended View RV_LatestTestStatus View RV_MaxTestRunID View RV_TestingCycleStatus RV_ExecutionPlanStatusPerBuild RV_ExecutionPlanStatusRollup...19 RV_ConfigurationSuiteStatus Contents 3

4 Overview The Silk Central reporting data mart makes it easy to access data for reporting purposes. It moves data from the production tables into dedicated views which should be used for creating advanced reports. The advantages include: Clear naming of tables and views, allowing you to quickly locate the data you are looking for. Pre-processed data, giving you the possibility to access aggregated data without having to calculate it yourself. Performance improvement, as reports can use much simpler and faster SQL queries. Less dependency on production database load, which also improves performance and removes load spikes. The current version of the data mart covers the results area. Further areas for reporting will be added to the data mart in future releases. The following tables and views are currently available: The DM_TestStatus table is the basis for status-related views. The RV_TestStatusExtended view provides detailed information for a certain test execution. The RV_LatestTestStatus view provides status and extended information on the latest test run of a test within the context of an execution plan and a certain build. The RV_MaxTestRunID view is a helper to retrieve the latest test run ID for every test, execution plan, and build combination. The RV_TestingCycleStatus view provides status information for testing cycles. The RV_ExecutionPlanStatusPerBuild view retrieves the latest test status sums for every execution plan in context of builds. The RV_ExecutionPlanStatusRollup view retrieves the sums for passed, failed, and not-executed tests per execution plan or folder in context of a build. The RV_ConfigurationSuiteStatus view lists the status counts for all configuration suites and configurations per build. 4 Overview

5 Architecture Data is periodically extracted in the background from the production database tables and loaded into the data mart tables and views for easy and fast querying. If the load on the database is not too high, this data is usually available within less than a minute after any changes have been committed. If you are logged in as a system administrator, you can check the current state of the data loading process by navigating to and checking the DM_TestStatus Table. Note: If you are updating from a Silk Central version that did not include the data mart (before version 13.0), the data mart tables and views are initially filled with data from the production system. Depending on your database size, this process can take some time. Once this process has completed, you can access the data. Architecture 5

6 How to Create Reports with the Data Mart The following examples demonstrate how to create useful reports with the data mart views. Writing Data Mart Queries 1. In the menu, click Reports > Details View. 2. In the Reports tree, select the folder in which you want the new report to display. This determines where the report is stored in the directory tree. 3. Click on the toolbar. The Create New Report dialog box opens. 4. Type the name of the new report. This is the name that is displayed in the Reports tree. 5. Check the Share this report with other users check box if you want to make this report available to other users. 6. Type a description of the report in the field. 7. Click Advanced Query to open the Report data query field. Insert previously written code or write new code directly in the field. The Insert placeholder list assists you in editing the SQL queries with pre-defined function placeholders. For details, see SQL Functions for Custom Reports. Note: If you manually edit SQL code for the query, click Check SQL to confirm your work. 8. Click Finish to save your settings. Reliability of Tests in an Execution Plan Problem In a continuous integration environment tests are ideally executed at least once per day for testing the daily build and ensuring the quality of your application under test. To understand how reliable your test set is for measuring the quality of your AUT it is inevitable to sometimes have a look at how the results change over time. For example you might have tests in your test set that frequently change status, therefore being no real measure for quality. Solution Use the data mart view RV_TestStatusExtended to create a report that lists the results for a specific test in the context of a specific execution plan. This allows you to see how this test s results have changed over time. For convenience, we will narrow the list of results down to those related to tagged builds, thus looking at specific milestone builds of the application under test only. This report collects test result data for tests in the context of execution plans and builds. In the following query we: Select the columns we want to display from this view. Narrow the result down by the ID of the test we want to investigate and the ID of the execution plan in which the test belongs. Add a constraint to consider tagged builds only. SELECT TestName, ExecutionPlanName, VersionName, BuildName, TestRunID, PassedCount, FailedCount, NotExecutedCount 6 How to Create Reports with the Data Mart

7 FROM RV_TestStatusExtended WHERE TestID = ${TESTID 1 Test ID} AND ExecutionPlanID = ${EXECUTIONPLANID 1 Execution Plan ID} AND BuildIsTagged = 1 ORDER BY BuildOrderNumber The result of the SQL query are all test runs for the selected test within the selected execution plan. In the following example you can see that the test was re-run against build 579_Drop2: TestName Execution PlanName Version Name BuildName TestRunID Passed Count FailedCount NotExecute dcount UI Tests UI Tests UI Tests UI Tests EN SQL2012 IE9 IIS EN SQL2012 IE9 IIS EN SQL2012 IE9 IIS EN SQL2012 IE9 IIS _Drop _Drop _Drop _Drop All Failed Tests in an Execution Folder Problem Typically all execution plans are structured in a folder hierarchy which identifies the different areas or purposes to which the execution plans and their tests are related. The execution plans are triggered on a regular basis in a continuous integration environment, or occasionally over the release time frame, resulting in nice execution statistics unfortunately for each single execution plan only. However, sometimes you need an overall information to know how all your tests perform for a specific area or purpose to identify where the weaknesses are. Solution Use the data mart view RV_LatestTestStatus to create a report that returns a list of all failed tests for a specific execution planning hierarchy level. The following query selects failed tests within an execution planning folder with context information like execution plan name and build name: SELECT TestID, TestName, ExecutionPlanID, ExecutionPlanName, BuildName FROM RV_LatestTestStatus lts INNER JOIN TM_ExecTreePaths ON lts.executionplanid = TM_ExecTreePaths.NodeID_pk_fk WHERE TM_ExecTreePaths.ParentNodeID_pk_fk = ${executionfolderid 2179 Execution Folder ID} AND StatusID IN (2, 9) ORDER BY TestName The query does the following: Uses the view RV_LatestTestStatus for retrieving the latest test run result. Includes the execution tree hierarchy (TM_ExecTreePaths) to be able to query all tests from all the execution plans within the hierarchy. How to Create Reports with the Data Mart 7

8 Uses the top level folder ID from where the analysis should be started as ParentNodeID_pk_fk. Includes failed and unresolved test status only (StatusID IN (2,9)). The numbers 2 and 9 for StatusID can be looked up in the table TM_TestDefStatusNames. Silk Central maps statuses as follows: passed and unsupported -> passed. failed and unresolved -> failed. not executed and N/A -> not executed. The result of the SQL query are all tests in the selected execution folder for which the last run failed. TestID TestName ExecutionPlanID ExecutionPlanName BuildName JUnitTestPackage 2184 CI Testing Volatile Tests 2191 Volatile Test 352 Testing Cycle Status Problem Testing cycles can be complex objects as they contain information about manual testers, tests, different builds and versions of products, and maybe even configurations. To not lose track it is important to find answers to questions like: How many tests have been finished? How many of them passed or failed per build? Are my manual testers still busy or can they do additional work? Solution Use the data mart view RV_TestingCycleStatus to create a report that shows the status of a testing cycle per tester and build that will give you an overview of how many tests are passed, failed, not executed grouped by manual tester, configuration and build. SELECT BuildName, TesterLogin, TesterExecutionName, PassedCount, FailedCount, NotExecutedCount FROM RV_TestingCycleStatus WHERE TestingCycleID = ${testingcycleid 3 Testing Cycle ID} ORDER BY BuildOrderNumber, TesterLogin The query does the following: Uses the view RV_TestingCycleStatus as data source, as it contains BuildName, TesterLogin and TesterExecutionName, which is the generated name reflecting tester, configuration and test. Limits the data to the testing cycle ID that you are interested in. The result of the SQL query shows the status per build and tester. BuildName TesterLogin TesterExecution Name 352 No specific tester (Test Assets) 351 admin admin (English SQL2008 FF Tomcat - Test Assets) PassedCount FailedCount NotExecuted Count How to Create Reports with the Data Mart

9 BuildName TesterLogin TesterExecution Name 352 admin admin (English SQL2008 FF Tomcat - Test Assets) 352 gmazzuchelli gmazzuchelli (English Oracle10g IE8 Tomcat - Test Assets) 352 jallen jallen (German Oracle11g FF Tomcat - Test Assets) 352 smiller smiller (German SQL2008 IE8 IIS - Test Assets) PassedCount FailedCount NotExecuted Count For unassigned tests a "no specific tester" group is created with empty values for TesterLogin, TesterFirstName, and TesterLastName. In case you just want to see how your test cycle is doing based on the performance of your manual testers, a slight variation of the query will help: SELECT TesterLogin, TesterExecutionName, SUM(PassedCount) PassedCount, SUM(FailedCount) FailedCount, SUM(NotExecutedCount) NotExecutedCount FROM RV_TestingCycleStatus WHERE TestingCycleID = ${testingcycleid 3 Testing Cycle ID} GROUP BY TesterLogin, TesterExecutionName ORDER BY TesterLogin The query is extended by: GROUP BY TesterLogin, TesterExecutionName for denoting the remaining columns. SUM() to the counters for aggregating the figures. TesterLogin admin gmazzuchelli jallen TesterExecution Name No specific tester (Test Assets) admin (English SQL2008 FF Tomcat - Test Assets) gmazzuchelli (English Oracle10g IE8 Tomcat - Test Assets) jallen (German Oracle11g FF Tomcat - Test Assets) PassedCount FailedCount NotExecutedCount How to Create Reports with the Data Mart 9

10 TesterLogin smiller TesterExecution Name smiller (German SQL2008 IE8 IIS - Test Assets) PassedCount FailedCount NotExecutedCount Execution Tree Status Problem It is a common practice to have execution plans in a hierarchical structure that represents different testing areas or purposes. In some cases, for example for knowing the test status and therefore the quality of an area or purpose, you will want to know the overall passed, failed, and not executed count. Solution Use the data mart view RV_ExecutionPlanStatusRollup to create a report that returns the passed, failed, and not executed counts grouped by build for a specific execution planning folder. SELECT BuildName, PassedCount, FailedCount, NotExecutedCount FROM RV_ExecutionPlanStatusRollup WHERE ExecutionFolderID = ${executionplanid 43 Execution Plan ID} The query does the following: Selects BuildName and the status counts from the RV_ExecutionPlanStatusRollup view. Specifies the top-level folder you want the status from (ExecutionFolderID). The result of the SQL query shows the status of your test runs in all execution plans of the selected folder, aggregated per build. BuildName PassedCount FailedCount NotExecutedCount If you are interested in more details, for example the status counts for each execution plan within the selected hierarchy, you can use the data mart view RV_ExecutionPlanStatusPerBuild: SELECT eps.buildname, eps.executionplanid, SUM(eps.PassedCount) PassedCount, SUM(eps.FailedCount) FailedCount, SUM(eps.NotExecutedCount) NotExecutedCount FROM RV_ExecutionPlanStatusPerBuild eps INNER JOIN TM_ExecTreePaths etp ON eps.executionplanid = etp.nodeid_pk_fk WHERE etp.parentnodeid_pk_fk = ${execfolderid 44 Execution Folder ID} GROUP BY eps.executionplanid, eps.buildordernumber, eps.buildname ORDER BY eps.buildordernumber, eps.executionplanid The query does the following: Uses the RV_ExecutionPlanStatusPerBuild view to access execution-plan specific data (ExecutionPlanID and ExecutionPlanName). The previously used RV_ExecutionPlanStatusRollup view contains pre-aggregated data (summed up data), which is not suitable for the purpose here as you would get results not only for execution plans but for the folder nodes as well. Selects all nodes within a specific folder with a JOIN of the TM_ExecTreePath table to bring in hierarchy information. 10 How to Create Reports with the Data Mart

11 Specifies the top-level folder with ExecutionFolderID. As the table TM_ExecutionTreePaths also contains a self-reference for every execution plan, you could run this query with an execution plan ID for ParentNodeID_pk_fk too, which would return the rows for the specific execution plan. Adds ORDER BY BuildOrderNumber and ExecutionPlanID to get a nicely ordered result, showing the oldest builds and their execution plans first. The result of the SQL query shows the status of your test runs in all execution plans of the selected folder. BuildName ExecutionPlanID PassedCount FailedCount NotExecutedCount Configuration Suite Status Problem Configuration suites allow you to execute the same set of tests against multiple configurations, for example multiple browsers or operating systems. To be able to make reasonable statements related to quality and reliability of your application under test you will want to keep track of the results for each individual configuration. Solution Use the data mart view RV_ConfigurationSuiteStatus to create a report that returns the passed, failed, and not executed counts for each configuration per build. SELECT BuildName, ConfigurationName, PassedCount, FailedCount, NotExecutedCount FROM RV_ConfigurationSuiteStatus WHERE ConfigurationSuiteID = ${configsuiteid 97 Configuration Suite ID} ORDER BY BuildOrderNumber, ConfigurationName The query does the following: Retrieves the status counts per build of test runs from the RV_ConfigurationSuiteStatus view. Narrows the results down to the configuration suite (ConfigurationSuiteID). The result of the SQL query shows the status of your test runs for each configuration. BuildName ConfigurationName PassedCount FailedCount NotExecutedCount 350 Chrome Firefox Internet Explorer Chrome Firefox How to Create Reports with the Data Mart 11

12 BuildName ConfigurationName PassedCount FailedCount NotExecutedCount 351 Internet Explorer Chrome Firefox Internet Explorer In this example, we use the ID of the configuration suite to get all configurations. It is also possible to restrict the result to specific builds, in which case you would have to include BuildID, BuildName, or BuildOrderNumber in the where clause. Note: The view RV_ConfigurationSuiteStatus only contains aggregated status counts without any test-specific data. To retrieve additional test-specific data, you can use, for example, the view RV_LatestTestStatus. 12 How to Create Reports with the Data Mart

13 Troubleshooting Wrong or Missing Data Problem When querying data from a data mart table or view, the listed results are not up to date or missing. Resolution The data mart tables and views are updated periodically in the background, but not in real time. Due to this, it can take a few seconds up to a few minutes for the data to be loaded into the data mart tables. If your system is running a heavy load, this influences the performance of the background process which is loading the data. The reason is that other processes are prioritized higher and may temporarily block the DataMartUpdater background job. Run your query again later to retrieve updated data. If you are logged in as a system administrator, you can check the current state of the data loading process by navigating to and checking the DM_TestStatus Table. Note: Tests and depending test runs are removed from the data mart if a test is deleted. This also applies to deleted tests due to cleaning up test packages. The Data Mart Slows Down the System Problem Since running the data mart, the system's overall performance seems to be poorer or behaves inconsistently. Resolution While this should not happen, you can turn off the data mart to check if this actually resolves your issues: 1. Stop the application server service. 2. Open the TmAppServerHomeConf.xml file with a text editor. This file is located in the /conf/ appserver folder of the Silk Central directory on the application server. 3. Locate the Config/DataMart/Enabled XML tag and set the value to false. 4. Restart the application server service. Troubleshooting 13

14 Reference: Data Mart Tables and Views The following data mart tables and views are available for easy and fast reporting. DM_TestStatus The DM_TestStatus table is the basis for status-related views. The other data mart views usually provide easier access to detailed data, as this table does not provide direct access to information like the name of a test. The key of this table is the combination of the columns TestID, ExecutionPlanID, BuildID, and TestRunID. Row TestID ExecutionPlanID BuildID TestRunID ExecutionRunID StatusID PassedCount FailedCount NotExecutedCount ProjectID TestStartTime ExecutionStartTime TestDurationInMilliseconds IsBlocked DbChangedAt Identifier of the test. Identifier of the execution plan. Identifier of the build. Identifier of the test run. Identifies in which execution run this result was generated. Status of this test run (see TM_TestDefStatusNames). Sum of all passed tests, which is 0 or 1 for common tests and can be more for package test roots. Sum of all failed tests, which is 0 or 1 for common tests and can be more for package test roots. Sum of all not-executed tests, which is 0 or 1 for common tests and can be more for package test roots. ID of the project that this row belongs to. Time when the test run started (UTC). Time when the execution run started (UTC). Duration of the test run in milliseconds. Flags the test run as blocked/unblocked Time when this row was last updated by the reporting data mart. RV_TestStatusExtended View The RV_TestStatusExtended view provides detailed information for a certain test execution. This view contains all test runs, in contrast to the view RV_LatestTestStatus which contains only the latest test run of a test within the context of an execution plan and a certain build. You can use this view for 14 Reference: Data Mart Tables and Views

15 example to create a report that lists all test runs of your tagged builds. The key of this table is the combination of the columns TestID, ExecutionPlanID, BuildID, and TestRunID. Note: Tests and depending test runs are removed from the data mart if a test is deleted. This also applies to deleted tests due to cleaning up test packages. Row TestID ExecutionPlanID BuildID TestRunID ExecutionRunID StatusID PassedCount FailedCount NotExecutedCount ProjectID TestStartTime ExecutionStartTime TestDurationInMilliseconds IsBlocked DbChangedAt TestName Test TestParentID PlannedTimeInMinutes ExecutionPlanName ExecutionPlan ExecutionParentFolderID Identifier of the test. Identifier of the execution plan. Identifier of the build. Identifier of the test run. Identifies in which execution run this result was generated. Status of this test run (see TM_TestDefStatusNames). Sum of all passed tests, which is 0 or 1 for common tests and can be more for package test roots. Sum of all failed tests, which is 0 or 1 for common tests and can be more for package test roots. Sum of all not-executed tests, which is 0 or 1 for common tests and can be more for package test roots. ID of the project that this row belongs to. Time when the test run started (UTC). Time when the execution run started (UTC). Duration of the test run in milliseconds. Flags the test run as blocked/unblocked Time when this row was last updated by the reporting data mart. Name of the test. of the test. ID of the test's parent. Time planned for this test in minutes. Name of the execution plan. of the execution plan. ID of the execution plan's parent. Priority Priority of the execution plan: 0 = Low, 1 = Medium, 2 = High. BuildName Build BuildOrderNumber BuildIsTagged Name of the build used for this test run. of the build. Order number of the build. 1 if the build is tagged, 0 otherwise. Reference: Data Mart Tables and Views 15

16 Row VersionID VersionName Version VersionOrderNumber ProductID ProductCode Product ProductOrderNumber ID of the version that the build belongs to. Name of the version. of the version. Order number of the version. ID of the product that the build belongs to. Name of the product. of the product. Order number of the product. RV_LatestTestStatus View The RV_LatestTestStatus view provides status and extended information on the latest test run of a test within the context of an execution plan and a certain build. Use the RV_TestStatusExtended view to retrieve information about all test runs. You can use this view to create a report that lists all failed tests in an execution folder. The key of this table is the combination of the columns TestID, ExecutionPlanID, BuildID, and TestRunID. Row TestID ExecutionPlanID BuildID TestRunID ExecutionRunID StatusID PassedCount FailedCount NotExecutedCount ProjectID TestStartTime ExecutionStartTime TestDurationInMilliseconds IsBlocked DbChangedAt Identifier of the test. Identifier of the execution plan. Identifier of the build. Identifier of the test run. Identifies in which execution run this result was generated. Status of this test run (see TM_TestDefStatusNames). Sum of all passed tests, which is 0 or 1 for common tests and can be more for package test roots. Sum of all failed tests, which is 0 or 1 for common tests and can be more for package test roots. Sum of all not-executed tests, which is 0 or 1 for common tests and can be more for package test roots. ID of the project that this row belongs to. Time when the test run started (UTC). Time when the execution run started (UTC). Duration of the test run in milliseconds. Flags the test run as blocked/unblocked Time when this row was last updated by the reporting data mart. 16 Reference: Data Mart Tables and Views

17 Row TestName Test TestParentID PlannedTimeInMinutes ExecutionPlanName ExecutionPlan ExecutionParentFolderID Name of the test. of the test. ID of the test's parent. Time planned for this test in minutes. Name of the execution plan. of the execution plan. ID of the execution plan's parent. Priority Priority of the execution plan: 0 = Low, 1 = Medium, 2 = High. BuildName Build BuildOrderNumber BuildIsTagged VersionID VersionName Version VersionOrderNumber ProductID ProductCode Product ProductOrderNumber Name of the build used for this test run. of the build. Order number of the build. 1 if the build is tagged, 0 otherwise. ID of the version that the build belongs to. Name of the version. of the version. Order number of the version. ID of the product that the build belongs to. Name of the product. of the product. Order number of the product. RV_MaxTestRunID View The RV_MaxTestRunID view is a helper to retrieve the latest test run ID for every test, execution plan, and build combination. The key of this table is the combination of the columns TestID, ExecutionPlanID and BuildID. Row TestID ExecutionPlanID BuildID MaxTestRunID Identifier of the test. Identifier of the execution plan. Identifier of the build. Identifies the latest test run for the test in context of the execution plan and build. Reference: Data Mart Tables and Views 17

18 RV_TestingCycleStatus The RV_TestingCycleStatus view provides status information for testing cycles. You can use this view to create a report that shows the current status of a testing cycle. TestingCycleID denotes the testing cycle and TesterExecutionID (as well as TesterExecutionName, UserID, CapacityInCycle, TesterLogin, TesterFirstName, TesterLastName) is used to identify the assigned tester in the testing cycle. For the tests which are not assigned to a specific tester, the UserID, CapacityInCycle, TesterLogin, TesterFirstName, and TesterLastName are null. The key of this table is the combination of the columns TesterExecutionID and BuildID. Row TestingCycleID TesterExecutionID TesterExecutionName UserID CapacityInCycleInMinutes TesterLogin TesterFirstName TesterLastName PassedCount FailedCount NotExecutedCount ProjectID BuildID BuildName Build BuildOrderNumber BuildIsTagged VersionID VersionName Version VersionOrderNumber ProductID ProductCode Product Identifier of the testing cycle. Identifies the group of tests that are assigned to a specific tester. The generated name for the group of tests that are assigned to a specific tester. The user ID of the tester. The capacity for this user in this testing cycle in minutes. Login name of the tester. First name of tester. Last name of tester. Sum of all passed tests. Sum of all failed tests. Sum of all not-executed tests. Identifier of the project. Identifier of the build. Name of the build used for this test run. of the build. Order number of the build. 1 if the build is tagged, 0 otherwise. ID of the version that the build belongs to. Name of the version. of the version. Order number of the version. ID of the product that the build belongs to. Name of the product. of the product. 18 Reference: Data Mart Tables and Views

19 Row ProductOrderNumber Order number of the product. RV_ExecutionPlanStatusPerBuild The RV_ExecutionPlanStatusPerBuild view retrieves the latest test status sums for every execution plan in context of builds. Folders and child nodes are not considered. You can use this view to create a report that shows the status of your test runs for each execution plan in a folder. In contrast to RV_ExecutionPlanStatusRollup, this view has a slight performance advantage as no hierarchy is considered for retrieving the data. The key of this table is the combination of the columns ExecutionPlanID and BuildID. Row ExecutionPlanID BuildID ExecutionPlanName ExecutionParentFolderID PassedCount FailedCount NotExecutedCount ProjectID BuildName Build BuildOrderNumber BuildIsTagged VersionID VersionName Version VersionOrderNumber ProductID ProductCode Product ProductOrderNumber Identifier of the execution plan. Identifier of the build. Name of the execution plan. ID of the execution plan's parent. Sum of all passed tests. Sum of all failed tests. Sum of all not-executed tests. ID of the project that the execution plan belongs to. Name of the build used for this test run. of the build. Order number of the build. 1 if the build is tagged, 0 otherwise. ID of the version that the build belongs to. Name of the version. of the version. Order number of the version. ID of the product that the build belongs to. Name of the product. of the product. Order number of the product. RV_ExecutionPlanStatusRollup The RV_ExecutionPlanStatusRollup view retrieves the sums for passed, failed, and not-executed tests per execution plan or folder in context of a build. Reference: Data Mart Tables and Views 19

20 In case of folders, the counters include the numbers from all children. You can use this view to create a report that shows the status of all test runs in a folder. The key of this table is the combination of the columns ExecutionFolderID and BuildID. Row ExecutionFolderID BuildID PassedCount FailedCount NotExecutedCount ProjectID BuildName Build BuildOrderNumber BuildIsTagged VersionID VersionName Version VersionOrderNumber ProductID ProductCode Product ProductOrderNumber Identifier of the execution plan. Identifier of the build. Sum of all passed tests. Sum of all failed tests. Sum of all not-executed tests. ID of the project that the execution plan belongs to. Name of the build used for this test run. of the build. Order number of the build. 1 if the build is tagged, 0 otherwise. ID of the version that the build belongs to. Name of the version. of the version. Order number of the version. ID of the product that the build belongs to. Name of the product. of the product. Order number of the product. RV_ConfigurationSuiteStatus The RV_ConfigurationSuiteStatus view lists the status counts for all configuration suites and configurations per build. You can use this view to create a report that shows the status of all test runs for each configuration in a configuration suite. The key of this table is the combination of the columns ConfigurationID and BuildID. Row ConfigurationSuiteID ConfigurationID ConfigurationName BuildID PassedCount FailedCount NotExecutedCount Identifier of the configuration suite. Identifier of the configuration. Name of the configuration. Identifier of the build. Sum of all passed tests. Sum of all failed tests. Sum of all not-executed tests. 20 Reference: Data Mart Tables and Views

21 Row ProjectID BuildName Build BuildOrderNumber BuildIsTagged VersionID VersionName Version VersionOrderNumber ProductID ProductCode Product ProductOrderNumber ID of the project that this row belongs to. Name of the build used for this test run. of the build. Order number of the build. 1 if the build is tagged, 0 otherwise. ID of the version that the build belongs to. Name of the version. of the version. Order number of the version. ID of the product that the build belongs to. Name of the product. of the product. Order number of the product. Reference: Data Mart Tables and Views 21

Silk Central The Reporting Data Mart

Silk Central The Reporting Data Mart Silk Central 18.5 The Reporting Data Mart Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2004-2017. All rights reserved. MICRO FOCUS,

More information

Silk Test Silk Test Classic Quick Start Tutorial for Dynamic Object Recognition

Silk Test Silk Test Classic Quick Start Tutorial for Dynamic Object Recognition Silk Test 14.0 Silk Test Classic Quick Start Tutorial for Dynamic Object Recognition Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright Micro Focus 2013. All rights reserved. Portions

More information

Silk Test Silk4NET Tutorial

Silk Test Silk4NET Tutorial Silk Test 14.0 Silk4NET Tutorial Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright Micro Focus 2013. All rights reserved. Portions Copyright 1992-2009 Borland Software Corporation (a

More information

SilkTest SilkTest Recorder Quick Start Tutorial

SilkTest SilkTest Recorder Quick Start Tutorial SilkTest 13.0 SilkTest Recorder Quick Start Tutorial Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright 2012 Micro Focus. All rights reserved. Portions Copyright 2009 Borland Software

More information

Silk Test Silk4NET Tutorial

Silk Test Silk4NET Tutorial Silk Test 13.5 Silk4NET Tutorial Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright 2012 Micro Focus. All rights reserved. Portions Copyright 1992-2009 Borland Software Corporation (a

More information

Silk Central Release Notes

Silk Central Release Notes Silk Central 16.5 Release Notes Borland Software Corporation 700 King Farm Blvd, Suite 400 Rockville, MD 20850 Copyright Micro Focus 2015. All rights reserved. Portions Copyright 2004-2009 Borland Software

More information

Silk Test Silk Test Classic: Working with Projects

Silk Test Silk Test Classic: Working with Projects Silk Test 15.5 Silk Test Classic: Working with Projects Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright Micro Focus 2014. All rights reserved. Portions Copyright 1992-2009 Borland

More information

Borland StarTeam Toolbar Utility Help

Borland StarTeam Toolbar Utility Help Borland StarTeam 13.0 Toolbar Utility Help Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright Micro Focus 2013. All rights reserved. Portions Copyright 1998-2009 Borland Software Corporation

More information

PersonPB Reference. Silk Performer 9.5. PersonPB Reference

PersonPB Reference. Silk Performer 9.5. PersonPB Reference PersonPB Reference Silk Performer 9.5 PersonPB Reference Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright 2012 Micro Focus (IP) Limited. All Rights Reserved. Silk Performer contains

More information

Borland StarTeam Web Client Help

Borland StarTeam Web Client Help Borland StarTeam 14.2 Web Client Help Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright Micro Focus 2014. All rights reserved. Portions Copyright 1998-2009 Borland Software Corporation

More information

Silk Test Silk4NET Tutorial

Silk Test Silk4NET Tutorial Silk Test 16.0 Silk4NET Tutorial Borland Software Corporation 700 King Farm Blvd, Suite 400 Rockville, MD 20850 Copyright Micro Focus 2015. All rights reserved. Portions Copyright 1992-2009 Borland Software

More information

SilkTest Using the Basic Workflow with the Classic Agent

SilkTest Using the Basic Workflow with the Classic Agent SilkTest 13.0 Using the Basic Workflow with the Classic Agent Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright 2012 Micro Focus. All rights reserved. Portions Copyright 1992-2009 Borland

More information

Silk Test 15.0 Silk4NET Web Edition. Installation Guide

Silk Test 15.0 Silk4NET Web Edition. Installation Guide Silk Test 15.0 Silk4NET Web Edition Installation Guide Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright Micro Focus 2014. All rights reserved. Portions Copyright 1992-2009 Borland

More information

SilkCentral Test Manager Release Notes

SilkCentral Test Manager Release Notes SilkCentral Test Manager 2011 Release Notes Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright 2011 Micro Focus IP Development Limited. All Rights Reserved. Portions Copyright 2004-2011

More information

Silk Test 14.0 Silk4J Web Edition. Installation Guide

Silk Test 14.0 Silk4J Web Edition. Installation Guide Silk Test 14.0 Silk4J Web Edition Installation Guide Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright Micro Focus 2013. All rights reserved. Portions Copyright 1992-2009 Borland Software

More information

Silk Test 15.0 Silk4J Web Edition. Release Notes

Silk Test 15.0 Silk4J Web Edition. Release Notes Silk Test 15.0 Silk4J Web Edition Release Notes Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright Micro Focus 2014. All rights reserved. Portions Copyright 1992-2009 Borland Software

More information

StarTeam File Compare/Merge StarTeam File Compare/Merge Help

StarTeam File Compare/Merge StarTeam File Compare/Merge Help StarTeam File Compare/Merge 12.0 StarTeam File Compare/Merge Help Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright 2011 Micro Focus IP Development Limited. All Rights Reserved. Portions

More information

Silk Performance Manager Installation and Setup Help

Silk Performance Manager Installation and Setup Help Silk Performance Manager 18.5 Installation and Setup Help Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright 2004-2017 Micro Focus. All rights reserved.

More information

AccuRev Plugin for IntelliJ IDEA Installation and Release Notes

AccuRev Plugin for IntelliJ IDEA Installation and Release Notes AccuRev Plugin for IntelliJ IDEA 2018.1 Installation and Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2018. All

More information

EMC SourceOne for Microsoft SharePoint Version 6.7

EMC SourceOne for Microsoft SharePoint Version 6.7 EMC SourceOne for Microsoft SharePoint Version 6.7 Administration Guide P/N 300-012-746 REV A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2011

More information

StarTeam File Federation 1.0. User Guide

StarTeam File Federation 1.0. User Guide StarTeam File Federation 1.0 User Guide Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright Micro Focus 2012. All rights reserved. Portions Copyright 1998-2009 Borland Software Corporation

More information

Introduction to ALM, UFT, VuGen, and LoadRunner

Introduction to ALM, UFT, VuGen, and LoadRunner Software Education Introduction to ALM, UFT, VuGen, and LoadRunner This course introduces students to the Application Lifecycle Management line products Introduction to ALM, UFT, VuGen, and LoadRunner

More information

Avigilon Control Center 6 System Integration Guide

Avigilon Control Center 6 System Integration Guide Avigilon Control Center 6 System Integration Guide for Paxton Net2 Access Control Systems 2018, Avigilon Corporation. All rights reserved. AVIGILON, the AVIGILON logo, AVIGILON CONTROL CENTER and ACC are

More information

Silk Test Using the Basic Workflow with the Open Agent

Silk Test Using the Basic Workflow with the Open Agent Silk Test 16.0 Using the Basic Workflow with the Open Agent Borland Software Corporation 700 King Farm Blvd, Suite 400 Rockville, MD 20850 Copyright Micro Focus 2015. All rights reserved. Portions Copyright

More information

SilkTest Workbench Getting Started with Visual Tests

SilkTest Workbench Getting Started with Visual Tests SilkTest Workbench 13.0 Getting Started with Visual Tests Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright 2012 Micro Focus. All rights reserved. Portions Copyright 2010-2011 Borland

More information

Silk Test 15.0 Silk4NET Web Edition. Release Notes

Silk Test 15.0 Silk4NET Web Edition. Release Notes Silk Test 15.0 Silk4NET Web Edition Release Notes Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright Micro Focus 2014. All rights reserved. Portions Copyright 1992-2009 Borland Software

More information

Borland Connect 1.6. Using Borland Connect

Borland Connect 1.6. Using Borland Connect Borland Connect 1.6 Using Borland Connect Borland Software Corporation 700 King Farm Blvd, Suite 400 Rockville, MD 20850 Copyright Micro Focus 2015. All rights reserved. Portions Copyright 1998-2009 Borland

More information

Cross-Browser Functional Testing Best Practices

Cross-Browser Functional Testing Best Practices White Paper Application Delivery Management Cross-Browser Functional Testing Best Practices Unified Functional Testing Best Practices Series Table of Contents page Introduction to Cross-Browser Functional

More information

CaliberRDM. Installation Guide

CaliberRDM. Installation Guide CaliberRDM Installation Guide Borland Software Corporation 4 Hutton Centre Dr., Suite 900 Santa Ana, CA 92707 Copyright 2010 Micro Focus (IP) Limited. All Rights Reserved. CaliberRDM contains derivative

More information

SilkTest Silk4NET User Guide

SilkTest Silk4NET User Guide SilkTest 13.0 Silk4NET User Guide Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright 2012 Micro Focus. All rights reserved. Portions Copyright 2010-2011 Borland Software Corporation

More information

Silk Test Workbench Getting Started with.net Scripts

Silk Test Workbench Getting Started with.net Scripts Silk Test Workbench 14.0 Getting Started with.net Scripts Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright Micro Focus 2013. All rights reserved. Portions Copyright 1992-2009 Borland

More information

Product Release Notes Alderstone cmt 2.0

Product Release Notes Alderstone cmt 2.0 Alderstone cmt product release notes Product Release Notes Alderstone cmt 2.0 Alderstone Consulting is a technology company headquartered in the UK and established in 2008. A BMC Technology Alliance Premier

More information

Supplemental Tutorials. SilkPerformer 9.0. Supplemental Tutorials

Supplemental Tutorials. SilkPerformer 9.0. Supplemental Tutorials Supplemental Tutorials SilkPerformer 9.0 Supplemental Tutorials Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright 2012 Micro Focus IP Development Limited. All Rights Reserved. Portions

More information

The following issues and enhancements have been addressed in this release:

The following issues and enhancements have been addressed in this release: SpiraTest 5.0 Release Notes SpiraTest version 5.0 is the next release of the SpiraTest integrated quality assurance and test management system from Inflectra. These Release Notes cover what issues this

More information

Carbonite Server Backup Portal 8.6. Administration Guide

Carbonite Server Backup Portal 8.6. Administration Guide Carbonite Server Backup Portal 8.6 Administration Guide 2018 Carbonite, Inc. All rights reserved. Carbonite makes no representations or warranties with respect to the contents hereof and specifically disclaims

More information

Roxen Content Provider

Roxen Content Provider Roxen Content Provider Generation 3 Templates Purpose This workbook is designed to provide a training and reference tool for placing University of Alaska information on the World Wide Web (WWW) using the

More information

Silk Test 14.0 Silk4J Web Edition. Release Notes

Silk Test 14.0 Silk4J Web Edition. Release Notes Silk Test 14.0 Silk4J Web Edition Release Notes Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright Micro Focus 2013. All rights reserved. Portions Copyright 1992-2009 Borland Software

More information

StarTeam LDAP QuickStart Manager Administration Guide

StarTeam LDAP QuickStart Manager Administration Guide StarTeam 15.1 LDAP QuickStart Manager Administration Guide Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2016. All rights reserved.

More information

Silk Test Object Recognition with the Classic Agent

Silk Test Object Recognition with the Classic Agent Silk Test 13.5 Object Recognition with the Classic Agent Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright 2012 Micro Focus. rights reserved. Portions Copyright 1992-2009 Borland Software

More information

Micro Focus Enterprise View. Installing Enterprise View

Micro Focus Enterprise View. Installing Enterprise View Micro Focus Enterprise View Installing Enterprise View Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2014. All rights reserved.

More information

Customer Helpdesk User Manual

Customer Helpdesk User Manual Customer Helpdesk User Manual TABLE OF CONTENTS 1 INTRODUCTION... 3 2 HANDLING OF THE PROGRAM... 3 2.1 Preface... 3 2.2 Log In... 3 2.3 Reset Your Password... 4 2.4 Changing Personal Password... 4 3 PROGRAM

More information

SilkTest Testing Flex Applications

SilkTest Testing Flex Applications SilkTest 13.0 Testing Flex Applications Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright 2012 Micro Focus. All rights reserved. Portions Copyright 1992-2009 Borland Software Corporation

More information

Vector Issue Tracker and License Manager - Administrator s Guide. Configuring and Maintaining Vector Issue Tracker and License Manager

Vector Issue Tracker and License Manager - Administrator s Guide. Configuring and Maintaining Vector Issue Tracker and License Manager Vector Issue Tracker and License Manager - Administrator s Guide Configuring and Maintaining Vector Issue Tracker and License Manager Copyright Vector Networks Limited, MetaQuest Software Inc. and NetSupport

More information

Oracle Application Express

Oracle Application Express Oracle Application Express End User s Guide Release 4.2 E35124-03 January 2013 Oracle Application Express End User's Guide, Release 4.2 E35124-03 Copyright 2012, 2013, Oracle and/or its affiliates. All

More information

IBM Best Practices Working With Multiple CCM Applications Draft

IBM Best Practices Working With Multiple CCM Applications Draft Best Practices Working With Multiple CCM Applications. This document collects best practices to work with Multiple CCM applications in large size enterprise deployment topologies. Please see Best Practices

More information

TestPartner. Getting Started with Visual Tests

TestPartner. Getting Started with Visual Tests TestPartner Getting Started with Visual Tests Borland Software Corporation 4 Hutton Centre Dr., Suite 900 Santa Ana, CA 92707 Copyright 2010 Micro Focus (IP) Limited. All Rights Reserved. TestPartner contains

More information

About the P6 EPPM Importing and Exporting Guide

About the P6 EPPM Importing and Exporting Guide P6 EPPM Importing and Exporting Guide October 2018 Contents About the P6 EPPM Importing and Exporting Guide Scope This guide contains information about import and export formats and the process of importing

More information

Cisco Expressway Authenticating Accounts Using LDAP

Cisco Expressway Authenticating Accounts Using LDAP Cisco Expressway Authenticating Accounts Using LDAP Deployment Guide Cisco Expressway X8.5 December 2014 Contents Introduction 3 Process summary 3 LDAP accessible authentication server configuration 4

More information

Pentaho MetaData Editor Walkthrough Guide

Pentaho MetaData Editor Walkthrough Guide Pentaho MetaData Editor Walkthrough Guide Copyright 2005 Pentaho Corporation. Redistribution permitted. All trademarks are the property of their respective owners. For the latest information, please visit

More information

Atlas 2.0. Atlas Help

Atlas 2.0. Atlas Help Atlas 2.0 Atlas Help Borland Software Corporation 700 King Farm Blvd, Suite 400 Rockville, MD 20850 Copyright Micro Focus 2015. All rights reserved. Portions Copyright 1998-2009 Borland Software Corporation

More information

Oracle Warehouse Builder 10g Release 2 Integrating Packaged Applications Data

Oracle Warehouse Builder 10g Release 2 Integrating Packaged Applications Data Oracle Warehouse Builder 10g Release 2 Integrating Packaged Applications Data June 2006 Note: This document is for informational purposes. It is not a commitment to deliver any material, code, or functionality,

More information

ArtfulBits Calendar Web Part

ArtfulBits Calendar Web Part ArtfulBits Calendar Web Part for Microsoft SharePoint 2010 User Guide Overview... 1 Feature List... 3 Why ArtfulBits Calendar Web Part?... 3 How to Use... 4 How to create new List View with ArtfulBits

More information

Borland Atlas 2.0. Installation and Configuration Guide

Borland Atlas 2.0. Installation and Configuration Guide Borland Atlas 2.0 Installation and Configuration Guide Borland Software Corporation 700 King Farm Blvd, Suite 400 Rockville, MD 20850 Copyright Micro Focus 2015. All rights reserved. Portions Copyright

More information

SQL JOIN SQL WHERE SQL ORDER BY Keyword SQL Final Statement Adding Line Items... 41

SQL JOIN SQL WHERE SQL ORDER BY Keyword SQL Final Statement Adding Line Items... 41 Cloud Services Reporting Administration Guide Version 17 July 2017 Contents About This Guide... 5 Reporting in P6 EPPM... 5 P6 Publication Services... 6 Assigning Permissions for P6 EPPM Reporting...

More information

EasyCatalog For Adobe InDesign

EasyCatalog For Adobe InDesign EasyCatalog For Adobe InDesign Relational Module User Guide 65bit Software Ltd Revision History Version Date Remarks 1.0.0 02 May 2008 First draft. 1.0.1 08 August 2008 First release. Copyright 2008 65bit

More information

Carbonite Server Backup Portal 8.5. Administration Guide

Carbonite Server Backup Portal 8.5. Administration Guide Carbonite Server Backup Portal 8.5 Administration Guide 2018 Carbonite, Inc. All rights reserved. Carbonite makes no representations or warranties with respect to the contents hereof and specifically disclaims

More information

Product Documentation. ER/Studio Portal. User Guide. Version Published February 21, 2012

Product Documentation. ER/Studio Portal. User Guide. Version Published February 21, 2012 Product Documentation ER/Studio Portal User Guide Version 1.6.3 Published February 21, 2012 2012 Embarcadero Technologies, Inc. Embarcadero, the Embarcadero Technologies logos, and all other Embarcadero

More information

Using SAP NetWeaver Business Intelligence in the universe design tool SAP BusinessObjects Business Intelligence platform 4.1

Using SAP NetWeaver Business Intelligence in the universe design tool SAP BusinessObjects Business Intelligence platform 4.1 Using SAP NetWeaver Business Intelligence in the universe design tool SAP BusinessObjects Business Intelligence platform 4.1 Copyright 2013 SAP AG or an SAP affiliate company. All rights reserved. No part

More information

Silk Test Silk Test Classic Quick Start Tutorial for Dynamic Object Recognition

Silk Test Silk Test Classic Quick Start Tutorial for Dynamic Object Recognition Silk Test 18.5 Silk Test Classic Quick Start Tutorial for Dynamic Object Recognition Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus

More information

Web-to-Host 6.9 SP1. Readme

Web-to-Host 6.9 SP1. Readme Web-to-Host 6.9 SP1 Readme Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 1984-2017. All rights reserved. MICRO FOCUS, the Micro

More information

Integrating CaliberRM with Mercury TestDirector

Integrating CaliberRM with Mercury TestDirector Integrating CaliberRM with Mercury TestDirector A Borland White Paper By Jenny Rogers, CaliberRM Technical Writer January 2002 Contents Introduction... 3 Setting Up the Integration... 3 Enabling the Integration

More information

End User s Guide Release 5.0

End User s Guide Release 5.0 [1]Oracle Application Express End User s Guide Release 5.0 E39146-04 August 2015 Oracle Application Express End User's Guide, Release 5.0 E39146-04 Copyright 2012, 2015, Oracle and/or its affiliates. All

More information

Cherwell Service Management

Cherwell Service Management Version 9.1.0 April 2017 Legal Notices Cherwell Software, LLC 2017 All Rights Reserved. Cherwell and the Cherwell logo are trademarks owned by Cherwell Software, LLC and are registered and/or used in the

More information

Edge Device Manager Quick Start Guide. Version R15

Edge Device Manager Quick Start Guide. Version R15 Edge Device Manager Quick Start Guide Version R15 Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates

More information

AccuRev Plugin for Crucible Installation and Release Notes

AccuRev Plugin for Crucible Installation and Release Notes AccuRev Plugin for Crucible 2017.2 Installation and Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2017. All rights

More information

AccuRev Plug-In for Visual Studio PE Installation and Release Notes

AccuRev Plug-In for Visual Studio PE Installation and Release Notes AccuRev Plug-In for Visual Studio PE 2018.1 Installation and Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2018.

More information

Enterprise Sync 2.1. Release Notes

Enterprise Sync 2.1. Release Notes Enterprise Sync 2.1 Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2017. All rights reserved. MICRO FOCUS, the Micro

More information

Jira Connector Option - v18

Jira Connector Option - v18 Jira Connector Option - v18 Copyright 2019 ONEPOINT Projects GmbH. All rights reserved. ONEPOINT Projects, Enterprise Edition, Version 18 ONEPOINT Informationslosungen and the ONEPOINT Logo are registered

More information

Oracle Enterprise Performance Reporting Cloud. What s New in June 2017 Update (17.06)

Oracle Enterprise Performance Reporting Cloud. What s New in June 2017 Update (17.06) Oracle Enterprise Performance Reporting Cloud What s New in June 2017 Update (17.06) May 2017 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE ENTERPRISE PERFORMANCE REPORTING CLOUD, JUNE UPDATE... 4 ANNOUNCEMENTS

More information

EPM Live 2.2 Configuration and Administration Guide v.os1

EPM Live 2.2 Configuration and Administration Guide v.os1 Installation Configuration Guide EPM Live v2.2 Version.01 April 30, 2009 EPM Live 2.2 Configuration and Administration Guide v.os1 Table of Contents 1 Getting Started... 5 1.1 Document Overview... 5 1.2

More information

Advanced ARC Reporting

Advanced ARC Reporting COPYRIGHT & TRADEMARKS Copyright 1998, 2009, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks

More information

OpenProject AdminGuide

OpenProject AdminGuide OpenProject AdminGuide I. Contents I. Contents... 1 II. List of figures... 2 1 Administration... 2 1.1 Manage projects...2 1.2 Manage users...5 1.3 Manage groups...11 1.4 Manage roles and permissions...13

More information

SilkTest Workbench. Getting Started with Visual Tests

SilkTest Workbench. Getting Started with Visual Tests SilkTest Workbench Getting Started with Visual Tests Borland Software Corporation 4 Hutton Centre Dr., Suite 900 Santa Ana, CA 92707 Copyright 2010 Micro Focus (IP) Limited. All Rights Reserved. SilkTest

More information

SilkTest Installation Guide

SilkTest Installation Guide SilkTest 2010 Installation Guide Borland Software Corporation 4 Hutton Centre Dr., Suite 900 Santa Ana, CA 92707 Copyright 2009-2010 Micro Focus (IP) Limited. All Rights Reserved. SilkTest contains derivative

More information

Oracle Learn Cloud. What s New in Release 15B

Oracle Learn Cloud. What s New in Release 15B Oracle Learn Cloud What s New in Release 15B 10 July 2015 TABLE OF CONTENTS OVERVIEW... 3 RELEASE FEATURE SUMMARY... 3 BI REPORTING BETA CUSTOM REPORTING CAPABILITIES... 5 Terminology... 5 New User Permission...

More information

Cisco WebEx Social Release Notes, Release 3.1 SR1

Cisco WebEx Social Release Notes, Release 3.1 SR1 Cisco WebEx Social Release Notes, Release 3.1 SR1 Revised November 27, 2012 These release notes provide important information for Cisco WebEx Social 3.1 SR1 build 3.1.1.10100.194. Contents These release

More information

vcenter Operations Manager for Horizon View Administration

vcenter Operations Manager for Horizon View Administration vcenter Operations Manager for Horizon View Administration vcenter Operations Manager for Horizon View 1.5 vcenter Operations Manager for Horizon View 1.5.1 This document supports the version of each product

More information

Data Protection Guide

Data Protection Guide SnapCenter Software 4.0 Data Protection Guide For Custom Plug-ins March 2018 215-12932_C0 doccomments@netapp.com Table of Contents 3 Contents Deciding on whether to read the SnapCenter Data Protection

More information

SilkTest 2010 R2. Release Notes

SilkTest 2010 R2. Release Notes SilkTest 2010 R2 Release Notes Borland Software Corporation 4 Hutton Centre Dr., Suite 900 Santa Ana, CA 92707 Copyright Micro Focus IP Development Limited 2009-2011. All Rights Reserved. SilkTest contains

More information

Lionbridge Connector for Sitecore. User Guide

Lionbridge Connector for Sitecore. User Guide Lionbridge Connector for Sitecore User Guide Version 4.0.5 November 2, 2018 Copyright Copyright 2018 Lionbridge Technologies, Inc. All rights reserved. Lionbridge and the Lionbridge logotype are registered

More information

Arcserve Backup for Windows

Arcserve Backup for Windows Arcserve Backup for Windows Agent for Sybase Guide r17.0 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Perceptive Nolij Web. Administrator Guide. Version: 6.8.x

Perceptive Nolij Web. Administrator Guide. Version: 6.8.x Perceptive Nolij Web Administrator Guide Version: 6.8.x Written by: Product Knowledge, R&D Date: June 2018 Copyright 2014-2018 Hyland Software, Inc. and its affiliates.. Table of Contents Introduction...

More information

Analytics: Server Architect (Siebel 7.7)

Analytics: Server Architect (Siebel 7.7) Analytics: Server Architect (Siebel 7.7) Student Guide June 2005 Part # 10PO2-ASAS-07710 D44608GC10 Edition 1.0 D44917 Copyright 2005, 2006, Oracle. All rights reserved. Disclaimer This document contains

More information

HP Intelligent Management Center SOM Administrator Guide

HP Intelligent Management Center SOM Administrator Guide HP Intelligent Management Center SOM Administrator Guide Abstract This guide contains comprehensive conceptual information for network administrators and other personnel who administrate and operate the

More information

McAfee epolicy Orchestrator Release Notes

McAfee epolicy Orchestrator Release Notes McAfee epolicy Orchestrator 5.9.1 Release Notes Contents About this release What's new Resolved issues Known issues Installation information Getting product information by email Where to find product documentation

More information

StarTeam 15.0 Synchronizer for Quality Center User Guide

StarTeam 15.0 Synchronizer for Quality Center User Guide StarTeam 15.0 Synchronizer for Quality Center User Guide Borland Software Corporation 700 King Farm Blvd, Suite 400 Rockville, MD 20850 Copyright Micro Focus. All rights Reserved. Portions Copyright 1998-2009

More information

SAP Analytics Cloud model maintenance Restoring invalid model data caused by hierarchy conflicts

SAP Analytics Cloud model maintenance Restoring invalid model data caused by hierarchy conflicts SAP Analytics Cloud model maintenance Restoring invalid model data caused by hierarchy conflicts TABLE OF CONTENTS DEFINING THE PROBLEM... 3 EXAMPLE: REPRODUCING THE PROBLEM... 4 Setting up conflicting

More information

Nexio G-Scribe Data Source Wizard

Nexio G-Scribe Data Source Wizard Nexio G-Scribe Data Source Wizard 6/17/2014 175-100330-00 Publication Information 2014 Imagine Communications. Proprietary and Confidential. Imagine Communications considers this document and its contents

More information

Using the VMware vrealize Orchestrator Client

Using the VMware vrealize Orchestrator Client Using the VMware vrealize Orchestrator Client vrealize Orchestrator 7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by

More information

Getting started with R-Tag Viewer and Scheduler (R-Tag Report Manager)

Getting started with R-Tag Viewer and Scheduler (R-Tag Report Manager) Contents Getting started with R-Tag Viewer and Scheduler (R-Tag Report Manager)... 2 Reports... 3 Add a report... 3 Run a report...15 Jobs...15 Introduction...15 Simple jobs....15 Bursting jobs....16 Data

More information

Avigilon Control Center 5 System Integration Guide. for Jacques IP Audio Intercom System

Avigilon Control Center 5 System Integration Guide. for Jacques IP Audio Intercom System Avigilon Control Center 5 System Integration Guide for Jacques IP Audio Intercom System 2010-2017, Avigilon Corporation. All rights reserved. AVIGILON, the AVIGILON logo, AVIGILON CONTROL CENTER, ACC and

More information

Caliber Visual Studio.NET Integration Visual Studio Integration

Caliber Visual Studio.NET Integration Visual Studio Integration Caliber Visual Studio.NET Integration 11.5 Visual Studio Integration Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2016. All rights

More information

Remote Asset Manager. Version 2.2. Administrator's Guide

Remote Asset Manager. Version 2.2. Administrator's Guide Remote Asset Manager Version 2.2 Administrator's Guide April 2018 www.lexmark.com Contents 2 Contents Change history... 3 Overview... 4 Deployment readiness checklist...5 Getting started... 6 Installing

More information

Cisco TelePresence Authenticating Cisco VCS Accounts Using LDAP

Cisco TelePresence Authenticating Cisco VCS Accounts Using LDAP Cisco TelePresence Authenticating Cisco VCS Accounts Using LDAP Deployment Guide Cisco VCS X8.2 D14465.07 June 2014 Contents Introduction 3 Process summary 3 LDAP accessible authentication server configuration

More information

Dell Wyse Management Suite. Version 1.3 Deployment Guide

Dell Wyse Management Suite. Version 1.3 Deployment Guide Dell Wyse Management Suite Version 1.3 Deployment Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates

More information

Silk Test Using the Basic Workflow with the Open Agent

Silk Test Using the Basic Workflow with the Open Agent Silk Test 18.5 Using the Basic Workflow with the Open Agent Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 1992-2017. All rights

More information

ControlPoint. Evaluation Guide. November 09,

ControlPoint. Evaluation Guide. November 09, ControlPoint Evaluation Guide November 09, 2017 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH., 2008-2017 All rights reserved. No part or section of the contents of this

More information

Configuring Job Monitoring in SAP Solution Manager 7.2

Configuring Job Monitoring in SAP Solution Manager 7.2 How-To Guide SAP Solution Manager Document Version: 1.0 2017-05-31 Configuring Job Monitoring in SAP Solution Manager 7.2 Typographic Conventions Type Style Example Example EXAMPLE Example Example

More information

Novell ZENworks Asset Management 7

Novell ZENworks Asset Management 7 Novell ZENworks Asset Management 7 w w w. n o v e l l. c o m July 2006 INSTALLATION GUIDE Table Of Contents 1. Installation Overview... 1 Upgrade/Update Matrix...1 Installation Choices...2 ZENworks Asset

More information

Implementing and Supporting Windows Intune

Implementing and Supporting Windows Intune Implementing and Supporting Windows Intune Module 3: Computer Administration by Using Windows Intune Module Overview Understanding Groups Creating and Populating Groups The Windows Intune Update Process

More information