HP Intelligent Management Center v7.1

Size: px
Start display at page:

Download "HP Intelligent Management Center v7.1"

Transcription

1 HP Intelligent Management Center v7.1 iar Quick Start Guide Part number: Published: September 2014 Software Version: IMC PLAT 7.1 (E0302) Edition: 1.0

2 Legal and notice information Copyright 2014 Hewlett-Packard Development Company, L.P. Confidential computer software. Valid license from HP required for possession, use or copying. Consistent with FAR and , Commercial Computer Software, Computer Software Documentation, and Technical Data for Commercial Items are licensed to the U.S. Government under vendor's standard commercial license. The information contained herein is subject to change without notice. The only warranties for HP products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. HP shall not be liable for technical or editorial errors or omissions contained herein. Acknowledgements Java and Oracle are registered trademarks of Oracle and/or its affiliates. Linux is the registered trademark of Linus Torvalds in the U.S. and other countries. ii

3 Contents 1 Overview 4 Principles for using iar 5 Locating the JDBC function 5 Configuring data connections 7 Adding the JDBC connection to the iar configuration file 7 Configuring the JDBC connection through the iar GUI 9 Configuring data sources 12 2 Example 18 Customizing a report template in iar 19 Adding the report template to IMC 37 iii

4 1 Overview To use the Intelligent Analysis Report (iar), you are expected have basic knowledge of SQL and relational databases. As an IMC service component, iar is a report designer that enables you to customize various report templates by using the data sources provided by IMC. Using iar to create a report template for IMC involves the following tasks: 1. Customize a report template in iar. The system automatically saves the report template to an RPT file after the customization is complete. 2. Transfer the template file to the IMC server. 3. Add the report template to IMC by using the Add Report Template feature. After that, you can use the template to generate reports, and centrally manage the report templates in IMC. Figure 2 illustrates the process of using iar to customize a report template for IMC. Figure 2 Using iar to customize a report template for IMC 4

5 Principles for using iar IMC accesses the database through JDBC. Therefore, generation of report templates using iar requires access to the data sources through JDBC. To access the database through JDBC: For SQL Server, specify the database objects under report in the report_db database in the IMC system. For Oracle and MySQL, specify the database objects under report. Because the IMC includes a strict control mechanism for access rights of an operator, all report templates generated using iar must have the operator parameter to control the access rights. For more information, see "2 Example." Locating the JDBC function 1. Start the iar program. 2. Click File, and then select New > Blank Report, as shown in Figure 3. Figure 3 Launching the Database Expert dialog box 3. In the Database Expert dialog box, select Create New Connection > JDBC (JNDI) from the Available Data Sources list. 5

6 Figure 4 Accessing JDBC data source 4. The first time you create a template, you may not find JDBC (JNDI) under Create New Connection. In this situation, select JDBC (JNDI) under More Data Sources. From then on, JDBC (JNDI) is displayed under Create New Connection. 6

7 Figure 5 Locating the JDBC data source from More Data Sources Configuring data connections To use iar to design report templates for IMC, you must configure a JDBC connection for iar to access the data source in the IMC database. The connection information includes the name, URL, class name of the database, and the user credentials to access the data source. You can manually configure the JDBC connection through the iar GUI when creating a report template. Or, you can add the connection settings to the iar configuration file so that the connection will always appear on the JDBC connection creation page as an available option. Both methods require that you configure the user credentials before iar can connect to the database through the connection. Adding the JDBC connection to the iar configuration file 1. Download the data source file from IMC, as shown in Figure 6: a. Log in to IMC. b. Click the Report tab and select Report Template List. c. Click Download data source file to download and save the data source file. 7

8 Figure 6 Downloading the data source file In this example, the file contains a MSSQL data connection named sqlserver. <DatabaseConnectionInformation> <Connection name="sqlserver">!net.sourceforge.jtds.jdbc.driver!jdbc:jtds:sqlserver:// :1433/report_db; tds=8.0 </Connection> </DatabaseConnectionInformation> 2. Replace in the data source file with the IP address of the database server. 3. Add the connection to the iar configuration file CRConfig.xml. Add the DatabaseConnectionInformation content to the GenericJDBCDriver tag of the CRConfig.xml file. The CRConfig.xml is located in the \Common\4.0 \java directory of the iar installation directory. <GenericJDBCDriver> <DatabaseConnectionInformation> <Connection name="sqlserver">!net.sourceforge.jtds.jdbc.driver!jdbc:jtds:sqlserver://dbserver IP:1433/report_db;tds=8.0</Connection> </GenericJDBCDriver> The string DBServer IP is the IP address of the database server. 4. Start the iar program. 5. Click File, and then select New > Blank Report, as shown in Figure 7. Figure 7 Launching the Database Expert dialog box 6. In the Database Expert dialog box, select Create New Connection > JNBC (JNDI). 7. Double-click Make New Connection. The JDBC (JNDI) dialog box appears. 8

9 Verify that sqlserver is provided as a predefined option in the Connection Name field, as shown in Figure 8. Figure 8 JDBC (JNDI) dialog box Configuring the JDBC connection through the iar GUI 1. In the JDBC (JNDI) dialog box, select JDBC Connection, as shown in Figure 9. 9

10 Figure 9 JDBC (JNDI) dialog box 2. Click Next. The page for adding a JDBC connection appears, as shown in Figure

11 Figure 10 Adding a JDBC connection 3. Configure the following parameters: Connection URL Enter the connection URL: For MSSQL, enter jdbc:jtds:sqlserver://server IP:1433/report_db;tds=8.0. For Oracle, enter jdbc:oracle:thin:@ /Server IP:1521:tnsName. For MySQL, enter jdbc:mysql://server IP:3306/report_db. Replace Server IP and tnsname (for Oracle) with the IP address and tnsname of the database. You can get the tnsname of the Oracle database by using the echo $ORACLE_SID command in Linux. Database Classname Enter the database class name: For MSSQL, enter net.sourceforge.jtds.jdbc.driver. For Oracle, enter oracle.jdbc.driver.oracledriver. For MySQL, enter com.mysql.jdbc.driver. Connection Name Enter a name for the connection, or leave the field empty to use the connection URL as the connection name. 4. Click Next. The dialog box shown in Figure 11 appears. 11

12 Figure 11 Configuring the user credentials for the connection 5. Specify the user credentials for connecting to the data source: a. Enter report_db in the Database field. b. Enter report in the User ID field. c. Enter the user password. The initial password is sqlsql. 6. Click Finish. iar automatically connects to the data source. Configuring data sources After you connect iar to the IMC database, use one of the following methods to configure the data objects to be used by iar as the report data source: Select the tables in the database as the data source. Use the query results of SQL statements as the data source. To configure the data objects for the report data source: 1. Start the iar program. 2. Click File, and then select New > Blank Report, as shown in Figure

13 Figure 12 Launching the Database Expert dialog box 3. In the Database Expert dialog box, select Create New Connection > JNBC (JNDI). 4. Double-click Make New Connection. The JDBC (JNDI) dialog box appears. 5. Select Named Connection, select sqlserver in the Connection Name field, and click Next, as shown in Figure 13. Figure 13 JDBC (JNDI) dialog box 6. Set the user ID to report, enter the initial password sqlsql, and click Finish, as shown in Figure

14 Figure 14 Configuring the user credentials 7. In the Database Expert dialog box, expand the newly created JDBC connection sqlserver. All tables in the database that are available to the connection are displayed, with the Add Command link at the top. 8. Perform one of the following tasks: To use existing database tables as the report data source, select the tables in the Available Data Sources list and add them to the Selected Tables list, as shown in Figure

15 Figure 15 Selecting tables for the data source To use the query results of a SQL statement as the data source, double-click Add Command. In the Add Command to Report dialog box, enter the SQL statement, and click OK. Depending on the type of the database, the SQL statement must meet the following requirements: For MSSQL or MySQL, the statement queries objects in the report_db database. For Oracle, the statement queries objects under the report user. 15

16 Figure 16 Using query results of a SQL statement as the data source Figure 17 Add Command to Report dialog box 16

17 9. Click OK. 17

18 2 Example This example describes how to use iar and IMC to create the Device Category Statistic Report. As shown in Figure 18, the Device Category Statistic Report displays the device category statistics in a bar chart. Figure 18 Device category statistic report-bar chart You can access the device list of a device category by clicking the corresponding bar in the chart, as shown in Figure

19 Figure 19 Device category statistic report-device list Customizing a report template in iar 1. Start the iar program. 2. Click File, and then select New > Blank Report, as shown in Figure 20. Figure 20 Launching the Database Expert dialog box 3. In the Database Expert dialog box, select Create New Connection > JNBC (JNDI) from the Available Data Sources list, and then double-click Make New Connection, as shown in Figure

20 Figure 21 Creating a new connection 4. In the JDBC (JNDI) dialog box, configure the following parameters, as shown in Figure 22: a. Select Named Connection. b. Select an existing connection in the Connection Name field. This example uses sqlserver. For information about configuring JDBC data connections, see "Configuring data connections." c. Click Next. 20

21 Figure 22 Selecting an existing connection 5. Enter report and sqlsql in the User ID and Password fields, and then click Finish, as shown in Figure

22 Figure 23 Specifying the user credentials for the connection iar automatically connects to the data source and displays the obtained database tables under the sqlserver JDBC connection in Create New Connection > JDBC (JNDI) of the Available Data Sources list. 6. Select plat_v_dev and plat_v_operator_dev in the Available Data Sources list, add them to the Selected Tables list, and click OK, as shown in Figure

23 Figure 24 Specifying the data source objects v NOTE: plat_v_dev contains all device information, including the device IP address, type, and label information. palt_v_operator_dev defines the device resources that each operator can access. For a description of the fields in the data sources, see iar Data Source Description (Platform Volume). 7. Click the Links tab to link the selected tables. By default, the tables are automatically linked based on the field names. You can add or modify a field name as needed. Because plat_v_operator_dev displays IDs of devices that can be accessed by each operator, link the dev_id field of the two tables together. By adding control conditions in the Select Expert page, you can limit the data record selection for the report to device resources authorized to a particular operator. 23

24 Figure 25 Linking the tables 8. Click OK. The window for designing the report template appears. 9. Select View > Field Explorer to display the Field Explorer view. If the view is already displayed as shown in Figure 26, skip this step. Figure 26 Intelligent Analysis Report window 24

25 10. Drag dev_ip, dev_type_name, category_name, and symbl_name from the field explorer to the Details section, as shown in Figure 27 and Figure 28. Figure 27 Dragging fields to the Details section Figure 28 Details section 11. Create the operator parameter to control the device resources that the report template can use. a. In Field Explorer, right-click Parameter Fields and select New from the shortcut menu, as shown in Figure 29. Figure 29 Creating a parameter 25

26 b. In the Create New Parameter dialog box, configure the parameters as shown in Figure 30: Enter operator in the Name field. Use the default settings of other parameters. Figure 30 Creating the operator parameter 12. Click OK. The operator parameter appears under Parameter Fields, as shown in Figure 31. Figure 31 Viewing the operator parameter 13. Click the Select Expert icon in the tool bar. The Choose Field dialog box displays all the fields that are available from each table in the database fields section. 14. To base the record selection on the operator name field, select name under plat_v_operator_dev and click OK, as shown in Figure

27 Figure 32 Specifying the record selection field 15. In the Select Expert-Record dialog box, configure the condition you want iar to use when selecting records for the report. In this example, set the condition to is equal to {?operator}, and then click OK, as shown in Figure 33. Figure 33 Setting the record selection condition 27

28 16. Click the Group Expert icon in the tool bar. The Group Expert dialog box appears. You can break the report data into groups to run calculations on each group of records instead of all the records in the report. 17. Select the field to group the report data by. In this example, select category_name in plat_v_dev to group data by device category, as shown in Figure 34. Figure 34 Specifying a group condition 18. Click OK. The Group Header and Group Footer sections are added to the report template, as shown in Figure 35. Figure 35 Group Header and Group Footer sections 19. Click the Insert Summary icon in the tool bar. 20. In the Insert Summary dialog box, configure the summarizing options for summarizing grouped data, as shown in Figure 36: a. Select the field to summarize from the Choose the field to summarize list. This example uses plat_v_dev.dev_ip. 28

29 b. Select a summary operation from the Calculate this summary list. This example uses Count. c. Select the Add to all group levels option to add the summary to all group levels. Figure 36 Configuring summarizing options 21. Click OK. The summarizing fields appear on the report template, as shown in Figure 37. Figure 37 Summarizing fields 22. Adjust the field positions on the report template, as shown in Figure 38: Drag the count summarizing fields from the group footer section to the group header section. Drag the field names to the group header section. 29

30 Figure 38 Adjusting the field positions 23. Insert the report title, as shown in Figure 39: a. Click the Insert Text icon in the tool bar. b. Click the area where you want to insert the report title to create a text box. c. Enter the report title in the text box. This example uses Device Category Statistic. Figure 39 Configuring the report title 24. Format the report title text: a. Right-click the title text and select Format Text from the shortcut menu, as shown in Figure 40 30

31 Figure 40 Formatting the report title text b. In the Format Editor dialog box, click the Font tab and configure the font parameters as shown in Figure 41: c. Click OK. Select Arial from the Font list. Select Bold from the Style list. Select 24 from the Size list. Set the color to black. 31

32 Figure 41 Configuring the font settings for the title text 25. Resize the text box to fit the title text, as shown in Figure 42. Figure 42 Report title 26. Insert a logo to the report template: a. Click Insert Picture icon in the tool bar. b. In the Open dialog box, select a logo file and click Open. This example uses the logo.jpb file, as shown in Figure

33 Figure 43 Selecting a logo file c. Place the logo in the upper left corner of the report title area, as shown in Figure 44. Figure 44 Report logo 27. Add a chart to the report template. You can include various types of charts in your report template. This example uses a bar chart. a. Click the Insert Chart icon in the tool bar, and then drag the default chart to the desired position in the report template, as shown in Figure

34 Figure 45 Inserting a chart to the report template b. Right-click the chart and select Chart Expert from the shortcut menu, as shown in Figure 46. Figure 46 Launching the Chart Expert dialog box c. On the Type tab of the Chart Expert dialog box, select a chart type in the chart type list. This example uses the Bar chart type, which is selected by default. 34

35 Figure 47 Selecting a chart type d. Click the Text tab and configure the title settings as shown in Figure 48. Figure 48 Configuring the title settings 35

36 28. To hide details in the summary report, right-click the Details section in the section list, and then select Hide (Drill-Down OK) from the shortcut menu, as shown in Figure 49. Figure 49 Hiding the details in the summary report 29. Use the same method to hide the page header, group header, group footer in the report template. For additional functions, see the iar Help. The report template customization is complete. 30. To preview the report template, click the Print Preview icon on the toolbar. 31. In the Enter Values dialog box, enter an operator name. iar will generate the report by using the device data authorized to the specified operator. This example uses admin, as shown in Figure 50. Figure 50 Specifying the operator 32. Click OK. The Device Category Statistic Report appears, as shown in Figure

37 Figure 51 Device Category Statistic Report 33. Click the bar of Desktop to view detailed desktop information, as shown in Figure 52. Figure 52 Viewing the desktop list Adding the report template to IMC After you create the report template in iar, you can add it to IMC so that operators can use the template to generate reports. To add the report template to IMC: 1. Log in to IMC. 37

38 2. Select Report > Add Report Template, as shown in Figure 53. Figure 53 Accessing the Add Report Template page The Add Report Template page appears, as shown in Figure 54. Figure 54 Add Report Template page 3. Click Upload next to the Template File field. 4. In the Upload Template dialog box, upload the template file and parameter file: a. Click Upload next to the Template File field to upload the.rpt file where the report template is stored. This example uses the test.rpt file, as shown in Figure 55. Figure 55 Uploading the template file 38

39 b. In the Parameter File area, click Choose File to upload a parameter file. This step is optional. The Parameter File contains parameters that you want the operator to configure before using the template to generate a report. For example, to enable the operator to configure Begin Time and End Time parameters for statistics collection before generating a report, customize the parameter settings in the parameter file shown in Figure 56, and then upload the file to IMC. Figure 56 Parameter file When an operator uses the report template to generate a report, the Set Parameter page displays the parameters defined in the parameter file, as shown in Figure 57. Figure 57 Set Parameter page 5. Click OK. IMC verifies the uploaded files and then closes the Upload Template dialog box. 6. On the Add Report Template page, configure other parameters as shown in Figure 58: 39

40 a. Select the data source for the report template from the Report Data Source List. This example uses Local( ). b. Enter report template name in the Template Name field. This example uses hello report. c. Select a report template type from the Type list. This example uses Overall Report. d. Select the operator groups that can view the report template. Figure 58 Adding the report template 7. Click OK. The system displays a message that the report template is added successfully. 8. From the top navigation bar, select Report > Report Template List, as shown in Figure 59. Figure 59 Accessing the report template list 9. Click the name of the new report template in the report template list, as shown in Figure

41 Figure 60 Report template list The report page appears, as shown in Figure 61. Figure 61 Viewing the report 41

42 42

HP Intelligent Management Center Remote Site Management User Guide

HP Intelligent Management Center Remote Site Management User Guide HP Intelligent Management Center Remote Site Management User Guide Abstract This book provides overview and procedural information for Remote Site Management, an add-on service module to the Intelligent

More information

HP Device Manager 4.7

HP Device Manager 4.7 Technical white paper HP Device Manager 4.7 Importing Templates from Similar Operating Systems Table of contents Overview... 2 Preparation... 2 Template preparation... 2 Modifying an exported XML template...

More information

HP Network Node Manager i Software Step-by-Step Guide to Scheduling Reports using Network Performance Server

HP Network Node Manager i Software Step-by-Step Guide to Scheduling Reports using Network Performance Server HP Network Node Manager i Software Step-by-Step Guide to Scheduling Reports using Network Performance Server NNMi 9.1x Patch 2 This document shows an example of building a daily report for the ispi Performance

More information

HPE ALM Excel Add-in. Microsoft Excel Add-in Guide. Software Version: Go to HELP CENTER ONLINE

HPE ALM Excel Add-in. Microsoft Excel Add-in Guide. Software Version: Go to HELP CENTER ONLINE HPE ALM Excel Add-in Software Version: 12.55 Microsoft Excel Add-in Guide Go to HELP CENTER ONLINE http://alm-help.saas.hpe.com Document Release Date: August 2017 Software Release Date: August 2017 Legal

More information

HP ALM Performance Center

HP ALM Performance Center HP ALM Performance Center Software Version: 12.53 Quick Start Document Release Date: May 2016 Software Release Date: May 2016 Legal Notices Warranty The only warranties for Hewlett Packard Enterprise Development

More information

Experience SAP HANA Cloud Portal. Use SAP HANA Cloud Portal to Create Engaging Websites in 5 Simple Steps

Experience SAP HANA Cloud Portal. Use SAP HANA Cloud Portal to Create Engaging Websites in 5 Simple Steps Experience SAP HANA Cloud Portal Use SAP HANA Cloud Portal to Create Engaging Websites in 5 Simple Steps TABLE OF CONTENTS TUTORIAL AGENDA... 3 PREREQUISITES... 3 EXERCISE 1: CREATE AND CONFIGURE A NEW

More information

HP 3PAR OS MU1 Patch 11

HP 3PAR OS MU1 Patch 11 HP 3PAR OS 313 MU1 Patch 11 Release Notes This release notes document is for Patch 11 and intended for HP 3PAR Operating System Software HP Part Number: QL226-98041 Published: December 2014 Edition: 1

More information

HPE Intelligent Management Center v7.3

HPE Intelligent Management Center v7.3 HPE Intelligent Management Center v7.3 Service Operation Manager Administrator Guide Abstract This guide contains comprehensive conceptual information for network administrators and other personnel who

More information

ALM. What's New. Software Version: Go to HELP CENTER ONLINE

ALM. What's New. Software Version: Go to HELP CENTER ONLINE ALM Software Version: 12.55 What's New Go to HELP CENTER ONLINE http://admhelp.microfocus.com// Document Release Date: August 2017 Software Release Date: August 2017 ALM ALM (12.55) Page 2 of

More information

HP ALM Client MSI Generator

HP ALM Client MSI Generator HP ALM Client MSI Generator Software Version: 1.00 User Guide Document Release Date: October 2010 Software Release Date: October 2010 Legal Notices Warranty The only warranties for HP products and services

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Unix operating systems. Knowledge Management help topics for printing

HP Service Manager. Software Version: 9.40 For the supported Windows and Unix operating systems. Knowledge Management help topics for printing HP Service Manager Software Version: 9.40 For the supported Windows and Unix operating systems Knowledge Management help topics for printing Document Release Date: January 2015 Software Release Date: January

More information

Project and Portfolio Management Center

Project and Portfolio Management Center Project and Portfolio Management Center Software Version: 9.42 Getting Started Go to HELP CENTER ONLINE http://admhelp.microfocus.com/ppm/ Document Release Date: September 2017 Software Release Date: September

More information

HP Service Manager. Process Designer Tailoring Best Practices Guide (Codeless Mode)

HP Service Manager. Process Designer Tailoring Best Practices Guide (Codeless Mode) HP Service Manager Software Version: 9.41 For the supported Windows and UNIX operating systems Process Designer Tailoring Best Practices Guide (Codeless Mode) Document Release Date: September 2015 Software

More information

HP Service Manager. Software Version: 9.41 For the supported Windows and UNIX operating systems. Collaboration Guide

HP Service Manager. Software Version: 9.41 For the supported Windows and UNIX operating systems. Collaboration Guide HP Service Manager Software Version: 9.41 For the supported Windows and UNIX operating systems Collaboration Guide Document Release Date: September 2015 Software Release Date: September 2015 Legal Notices

More information

HP 3PAR OS MU3 Patch 18 Release Notes

HP 3PAR OS MU3 Patch 18 Release Notes HP 3PAR OS 3.2.1 MU3 Patch 18 Release Notes This release notes document is for Patch 18 and intended for HP 3PAR Operating System Software 3.2.1.292 (MU3). HP Part Number: QL226-98326 Published: August

More information

Project and Portfolio Management Center

Project and Portfolio Management Center Project and Portfolio Management Center Software Version: 9.42 Application Portfolio Management Administrator Guide Go to HELP CENTER ONLINE http://admhelp.microfocus.com/ppm/ Document Release Date: July

More information

HPE Intelligent Management Center

HPE Intelligent Management Center HPE Intelligent Management Center Service Health Manager Administrator Guide Abstract This guide provides introductory, configuration, and usage information for Service Health Manager (SHM). It is for

More information

HP Database and Middleware Automation

HP Database and Middleware Automation HP Database and Middleware Automation For Windows Software Version: 10.10 SQL Server Database Refresh User Guide Document Release Date: June 2013 Software Release Date: June 2013 Legal Notices Warranty

More information

HP Intelligent Management Center v7.1 MySQL 5.6 Installation and Configuration Guide (Windows)

HP Intelligent Management Center v7.1 MySQL 5.6 Installation and Configuration Guide (Windows) HP Intelligent Management Center v7.1 MySQL 5.6 Installation and Configuration Guide (Windows) Abstract This document provides installation and configuration information for MySQL. It includes the procedures

More information

HP ALM. Software Version: patch 2. Business Views Microsoft Excel Add-in User Guide

HP ALM. Software Version: patch 2. Business Views Microsoft Excel Add-in User Guide HP ALM Software Version: 12.21 patch 2 Business Views Microsoft Excel Add-in User Guide Document Release Date: September 2016 Software Release Date: September 2016 Legal Notices Warranty The only warranties

More information

UCMDB Zeus History. Copyright 2012 Hewlett-Packard Development Company, L.P.

UCMDB Zeus History. Copyright 2012 Hewlett-Packard Development Company, L.P. UCMDB Zeus History Copyright 2012 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. The only warranties for HP products and services are set

More information

HP Project and Portfolio Management Center

HP Project and Portfolio Management Center HP Project and Portfolio Management Center Software Version: 9.30 HP Demand Management User s Guide Document Release Date: September 2014 Software Release Date: September 2014 Legal Notices Warranty The

More information

HP Service Manager. Software Version: 9.41 For the supported Windows and UNIX operating systems. SM Reports help topics for printing

HP Service Manager. Software Version: 9.41 For the supported Windows and UNIX operating systems. SM Reports help topics for printing HP Service Manager Software Version: 9.41 For the supported Windows and UNIX operating systems SM Reports help topics for printing Document Release Date: September 2015 Software Release Date: September

More information

HP Business Availability Center

HP Business Availability Center HP Business Availability Center for the Windows and Solaris operating systems Software Version: 8.00 Embedded UCMDB Applets Using Direct Links Document Release Date: January 2009 Software Release Date:

More information

HP AutoPass License Server

HP AutoPass License Server HP AutoPass License Server Software Version: 9.0 Windows, Linux and CentOS operating systems Support Matrix Document Release Date: October 2015 Software Release Date: October 2015 Page 2 of 10 Legal Notices

More information

HP D6000 Disk Enclosure Direct Connect Cabling Guide

HP D6000 Disk Enclosure Direct Connect Cabling Guide HP D6000 Disk Enclosure Direct Connect Cabling Guide Abstract This document provides cabling examples for when an HP D6000 Disk Enclosure is connected directly to a server. Part Number: 682251-001 September

More information

Modem Command Guidelines HP Notebook Series

Modem Command Guidelines HP Notebook Series HP Notebook Series Document Part Number: 316740-002 May 2003 This document provides instructions for selecting, accessing, and using the AT command set supported by the modem in your notebook. 2003 Hewlett-Packard

More information

HP Integration with Incorta: Connection Guide. HP Vertica Analytic Database

HP Integration with Incorta: Connection Guide. HP Vertica Analytic Database HP Integration with Incorta: Connection Guide HP Vertica Analytic Database HP Big Data Document Release Date: July, 2015 Legal Notices Warranty The only warranties for HP products and services are set

More information

HPE Intelligent Management Center

HPE Intelligent Management Center HPE Intelligent Management Center VAN Connection Manager Administrator Guide Abstract This guide contains comprehensive information for network administrators, engineers, and operators who manage the VAN

More information

QuickSpecs. HP IMC Branch Intelligent Management Software. Models HP IMC Branch Intelligent Management System Software Module w/50-node E-LTU

QuickSpecs. HP IMC Branch Intelligent Management Software. Models HP IMC Branch Intelligent Management System Software Module w/50-node E-LTU Overview Models HP IMC Branch Intelligent Management System Software Module w/50-node E-LTU JG265AAE Key features Unified resource management Single-pane visibility Integrated access and user management

More information

HP Operations Orchestration

HP Operations Orchestration HP Operations Orchestration Software Version: 7.20 HP Business Availability Center Integration Document Release Date: July 2008 Software Release Date: July 2008 Legal Notices Warranty The only warranties

More information

HP Intelligent Management Center Branch Intelligent Management System (BIMS) User Guide

HP Intelligent Management Center Branch Intelligent Management System (BIMS) User Guide HP Intelligent Management Center Branch Intelligent Management System (BIMS) User Guide Abstract This guide contains basic information for network administrators, engineers, and operators who use the Branch

More information

SAP Crystal Reports for Enterprise User Guide SAP Crystal Reports for Enterprise

SAP Crystal Reports for Enterprise User Guide SAP Crystal Reports for Enterprise SAP Crystal Reports for Enterprise User Guide SAP Crystal Reports for Enterprise Copyright 2011 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP BusinessObjects Explorer,

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

HPE Security ArcSight Connectors

HPE Security ArcSight Connectors HPE Security ArcSight Connectors SmartConnector for Windows Event Log Unified: Microsoft Network Policy Server Supplemental Configuration Guide March 29, 2013 Supplemental Configuration Guide SmartConnector

More information

HP Business Service Management

HP Business Service Management HP Business Service Management Software Version: 9.26 Getting Started With BPM - Best Practices Document Release Date: September 2015 Software Release Date: September 2015 Legal Notices Warranty The only

More information

HP Service Test Management

HP Service Test Management HP Service Test Management for the Windows operating system Software Version: 11.00 Installation Guide Document Release Date: February 2011 Software Release Date: February 2011 Legal Notices Warranty The

More information

HP Operations Orchestration

HP Operations Orchestration HP Operations Orchestration Software Version: 10.20 Windows and Linux Operating Systems Shell Wizard Guide Document Release Date: November 2014 Software Release Date: November 2014 Legal Notices Warranty

More information

IDE Connector Customizer Readme

IDE Connector Customizer Readme IDE Connector Customizer Readme Software version: 1.0 Publication date: November 2010 This file provides information about IDE Connector Customizer 1.0. Prerequisites for IDE Connector Customizer The Installation

More information

HP Records Manager. Kofax Capture Template. Software Version: 8.1. Document Release Date: August 2014

HP Records Manager. Kofax Capture Template. Software Version: 8.1. Document Release Date: August 2014 HP Records Manager Software Version: 8.1 Kofax Capture Template Document Release Date: August 2014 Software Release Date: August 2014 Legal Notices Warranty The only warranties for HP products and services

More information

HP 3PAR OS MU3 Patch 17

HP 3PAR OS MU3 Patch 17 HP 3PAR OS 3.2.1 MU3 Patch 17 Release Notes This release notes document is for Patch 17 and intended for HP 3PAR Operating System Software. HP Part Number: QL226-98310 Published: July 2015 Edition: 1 Copyright

More information

HP UFT Connection Agent

HP UFT Connection Agent HP UFT Connection Agent Software Version: For UFT 12.53 User Guide Document Release Date: June 2016 Software Release Date: June 2016 Legal Notices Warranty The only warranties for Hewlett Packard Enterprise

More information

ALM. Tutorial. Software Version: Go to HELP CENTER ONLINE

ALM. Tutorial. Software Version: Go to HELP CENTER ONLINE ALM Software Version: 12.55 Tutorial Go to HELP CENTER ONLINE http://admhelp.microfocus.com/alm/ Document Release Date: August 2017 Software Release Date: August 2017 ALM Legal Notices Disclaimer Certain

More information

HP Universal CMDB. Software Version: Content Pack (CP18) Discovery and Integrations Content Guide - Discovery Activities

HP Universal CMDB. Software Version: Content Pack (CP18) Discovery and Integrations Content Guide - Discovery Activities HP Universal CMDB Software Version: Content Pack 18.00 (CP18) Discovery and Integrations Content Guide - Discovery Activities Document Release Date: December 2015 Software Release Date: December 2015 Legal

More information

Introducing HP Reporter. HP Reporter Window. How HP Reporter Works. Generated and Custom Reports. Customizing Reporter. Scalability and Requirements

Introducing HP Reporter. HP Reporter Window. How HP Reporter Works. Generated and Custom Reports. Customizing Reporter. Scalability and Requirements Introducing HP Reporter HP Reporter Window How HP Reporter Works Generated and Custom Reports Customizing Reporter Scalability and Requirements Configuring Secure Communication Advanced Topics Configuring

More information

Universal CMDB. Software Version: Content Pack (CP20) Discovery and Integrations Content Guide - Discovery Activities

Universal CMDB. Software Version: Content Pack (CP20) Discovery and Integrations Content Guide - Discovery Activities Universal CMDB Software Version: Content Pack 20.00 (CP20) Discovery and Integrations Content Guide - Discovery Activities Document Release Date: June 2016 Software Release Date: June 2016 Legal Notices

More information

HP Operations Orchestration

HP Operations Orchestration HP Operations Orchestration Software Version: 7.20 HP Network Node Manager (i series) Integration Document Release Date: July 2008 Software Release Date: July 2008 Legal Notices Warranty The only warranties

More information

HP SM Service Catalog-PPM Center Project Proposal Integration Solution

HP SM Service Catalog-PPM Center Project Proposal Integration Solution HP SM Service Catalog-PPM Center Project Proposal Integration Solution Software Version: 1.01 For the supported Windows operating system Configuration Guide Document Release Date: September 2015 Software

More information

HP Service Manager Integration Suite (SMIS)

HP Service Manager Integration Suite (SMIS) HP Service Manager Integration Suite (SMIS) Software Version: 9.40 For the supported Windows and Linux operating systems Developer Guide Document Release Date: December 2014 Software Release Date: December

More information

HP Operations Manager

HP Operations Manager HP Operations Manager Software Version: 9.22 UNIX and Linux operating systems Java GUI Operator s Guide Document Release Date: December 2016 Software Release Date: December 2016 Legal Notices Warranty

More information

HPE ALM Client MSI Generator

HPE ALM Client MSI Generator HPE ALM Client MSI Generator Software Version: 12.55 User Guide Document Release Date: August 2017 Software Release Date: August 2017 HPE ALM Client MSI Generator Legal Notices Warranty The only warranties

More information

HP Fortify Scanning Plugin for Xcode

HP Fortify Scanning Plugin for Xcode HP Fortify Scanning Plugin for Xcode Software Version: 4.40 User Guide Document Release Date: November 2015 Software Release Date: November 2015 Legal Notices Warranty The only warranties for HP products

More information

HPE Project and Portfolio Management Center

HPE Project and Portfolio Management Center HPE Project and Portfolio Management Center Software Version: 9.41 Getting Started Go to HELP CENTER ONLINE http://ppm-help.saas.hpe.com Document Release Date: March 2017 Software Release Date: March 2017

More information

Project and Portfolio Management Center

Project and Portfolio Management Center Project and Portfolio Management Center Software Version: 9.42 Program Management Configuration Guide Go to HELP CENTER ONLINE http://admhelp.microfocus.com/ppm/ Document Release Date: September 2017 Software

More information

Configuring Security Mitigation Settings for Security Bulletin HPSBPI03569 Protecting Solution Installation Settings

Configuring Security Mitigation Settings for Security Bulletin HPSBPI03569 Protecting Solution Installation Settings Technical White Paper Configuring Security Mitigation Settings for Security Bulletin HPSBPI03569 Protecting Solution Installation Settings Table of contents Overview... 2 Using the Embedded Web Server

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 7.51 HP Service Manager Integration Guide Document Release Date: August 2009 Software Release Date: August 2009 Legal Notices Warranty The only warranties

More information

HPE RDX Utility Version 2.36 Release Notes

HPE RDX Utility Version 2.36 Release Notes HPE RDX Utility Version 2.36 Release Notes (RDX Tools 1.59) Abstract RDX Utility 2.36 (RDX Tools 1.59) enhances RDX Utility reporting for cartridges with a capacity greater than 2TB and implements Hewlett

More information

Installation Guide. OMi Management Pack for Microsoft Skype for Business Server. Software Version: 1.00

Installation Guide. OMi Management Pack for Microsoft Skype for Business Server. Software Version: 1.00 OMi Management Pack for Microsoft Skype for Business Server Software Version: 1.00 For Operations Manager i for Linux and Windows operating systems Installation Guide Document Release Date: July 2017 Software

More information

MII - Crystal Reports Configuration Guide

MII - Crystal Reports Configuration Guide TABLE OF CONTENTS INTRODUCTION... 3 CONFIGURE SAP CRYSTAL REPORTS TO USE CR MII CONNECTOR... 4 CREATING CONNECTION TO MII SERVER FROM SAP CRYSTAL REPORTS DESIGNER... 5 CREATING REPORT FROM MII QUERY TEMPLATE...

More information

How to create a What If simulation in SAP Analytics Cloud

How to create a What If simulation in SAP Analytics Cloud How to create a What If simulation in SAP Analytics Cloud Author: Ingo Hilgefort, SAP Canada 1 1 Copyright 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may

More information

HPE ilo mobile app for ios

HPE ilo mobile app for ios HPE ilo mobile app for ios User Guide Abstract The HPE ilo mobile app provides access to the remote console, web interface, and scripting features of HPE ProLiant servers. Part Number: 689175-004 Published:

More information

HP Intelligent Management Center

HP Intelligent Management Center HP Intelligent Management Center Application Manager Administrator Guide Abstract This guide provides instructions for using IMC Application Manager. It includes information on prerequisites, service monitor

More information

Guidelines for using Internet Information Server with HP StorageWorks Storage Mirroring

Guidelines for using Internet Information Server with HP StorageWorks Storage Mirroring HP StorageWorks Guidelines for using Internet Information Server with HP StorageWorks Storage Mirroring Application Note doc-number Part number: T2558-96338 First edition: June 2009 Legal and notice information

More information

Business Intelligence Launch Pad User Guide SAP BusinessObjects Business Intelligence Platform 4.1 Support Package 1

Business Intelligence Launch Pad User Guide SAP BusinessObjects Business Intelligence Platform 4.1 Support Package 1 Business Intelligence Launch Pad User Guide SAP BusinessObjects Business Intelligence Platform 4.1 Support Package 1 Copyright 2013 SAP AG or an SAP affiliate company. All rights reserved. No part of this

More information

HP Data Protector Media Operations 6.11

HP Data Protector Media Operations 6.11 HP Data Protector Media Operations 6.11 Getting started This guide describes installing, starting and configuring Media Operations. Copyright 2009 Hewlett-Packard Development Company, L.P. Part number:

More information

Legal Notices. The information contained herein is subject to change without notice.

Legal Notices. The information contained herein is subject to change without notice. Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting

More information

HPE Enterprise Integration Module for SAP Solution Manager 7.1

HPE Enterprise Integration Module for SAP Solution Manager 7.1 HPE Enterprise Integration Module for SAP Solution Manager 7.1 Software Version: 12.55 User Guide Document Release Date: August 2017 Software Release Date: August 2017 HPE Enterprise Integration Module

More information

SAP BusinessObjects Live Office User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2

SAP BusinessObjects Live Office User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2 SAP BusinessObjects Live Office User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2 Copyright 2013 SAP AG or an SAP affiliate company. All rights reserved. No part of this

More information

MegaTrack. Quick Start Guide

MegaTrack. Quick Start Guide MegaTrack Quick Start Guide MegaTrack Quick Start Guide This document will help you quickly install and test the MegaTrack software. For additional information regarding the operation and configuration

More information

BC470. Form Printing with SAP Smart Forms COURSE OUTLINE. Course Version: 18 Course Duration:

BC470. Form Printing with SAP Smart Forms COURSE OUTLINE. Course Version: 18 Course Duration: BC470 Form Printing with SAP Smart Forms. COURSE OUTLINE Course Version: 18 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this

More information

External Devices. User Guide

External Devices. User Guide External Devices User Guide Copyright 2007 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. The only warranties for HP products and services

More information

IDOL Site Admin. Software Version: User Guide

IDOL Site Admin. Software Version: User Guide IDOL Site Admin Software Version: 11.5 User Guide Document Release Date: October 2017 Software Release Date: October 2017 Legal notices Warranty The only warranties for Hewlett Packard Enterprise Development

More information

HPE 3PAR OS MU3 Patch 24 Release Notes

HPE 3PAR OS MU3 Patch 24 Release Notes HPE 3PAR OS 3.1.3 MU3 Patch 24 Release Notes This release notes document is for Patch 24 and intended for HPE 3PAR Operating System Software + P19. Part Number: QL226-99298 Published: August 2016 Edition:

More information

External Devices User Guide

External Devices User Guide External Devices User Guide Copyright 2008 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. The only warranties for HP products and services

More information

Configuring Embedded LDAP Authentication

Configuring Embedded LDAP Authentication HP Restricted Configuring Embedded LDAP Authentication configure Configuring Embedded LDAP Authentication For HP product models: LaserJet 4345mfp, LaserJet 9040mfp, LaserJet 9050mfp, LaserJet 9500mfp,

More information

HP Device Manager 4.7

HP Device Manager 4.7 Technical white paper HP Device Manager 4.7 Configuring DHCP tags Table of contents Overview... 2 Configuring a DHCP server for use with PXE... 2 Configuring a DHCP server with the HPDM Server installed

More information

BMC Remedy Action Request System Using a BIRT Editor to Create or Modify Web Reports

BMC Remedy Action Request System Using a BIRT Editor to Create or Modify Web Reports White Paper BMC Remedy Action Request System 7.6.04 Using a BIRT Editor to Create or Modify Web Reports September 2012 www.bmc.com Contacting BMC Software You can access the BMC Software website at http://www.bmc.com.

More information

HPE 3PAR OS MU5 Patch 49 Release Notes

HPE 3PAR OS MU5 Patch 49 Release Notes HPE 3PAR OS 3.2.1 MU5 Patch 49 Release Notes This release notes document is for Patch 49 and intended for HPE 3PAR Operating System Software + P39. Part Number: QL226-99362a Published: October 2016 Edition:

More information

Widgets for SAP BusinessObjects Business Intelligence Platform User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2

Widgets for SAP BusinessObjects Business Intelligence Platform User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2 Widgets for SAP BusinessObjects Business Intelligence Platform User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2 Copyright 2013 SAP AG or an SAP affiliate company. All

More information

HPE 3PAR OS GA Patch 12

HPE 3PAR OS GA Patch 12 HPE 3PAR OS 3.3.1 GA Patch 12 Upgrade Instructions Abstract This upgrade instructions document is for installing Patch 12 on the HPE 3PAR Operating System Software OS-3.3.1.215-GA. This document is for

More information

Configuring LDAP Authentication for HPE OBR

Configuring LDAP Authentication for HPE OBR Technical White Paper Configuring LDAP Authentication for HPE OBR For the Windows and Linux Operation System Software Version 10.00 Table of Contents Introduction... 2 Supported Directory servers for LDAP...

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 7.51 HP Operations Manager Integration Guide Document Release Date: August 2009 Software Release Date: August 2009 Legal Notices Warranty The only

More information

HPE Project and Portfolio Management Center

HPE Project and Portfolio Management Center HPE Project and Portfolio Management Center Software Version: 9.41 Release Notes Go to HELP CENTER ONLINE http://ppm-help.saas.hpe.com Document Release Date: March 2017 Software Release Date: March 2017

More information

HP ALM. Software Version: Tutorial

HP ALM. Software Version: Tutorial HP ALM Software Version: 12.50 Tutorial Document Release Date: September 2015 Software Release Date: September 2015 Legal Notices Warranty The only warranties for HP products and services are set forth

More information

Using SAP SuccessFactors Integration Center for generating exports on Interview Central. SAP SuccessFactors Recruiting Management

Using SAP SuccessFactors Integration Center for generating exports on Interview Central. SAP SuccessFactors Recruiting Management Using SAP SuccessFactors Integration Center for generating exports on Interview Central SAP SuccessFactors Recruiting Management TABLE OF CONTENTS INTRODUCTION... 3 IMPORTING EXPORT DEFINITIONS INTO SAP

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 7.51 HP SiteScope Integration Guide Document Release Date: August 2009 Software Release Date: August 2009 Legal Notices Warranty The only warranties

More information

Disclosure Management. Default font on styles in Disclosure Management

Disclosure Management. Default font on styles in Disclosure Management Disclosure Management Default font on styles in Disclosure Management DISCLOSURE MANAGEMENT DEFAULT FONT IS STYLES (V1.1) TABLE OF CONTENT Introduction... 3 An example... 3 What happens in the system...

More information

HPE Intelligent Management Center

HPE Intelligent Management Center HPE Intelligent Management Center EAD Security Policy Administrator Guide Abstract This guide contains comprehensive information for network administrators, engineers, and operators working with the TAM

More information

Guest Management Software V2.0.2 Release Notes

Guest Management Software V2.0.2 Release Notes Guest Management Software V2.0.2 Release Notes Abstract These release notes provide important release-related information for GMS (Guest Management Software) Version 2.0.2. GMS V2.0.2 is MSM software version

More information

HP IDOL Site Admin. Software Version: Installation Guide

HP IDOL Site Admin. Software Version: Installation Guide HP IDOL Site Admin Software Version: 10.9 Installation Guide Document Release Date: March 2015 Software Release Date: March 2015 Legal Notices Warranty The only warranties for HP products and services

More information

OMi Management Pack for Microsoft SQL Server. Software Version: For the Operations Manager i for Linux and Windows operating systems.

OMi Management Pack for Microsoft SQL Server. Software Version: For the Operations Manager i for Linux and Windows operating systems. OMi Management Pack for Microsoft Software Version: 1.01 For the Operations Manager i for Linux and Windows operating systems User Guide Document Release Date: April 2017 Software Release Date: December

More information

BOCRC. SAP Crystal Reports Compact Course COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s)

BOCRC. SAP Crystal Reports Compact Course COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s) BOCRC SAP Crystal Reports Compact Course. COURSE OUTLINE Course Version: 15 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part

More information

HPE Security ArcSight Connectors

HPE Security ArcSight Connectors HPE Security ArcSight Connectors SmartConnector for Application Security AppDetective DB Configuration Guide October 17, 2017 SmartConnector for Application Security AppDetective DB October 17, 2017 Copyright

More information

HP Mobile Remote Control (Select Models Only) User Guide

HP Mobile Remote Control (Select Models Only) User Guide HP Mobile Remote Control (Select Models Only) User Guide Copyright 2008 Hewlett-Packard Development Company, L.P. Windows and Windows Vista are either trademarks or registered trademarks of Microsoft Corporation

More information

HPE Automatic Number Plate Recognition Software Version: Automatic Number Plate Recognition Release Notes

HPE Automatic Number Plate Recognition Software Version: Automatic Number Plate Recognition Release Notes HPE Automatic Number Plate Recognition Software Version: 14.5.0 Automatic Number Plate Recognition Release Notes Document Release Date: July 2016 Software Release Date: July 2016 Legal Notices Warranty

More information

SQL Server Installation and Configuration Guide. Abstract

SQL Server Installation and Configuration Guide. Abstract SQL Server 2008 Installation and Configuration Guide Abstract This document describes the configuration during and after database installation when IMC is used together with Microsoft SQL Server. The document

More information

HP Point of Sale (POS) Peripherals Configuration Guide Barcode Scanner

HP Point of Sale (POS) Peripherals Configuration Guide Barcode Scanner HP Point of Sale (POS) Peripherals Configuration Guide Barcode Scanner Document Version 2.10 July 2009 1 Copyright 2007-2009 Hewlett-Packard Development Company, L.P. The information contained herein is

More information

HPE StoreEver MSL6480 Tape Library CLI Utility Version 1.0 User Guide

HPE StoreEver MSL6480 Tape Library CLI Utility Version 1.0 User Guide HPE StoreEver MSL6480 Tape Library CLI Utility Version 1.0 User Guide Abstract This document explains how to install and use the HPE StoreEver MSL6480 Tape Library CLI utility, which provides a non-graphical

More information

Configure UD Connect on the J2EE Server for JDBC Access to External Databases

Configure UD Connect on the J2EE Server for JDBC Access to External Databases How-to Guide SAP NetWeaver 04 How to Configure UD Connect on the J2EE Server for JDBC Access to External Databases Version 1.05 Jan. 2004 Applicable Releases: SAP NetWeaver 04 (SAP BW3.5) Copyright 2004

More information

Using Xcelsius 2008 with SAP NetWeaver BW

Using Xcelsius 2008 with SAP NetWeaver BW Using Xcelsius 2008 with SAP NetWeaver BW Applies to: Xcelsius 2008 Enterprise Service Pack 02 (and higher) SAP NetWeaver BW 7.0 Enhancement package 01 Service Pack 05 (and higher) Summary In this short

More information