Tailoring the ServiceCenter Service Catalog

Size: px
Start display at page:

Download "Tailoring the ServiceCenter Service Catalog"

Transcription

1 Tailoring the ServiceCenter Service Catalog Best Practices for Adding, Modifying and Removing Service Catalog Connectors HP Management Software IT Service Management Introduction... 2 Prerequisites... 2 Creating a new Service Catalog Connector... 2 Modifying a connector... 5 Adding XML fields for moving data to the fulfillment record... 5 Moving data from a user selection to a field in the fulfillment record... 7 Modifying a form to see user selection fields... 9 Approvals Defining Approval Roles Delivery Objectives Removing a connector Appendix Variables used in Service Catalog For more information... 16

2 Introduction The ServiceCenter Service Catalog module was introduced with ServiceCenter 6.2. The Service Catalog interface, which is easy to use and set-up, can be used by end users via the Web and administered by Catalog administrators who have no ServiceCenter programming experience. The more advanced tailoring is done by the ServiceCenter administrator, and includes writing JavaScript and creating wizards that the Service Catalog administrator uses to create catalog categories and items. Prerequisites This document discusses the advanced tailoring that the ServiceCenter administrator performs to enable the Service Catalog administrator to create the Catalog of Services. Knowledge in JavaScript and tailoring with wizards is beneficial. Creating a new Service Catalog Connector The following section describes how to add a new connector for the Change Release Management category. Creating a new Service Catalog connector requires the following steps: Existing Service Catalog Connector Copy and Modify New Service Catalog Connector Enter Name in Connector Create Wizard that defines setup of Items using this connector Update Wizard to call the connector wizard 1. Log in as user falcon, and click Service Catalog -> Catalog Connectors. 2. Click Search. 3. As a best practice, it is easiest to create a new connector by basing it on an existing connector and copying it. To do so, click to select the record named Open a Change and change its name to Open a Release Management Change. 4. Click Add to add the record. 5. In the table at the bottom of the screen, remove the line with category since this is not necessary when the category is known. To do that, right-click any row of the table, click Expand Array, and click the category line. Then click the Delete Line button, close the window, and click confirm to remove the line. Check that the complete line has been removed. If not, repeat for each column of that line.

3 6. Click the Expressions tab, insert a line in the beginning, and enter: category in $L.file="Release Management" 7. Remove all lines with if $L.category=.. where the category is not Release Management. In the lines that are for Release Management, remove only the if ( ) then part. 8. Save the changes to this record.

4 Next, you set up the wizards for creating items using this connector. 9. Create a wizard called svccat RM Change - Get RM Info 1 as a copy of the wizard svccat Generic Change - Get Generic Info Change Description to: Edit Service Catalog RM Change Information - Setup RM. 11. On the File Selection -> Initial Expressions tab enter: $ approvalvalue="" $priorityvalue="" $type="" $category="release Management" $initial.impact="" $severity="" 12. Click the Next Wizard tab and enter svccat Generic Change - Get Release Mgmt Info 1 and a condition of true. 13. Click Save. 14. Click Service Catalog -> Catalog Connectors and click to select the record Open a Release Management Change. 15. Change the wizard name from svccat Generic Change - Get Generic Info 1 to svccat RM Change - Get RM Info Click Save to save the connector record. Once the connector has been created, it needs to be activated. This means that the connector that has been created needs to be incorporated with the wizard responsible for guiding the Catalog administrator through creating a new item. The previously generated wizard is responsible for ensuring that all required information is passed through to the new item. To get all this information, the wizard that guides the Catalog administrator through creating the new item needs to call the newly created wizard. 17. Go to Database Manager and enter the table name wizard. 18. Search for the record named svccat New Item On the Next Wizard tab, you will find: interface.type in $L.file="Open a Service Desk Interaction" or interface.type in $L.file="Open a Change" or interface.type in $L.file="Open MAC Ticket" or interface.type in $L.file="Open New Request" or interface.type in $L.file="Open a Record Using Web Services 20. Add or interface.type in $L.file= Open a Release Management Change to the end of the condition. 21. Click Save to save the wizard and click OK to exit. 22. Search for the record named svccat New Bundle Item Click the Next Wizard tab; you will find: interface.type in $L.file="Open a Service Desk Interaction" or interface.type in $L.file="Open a Change" or interface.type in $L.file="Open MAC Ticket" or interface.type in $L.file="Open New Request" or interface.type in $L.file="Open a Record Using Web Services 24. Add or interface.type in $L.file= Open a Release Management Change to the end of the condition. 25. Click Save to save the wizard and click OK to exit. 26. Select the wizard record svccat New Item 3.

5 27. Click the Next Wizard tab and add the following lines before the last line: Wizard Name: svccat RM Change - Get RM Info 1 Condition: interface.type in $L.file="Open a Release Management Change" and false Note: Make sure to keep the line that contains the true condition at the end. 28. Save your changes. Next you verify that these changes worked by creating a new catalog item for the Release Management backend 29. Go to Service Catalog -> Manage Catalog. 30. Click Add new Catalog Item. 31. Choose the Connector named Open a Release Management Change. 32. Choose the Category Software. 33. Click Next. 34. Enter the required fields. 35. Click Finish. 36. Check the result in the new item, on the Connector tab, by clicking on add/edit connector. Modifying a connector Next you add several fields to the connector that will be copied to the fulfillment record in Change Management. Adding XML fields for moving data to the fulfillment record First add an array field that the Catalog Manager will fill in when creating the catalog item. 1. Click Service Catalog -> Catalog Connectors. 2. Select the Connector Open a Release Management Change. 3. In the table at the bottom of the connector enter description at the end of the list of XML fields 4. Initialize the information for the new field by entering the following in the Expressions tab: description in $L.file=jscall("svcCatInterface.getXMLValuesFromObject", interface.info in $L.item, descriptionline", description") 5. Click Save to save the record. 6. Go to Forms Designer and select the form svccat.wizard.get.releasemgt.info Add a text field with array length of 6 and an input of $wiz.assets. 8. Add a multi-line text field with an input of $description

6 9. Click OK twice to save your changes and exit from Forms Designer. 10. Go to the Database Manager table named wizard. 11. Select the record svccat RM Change - Get RM Info Add $wiz.assets={} and $description={} to the File Selection -> Initialization Expressions. 13. Click Save to save the record and click OK to exit. 14. Next select the wizard svccat Generic Change - Write Info. 15. Click the Actions > Expressions tab and change the following line from: interface.info in $L.file=jscall("svcCatInterface.writeChange", $wiz.assets, $type, $initial.impact, $severity, $reasonvalue, $coordinatorvalue, $category, $subcategory, $assign.dept, $rel.type) To (note the additional comma and field name appended in bold text) interface.info in $L.file=jscall("svcCatInterface.writeChange", $wiz.assets, $type, $initial.impact, $severity, $reasonvalue, $coordinatorvalue, $category, $subcategory, $assign.dept, $rel.type, $description) 16. Add cleanup($description) to the last line of expressions. 17. Click Save to save and OK to exit. 18. In Database Manager go to table name ScriptLibrary. Select the record named svccatinterface. Once there, search for the function writechange. 19. Add the following bold text in the JavaScript, unless it already exists: if (strcategory == "RFC - Advanced" strcategory == "RFC" strcategory=="release Management") { var assetselement = xml.addelement( "assets" ); if ( assets.length() > 0 ) assets = system.functions.denull( assets ); var i = 0; while (i < assets.length()) { (assetselement.addelement("logical.name")).setvalue(assets[i]); i++; } } if (strcategory=="release Management") { var descelement = xml.addelement( description" ); if ( description.length() > 0 ) description = system.functions.denull( description ); var i = 0; while (i < description.length()) { (descelement.addelement( descriptionline")).setvalue(description[i]); i++; }

7 } 20. In the same svccatinterface JavaScript record search for the function setchangeinfo and add coding for description: var aassets = getxmlvaluesfromobject(xmlstring, "logical.name", "assets"); var adescription = getxmlvaluesfromobject(xmlstring, descriptionline", description"); if (aassets!= null) { vars.$wiz_assets = aassets; } if (adescription!= null) { vars.$description = adescription; } 21. Click Save and OK to save and exit. Next move an existing field from the ServiceDesk record to the fulfillment record 22. Click Service Catalog -> Catalog Connectors. 23. Select the record named Open a Release Management Change. 24. Click the link used in the connector (screlate.incident.cm3r) and click Find. 25. In the link, place your cursor in the first line and click Options -> Select line. 26. At the end of the table that defines the source and target fields, add Source Field: owner.name Target Field: assigned.to 27. Click Save to save and OK (twice) to exit. Moving data from a user selection to a field in the fulfillment record Each Service Catalog category has a defined off-catalog request item. These off-catalog request items are used to enter any request that does not have a specific catalog item defined, and where all information about the request will be entered in free-form text. The information about the request is entered into user-defined fields that are stored in an XML field in the fulfillment record. If the administrator wants to move this information from the XML field into the specific fields in the fulfillment record (in this case, A Request Management Quote) such as the description, he or she can use the xmlfill.getvalue JavaScript call as in the following steps: 1. Go to Service Catalog -> Catalog Connectors. 2. Select the record with the name of Open New Request. 3. Click the Expressions tab and enter an expression in the following format at the end: <your.field> in $L.file=jscall("xmlFill.getValue", svc.options in $L.file, <user selection field> ) For example: description in $L.file=jscall("xmlFill.getValue", svc.options in $L.file, "description") With this change, the information entered in the description field on the off-catalog request will now be entered into the request quote s description. For this to work, the description XML field must be listed in the connectors Connector Detail tab.

8 The same way, to move data from a user defined field in the example used when creating a new connector, you can follow these steps: 1. Click Service Catalog -> Catalog Connectors. 2. Click to select the record named Open a Release Management Change 3. Click the Expressions tab and enter an expression in the following format at the end: <your.field> in $L.file=jscall("xmlFill.getValue", svc.options in $L.file, <user selection field> ) For example: backout.method in $L.file=jscall("xmlFill.getValue", svc.options in $L.file, "Backout") Then add the user selection named Backout : 4. Click Service Catalog -> Manage Catalog. 5. Click Add New Catalog Item. Item Name: Operating System Release Description: Operating System Release 6. Click Next > to continue. Connector: Open a Release Management Change In Category Software 7. Click Next > to continue. 8. Fill in the required fields as shown below: 9. Click Finish to create the item. 10. In the newly created item, click the User Selections tab. 11. Click Add User Selection. 12. Enter the following information: Name: Backout Label: Backout Select Multitext 13. Click Next > to continue.

9 14. Click Save to save and OK to exit. A request for this item looks like the following: To test all these modifications, you can order the Operating System Release Catalog item from the Software category. After approval you should see the backout.method assigned to, and the description fields already filled into, the Release Management record (cm3r). Modifying a form to see user selection fields For example, the ocmq.view.summary.g form has the dynamic user options field defined: A new forms designer object called dynamic form can display the XML field called svc.options that exists in the ocmq, cm3r, and incidents dbdicts. The svc.options field is defined in the dbdicts as a character field, but holds XML data of various lengths. Depending on how many user selection fields will be available when ordering an item or requesting a service, it is a best practice to display the data on the first tab of the form, as shown in the example above; or to give the description and user-defined fields their own tab. In our example, we show how to add a new tab and move the user options field onto that new tab. We continue to use the Release Management change process as the example:

10 1. Go to Forms Designer 2. Select the form cm3r.release. 3. Go into Design Mode. 4. Drag and drop a new notebook tab between the General tab and the Review Release tab. Name it User Options and give it a visible condition of [svc.options]<>. 5. Drag and Drop a dynamic form widget into the new notebook 6. Enter svc.options for the input of the new dynamic form. 7. Click OK to save and exit design mode. 8. Click OK to save and exit Forms Designer. In previous steps, the backout user option field was added. When adding another text field (test) to the user options of the item, the release management change then looks like the following: Approvals Catalog Approval Order and Flow Approval Workflow Customer Request Order From Catalog Add Cart Items Populate The Request Submit The Request Business Approvals Calculated Approval Record Created And Associated To The Interaction Related records added to interaction based on connector definition Interaction updated with status changes of related record Catalog Approval Define Approval Activity Add/Edit An Approval Activity Add Roles/ Operators Add Conditions Add Conditions Service Catalog Approver to perform first level approval OOB Wizard Module Approval Create A Name For The Approval Definition (Given Name) Add Roles/ Operators Add Conditions Define the approval in the phase record (ChM, RM) Module Level approver to perform second level approval OOB Wizard The diagram above shows the different levels of approvals on a timeline that is based on the customer request. The Approval definitions, though shown here, are done independently on the individual customer request during implementation of the Service Catalog system and its fulfillment engines (such as Change Management or Request Management). The catalog approval will be done in the ServiceDesk interaction record created by the Service Catalog request. After the interaction is approved, the related record in the fulfillment backend (such as ChM or RM) is created, again with its approvals already defined. After the fulfillment record is

11 approved, the interaction is updated with that information, as it is with every change to the approval status or phase in which the backend fulfillment record resides. Defining Approval Roles Approval Roles can be defined in Service Catalog -> Approval Roles. The screen contains the following information: The Approver role can be a named Approver based on the login id in the operator file, or it can be defined via RAD type expressions or JavaScript. The sample above defines the first level manager as the Approver via JavaScript defined in the requesting users contact record. The Approver s operator login id must be written to the variable $L.approval.role.user.

12 Delivery Objectives Service Level Agreement Record Response SLO provides the cart item response status values Delivery Objectives based on SLA Catalog Service Item Cart Item Delivery Objective provides the duration for the SLO SLO Response record for the Cart Item Delivery Objectives are associated to a certain catalog item. Customers who have access to the delivery objectives based on their SLAs can choose the delivery objective that best matches their requirements if a certain delivery time is needed. Delivery Objectives are defined in ServiceCatalog > Define Delivery Objectives. The definition contains the name of the objective, the time allowed for delivery, and the calendar on which the time is based. Access to the delivery objective is based on the user s SLA. In the SLA definitions, a Service Level Objective (SLO) for the ServiceCatalog area must be defined.

13 In this SLO, the initial and final state must be set based on the status defined in the Service Catalog Status mapping. To verify the correct name for this status, go through the approvals on the interaction record; proceed to the correct phases and status in the fulfillment record to get the correct wording in the related interaction record; and enter the information in the SLO record accordingly. The duration of the SLO is defined by the duration field in the interaction record, which is filled automatically by the data in the service delivery objective that was selected.

14 Removing a connector To remove a previously added connector, the wizards that are responsible for creating catalog items that will use the connector will have to be removed or modified; the called Java Script may have to be modified; and the connector record must be removed. To remove the wizards: 1. Go to Service Catalog > Catalog Connectors and select the record that should be removed. Note the name of the wizard, as shown below: 2. Click the Find button 3. Check the Next Wizard tab, on which other wizards were created for the connector. 4. Delete all wizards that are used only for this connector. 5. If a special link record used only for this connector was created, remove that link record. Do the same with the Process record. (Usually, however, these records are shared between multiple connectors and applications.) 6. Go to Database Manager, select the table wizard, and select the record svccat New Item 2. On the next wizard tab, you will find something like: interface.type in $L.file="Open a Service Desk Interaction" or interface.type in $L.file="Open a Change" or interface.type in $L.file="Open MAC Ticket" or interface.type in $L.file="Open New Request" or interface.type in $L.file="Open a Record Using Web Services. Remove the or interface.type in $L.file= <Name of the connector you want to remove> part of the condition.

15 7. While still in Database Manager, select the table wizard, select the record svccat New Item 3. On the next wizard tab, you will find something like: Wizard Name: <wizard name deleted above> Condition: interface.type in $L.file="<Name of the connector you want to remove>" and false 8. Remove the complete line listed above from the next wizard tab. 9. Optional step: Click the Expressions tab of the connector, check for calls to JavaScript (jscall function), and remove all lines in the JavaScript that are used only from this connector. 10. Delete the connector record itself. Appendix Variables used in Service Catalog Variables commonly used in connector expressions Variable Name Content Explanation $L.item svccatalog file Contains information on the catalog item. Specifically, interface.info in $L.item refers to the values that are set on creation of the catalog item based on requirements defined in the connector. (For example, fill in urgency and impact for cm3r requests.) $L.cartItem svccartitem file Contains information of the individual order in the users cart $L.file fulfillment record Contains information of the fulfillment record (change, service desk interaction etc.) $xml (variable used in wizard) interface.info in the svccatalog file see explanation to $L.item

16 For more information Please visit the HP Software support Web site at: This Web site provides contact information and details about the products, services, and support that HP Software offers. HP Software online software support provides customer self-solve capabilities. It provides a fast and efficient way to access interactive technical support tools needed to manage your business. As a valued customer, you can benefit by being able to: Search for knowledge documents of interest Submit and track progress on support cases Submit enhancement requests online Download software patches Manage a support contract Look up HP support contacts Review information about available services Enter discussions with other software customers Research and register for software training Note: Most of the support areas require that you register as an HP Passport user and sign in. Many also require an active support contract. To find more information about support access levels, go to the following URL: To register for an HP Passport ID, go to the following URL: 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 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. HP and ServiceCenter are registered trademarks of Hewlett-Packard Development Company, L.P. JavaScript is a trademark or registered trademark of Sun Microsystems, Inc. in the United States and other countries 03/2007

Best Practices for Multi-Tenant Environments

Best Practices for Multi-Tenant Environments Best Practices for Multi-Tenant Environments How to Configure Service Manager 7 for Multi-Tenant Implementations. HP Software Service Management Introduction... 2 Techniques used in Multi-Tenant implementations...

More information

HP Quality Center. Software Version: 10.00. Microsoft Word Add-in Guide

HP Quality Center. Software Version: 10.00. Microsoft Word Add-in Guide HP Quality Center Software Version: 10.00 Microsoft Word Add-in Guide Document Release Date: February 2012 Software Release Date: January 2009 Legal Notices Warranty The only warranties for HP products

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Application Setup help topics for printing Document Release Date: December 2014 Software Release Date: December

More information

HP Application Lifecycle Management

HP Application Lifecycle Management HP Application Lifecycle Management Software Version: 11.00 Microsoft Word Add-in Guide Document Release Date: November 2010 Software Release Date: October 2010 Legal Notices Warranty The only warranties

More information

How Service Manager 7 Licensing works

How Service Manager 7 Licensing works How Service Manager 7 Licensing works HP Management Software Service Management Software Introduction to Service Manager Licensing...2 The Licensing Facts...3 The Named license...3 The Floating license...3

More information

HP Service Manager. Software Version: 9.34 For the supported Windows and UNIX operating systems. Service Desk help topics for printing

HP Service Manager. Software Version: 9.34 For the supported Windows and UNIX operating systems. Service Desk help topics for printing HP Service Manager Software Version: 9.34 For the supported Windows and UNIX operating systems Service Desk help topics for printing Document Release Date: July 2014 Software Release Date: July 2014 Legal

More information

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

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Request Management help topics for printing HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Request Management help topics for printing Document Release Date: December 2014 Software Release Date: December

More information

HP Service Manager. Service Desk help topics for printing. For the supported Windows and UNIX operating systems. Software Version: 9.

HP Service Manager. Service Desk help topics for printing. For the supported Windows and UNIX operating systems. Software Version: 9. HP Service Manager For the supported Windows and UNIX operating systems Software Version: 9.32 Service Desk help topics for printing Document Release Date: August 2013 Software Release Date: August 2013

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Service Desk help topics for printing

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Service Desk help topics for printing HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Service Desk help topics for printing Document Release Date: December 2014 Software Release Date: December

More information

HP Service Manager. Software Version: 9.34 For the supported Windows and UNIX operating systems. Incident Management help topics for printing

HP Service Manager. Software Version: 9.34 For the supported Windows and UNIX operating systems. Incident Management help topics for printing HP Service Manager Software Version: 9.34 For the supported Windows and UNIX operating systems Incident Management help topics for printing Document Release Date: July 2014 Software Release Date: July

More information

HP Service Manager. Service catalog help topics for printing. For the supported Windows and UNIX operating systems Software Version: 9.

HP Service Manager. Service catalog help topics for printing. For the supported Windows and UNIX operating systems Software Version: 9. HP Service Manager For the supported Windows and UNIX operating systems Software Version: 9.31 Service catalog help topics for printing Document Release Date: October 2012 Software Release Date: October

More information

Customizing Asset Manager for Managed Services Providers (MSP) Software Asset Management

Customizing Asset Manager for Managed Services Providers (MSP) Software Asset Management HP Asset Manager Customizing Asset Manager for Managed Services Providers (MSP) Software Asset Management How To Manage Generic Software Counters and Multiple Companies Legal Notices... 2 Introduction...

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Processes and Best Practices Guide (Codeless Mode)

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Processes and Best Practices Guide (Codeless Mode) HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Processes and Best Practices Guide (Codeless Mode) Document Release Date: December, 2014 Software Release

More information

Web Integration between AssetCenter 5.0 and ServiceCenter 6.2 Using Single Sign-on

Web Integration between AssetCenter 5.0 and ServiceCenter 6.2 Using Single Sign-on Web Integration between AssetCenter 5.0 and ServiceCenter 6.2 Using Single Sign-on How to Customize AssetCenter and ServiceCenter to Share Configuration Item (CI) Information HP OpenView IT Asset Management

More information

HP Enterprise Integration module for SAP applications

HP Enterprise Integration module for SAP applications HP Enterprise Integration module for SAP applications Software Version: 2.50 User Guide Document Release Date: May 2009 Software Release Date: May 2009 Legal Notices Warranty The only warranties for HP

More information

Managing Scalability of Web services

Managing Scalability of Web services HP Asset Manager Managing Scalability of Web services Legal Notices... 2 Introduction... 3 Objective of this document... 3 Prerequisites... 3 General Approach... 4 Context... 4 Process... 4 Comments...

More information

HP Quality Center. Software Version: 10.00. Microsoft Excel Add-in Guide

HP Quality Center. Software Version: 10.00. Microsoft Excel Add-in Guide HP Quality Center Software Version: 10.00 Microsoft Excel Add-in Guide Document Release Date: February 2012 Software Release Date: January 2009 Legal Notices Warranty The only warranties for HP products

More information

HP Quality Center. Software Version: 9.20. Microsoft Excel Add-in Guide

HP Quality Center. Software Version: 9.20. Microsoft Excel Add-in Guide HP Quality Center Software Version: 9.20 Microsoft Excel Add-in Guide Document Release Date: September 2008 Software Release Date: January 2008 Legal Notices Warranty The only warranties for HP products

More information

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

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Problem Management help topics for printing HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Problem Management help topics for printing Document Release Date: December 2014 Software Release Date: December

More information

HP ALM. Software Version: 12.50. Tutorial

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

More information

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

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Collaboration Guide HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Collaboration Guide Document Release Date: December 2014 Software Release Date: December 2014 Legal Notices

More information

HP OpenView Internet Services. SNMP Integration with HP Operations Manager for Windows White Paper

HP OpenView Internet Services. SNMP Integration with HP Operations Manager for Windows White Paper HP OpenView Internet Services SNMP Integration with HP Operations Manager for Windows White Paper Version: 1.00 Overview... 2 Prerequisites... 2 For HPOM Management Server... 2 For OVIS... 2 Configuration...

More information

HP Asset Manager. Implementing Single Sign On for Asset Manager Web 5.x. Legal Notices... 2. Introduction... 3. Using AM 5.20... 3

HP Asset Manager. Implementing Single Sign On for Asset Manager Web 5.x. Legal Notices... 2. Introduction... 3. Using AM 5.20... 3 HP Asset Manager Implementing Single Sign On for Asset Manager Web 5.x Legal Notices... 2 Introduction... 3 Using AM 5.20... 3 Using AM 5.12... 3 Design Blueprint... 3 Technical Design... 3 Requirements,

More information

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

HP Service Manager. Collaboration Guide. For the Supported Windows and UNIX operating systems. Software Version: 9.31 HP Service Manager For the Supported Windows and UNIX operating systems Software Version: 9.31 Collaboration Guide Document Release Date: October 2012 Software Release Date: October 2012 Legal Notices

More information

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

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

More information

HP OpenView AssetCenter

HP OpenView AssetCenter HP OpenView AssetCenter Software version: 5.0 Integration with software distribution tools Build number: 50 Legal Notices Warranty The only warranties for HP products and services are set forth in the

More information

HP Business Process Monitor

HP Business Process Monitor HP Business Process Monitor For the Windows operating system Software Version: 9.23 BPM Monitoring Solutions Best Practices Document Release Date: December 2013 Software Release Date: December 2013 Legal

More information

Bluetooth Pairing. User Guide

Bluetooth Pairing. User Guide Bluetooth Pairing User Guide Copyright 2012 Hewlett-Packard Development Company, L.P. Microsoft, Windows, and Windows Vista are U.S. registered trademarks of Microsoft Corporation. Bluetooth is a trademark

More information

HP Quality Center. Software Version: 9.20. Version Control Add-in Guide

HP Quality Center. Software Version: 9.20. Version Control Add-in Guide HP Quality Center Software Version: 9.20 Version Control Add-in Guide Document Number: QCGENVC9.2/01 Document Release Date: May 2007 Software Release Date: May 2007 Legal Notices Warranty The only warranties

More information

Synchronizing ProCurve IDM and Windows Active Directory

Synchronizing ProCurve IDM and Windows Active Directory An HP ProCurve Networking Application Note Synchronizing ProCurve IDM and Windows Active Directory Contents 1. Introduction... 2 2. Prerequisites... 2 3. Network and Active Directory tree diagrams... 2

More information

How to Configure Web Authentication on a ProCurve Switch

How to Configure Web Authentication on a ProCurve Switch An HP ProCurve Networking Application Note How to Configure Web Authentication on a ProCurve Switch Contents 1. Introduction... 2 2. Prerequisites... 2 3. Network diagram... 2 4. Configuring the ProCurve

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Business Availability Center Integration Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty The only

More information

HP Business Service Management

HP Business Service Management HP Business Service Management For the Windows and Linux operating systems Software Version: 9.23 High Availability Fine Tuning - Best Practices Document Release Date: December 2013 Software Release Date:

More information

HP Project and Portfolio Management Center

HP Project and Portfolio Management Center HP Project and Portfolio Management Center Software Version: 9.20 RESTful Web Services Guide Document Release Date: February 2013 Software Release Date: February 2013 Legal Notices Warranty The only warranties

More information

HP Business Service Management

HP Business Service Management HP Business Service Management Software Version: 9.26 Windows operating system RUM for Citrix - Best Practices Document Release Date: September 2015 Software Release Date: September 2015 RUM for Citrix

More information

HP ALM Best Practices Series

HP ALM Best Practices Series HP ALM Best Practices Series For ALM Practitioners Business Process Models Best Practices Document Release Date: June 2015 Legal Notices Warranty The only warranties for HP products and services are set

More information

HP Business Service Management

HP Business Service Management HP Business Service Management Software Version: 9.25 BPM Monitoring Solutions - Best Practices Document Release Date: January 2015 Software Release Date: January 2015 Legal Notices Warranty The only warranties

More information

HP Application Lifecycle Management

HP Application Lifecycle Management HP Application Lifecycle Management Software Version: 11.00 Microsoft Excel Add-in Guide Document Release Date: February 2011 Software Release Date: October 2010 Legal Notices Warranty The only warranties

More information

HP Quality Center. Upgrade Preparation Guide

HP Quality Center. Upgrade Preparation Guide HP Quality Center Upgrade Preparation Guide Document Release Date: November 2008 Software Release Date: November 2008 Legal Notices Warranty The only warranties for HP products and services are set forth

More information

HP AppPulse Active. Software Version: 2.2. Real Device Monitoring For AppPulse Active

HP AppPulse Active. Software Version: 2.2. Real Device Monitoring For AppPulse Active HP AppPulse Active Software Version: 2.2 For AppPulse Active Document Release Date: February 2015 Software Release Date: November 2014 Legal Notices Warranty The only warranties for HP products and services

More information

How to configure 802.1X authentication with a Windows XP or Vista supplicant

How to configure 802.1X authentication with a Windows XP or Vista supplicant An HP ProCurve Networking Application Note How to configure 802.1X authentication with a Windows XP or Vista supplicant Contents 1. Introduction... 2 2. Prerequisites... 2 3. Network diagram... 2 4. Configuring

More information

HP Access Control Express Installation Guide

HP Access Control Express Installation Guide HP Access Control Express Installation Guide 1 HP Access Control Express Installation Guide Reference number: 20111005 Edition: November 2011 2 Legal notices (c) Copyright 2011 Hewlett-Packard Development

More information

Company Setup 401k Tab

Company Setup 401k Tab Reference Sheet Company Setup 401k Tab Use this page to define company level 401(k) information, including employee status codes, 401(k) sources, and 401(k) funds. The definitions you create here become

More information

How to use Data Protector 6.0 or 6.10 with Exchange Recovery Storage Groups to restore a single mailbox

How to use Data Protector 6.0 or 6.10 with Exchange Recovery Storage Groups to restore a single mailbox How to use Data Protector 6.0 or 6.10 with Exchange Recovery Storage Groups to restore a single mailbox Introduction... 3 Exchange 2003... 4 Creating a Recovery Storage Group... 4 Restoring the Information

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Installation Manuals Installation and Setup Guide Health Check Legal Notices Warranty The only warranties for HP products and services are set forth in the express

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Project and Portfolio Management Integration Guide Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty

More information

HP Service Manager. Software Version: 9.34 For the supported Windows and UNIX operating systems. Processes and Best Practices Guide

HP Service Manager. Software Version: 9.34 For the supported Windows and UNIX operating systems. Processes and Best Practices Guide HP Service Manager Software Version: 9.34 For the supported Windows and UNIX operating systems Processes and Best Practices Guide Document Release Date: July 2014 Software Release Date: July 2014 Legal

More information

Upgrade: SAP Mobile Platform Server for Windows SAP Mobile Platform 3.0 SP02

Upgrade: SAP Mobile Platform Server for Windows SAP Mobile Platform 3.0 SP02 Upgrade: SAP Mobile Platform Server for Windows SAP Mobile Platform 3.0 SP02 Windows DOCUMENT ID: DC80003-01-0302-01 LAST REVISED: February 2014 Copyright 2014 by SAP AG or an SAP affiliate company. All

More information

Self Service Ticketing in ServiceCenter 6.1

Self Service Ticketing in ServiceCenter 6.1 Self Service Ticketing in ServiceCenter 6.1 Best Practices for Implementing the ServiceCenter 6.1 Self Service Ticketing (SST) System HP OpenView IT Service Management Introduction...2 Purpose...2 Best

More information

HP OpenView Smart Plug-in for Microsoft Exchange Server

HP OpenView Smart Plug-in for Microsoft Exchange Server HP OpenView Smart Plug-in for Microsoft Exchange Server For the UNIX Operating System Release Notes Software version: 10.00 / November 2006 This document provides an overview of the changes made to HP

More information

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

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Incident Management help topics for printing HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Incident Management help topics for printing Document Release Date: December 2014 Software Release Date:

More information

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

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Configuration Management help topics for printing HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Configuration Management help topics for printing Document Release Date: December 2014 Software Release Date:

More information

HP Change Configuration and Release Management (CCRM) Solution

HP Change Configuration and Release Management (CCRM) Solution HP Change Configuration and Release Management (CCRM) Solution HP Service Manager, HP Release Control, and HP Universal CMDB For the Windows Operating System Software Version: 9.30 Concept Guide Document

More information

Extend the SAP FIORI app HCM Timesheet Approval

Extend the SAP FIORI app HCM Timesheet Approval SAP Web Integrated Development Environment How-To Guide Provided by Customer Experience Group Extend the SAP FIORI app HCM Timesheet Approval Applicable Releases: SAP Web Integrated Development Environment

More information

HP Device Manager 4.6

HP Device Manager 4.6 Technical white paper HP Device Manager 4.6 Disaster Recovery Guide Table of contents Overview... 2 General recovery process... 2 Recovering the HPDM Server... 5 Backing up the data... 5 Installing the

More information

HP Asset Manager. Software version: 5.20. Integration with software distribution and configuration management tools

HP Asset Manager. Software version: 5.20. Integration with software distribution and configuration management tools HP Asset Manager Software version: 5.20 Integration with software distribution and configuration management tools Document Release Date: 01 October 2009 Software Release Date: October 2009 Legal Notices

More information

Event Manager. LANDesk Service Desk

Event Manager. LANDesk Service Desk Event Manager LANDesk Service Desk LANDESK SERVICE DESK EVENT MANAGER GUIDE This document contains information that is the proprietary and confidential property of LANDesk Software, Inc. and/or its affiliated

More information

HP Business Service Management

HP Business Service Management HP Business Service Management For the Windows and Linux operating systems Software Version: 9.23 HP NNMi - HP BSM Topology Integration Best Practices Document Release Date: December 2013 Software Release

More information

HP Records Manager. Release Notes. Software Version: 8.1. Document Release Date: June 2014

HP Records Manager. Release Notes. Software Version: 8.1. Document Release Date: June 2014 HP Records Manager Software Version: 8.1 Release Notes Document Release Date: June 2014 Software Release Date: June 2014 Legal Notices Warranty The only warranties for HP products and services are set

More information

HP Cloud Service Automation

HP Cloud Service Automation Technical white paper HP Cloud Service Automation Integration with HP Service Manager Table of contents Introduction 2 Required software components 2 Configuration requirements 2 Downloading the distribution

More information

FTP Server Configuration

FTP Server Configuration FTP Server Configuration For HP customers who need to configure an IIS or FileZilla FTP server before using HP Device Manager Technical white paper 2 Copyright 2012 Hewlett-Packard Development Company,

More information

Bluetooth for Windows

Bluetooth for Windows Bluetooth for Windows Getting Started Copyright 2006 Hewlett-Packard Development Company, L.P. Microsoft and Windows are U.S. registered trademarks of Microsoft Corporation. Bluetooth is a trademark owned

More information

Using HP Systems Insight Manager to achieve high availability for Microsoft Team Foundation Server

Using HP Systems Insight Manager to achieve high availability for Microsoft Team Foundation Server Using HP Systems Insight Manager to achieve high availability for Microsoft Team Foundation Server Executive summary... 2 Audience... 2 Architecture... 3 Prerequisite... 4 Deploying AT servers... 5 Configuring

More information

Intel Rapid Start Technology (FFS) Guide

Intel Rapid Start Technology (FFS) Guide Intel Rapid Start Technology (FFS) Guide Technical white paper Table of contents Intel Rapid Start Technology (FFS) Guide... 2 Product Definition... 2 Requirements... 2 Enabling Intel Rapid Start Technology...

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 Use Cases for Integrations with HP Applications Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty The

More information

HP Business Availability Center

HP Business Availability Center HP Business Availability Center for the Windows and Solaris operating systems Software Version: 8.05 Business Process Monitor Administration Document Release Date:September 2010 Software Release Date:

More information

Stone Edge Integration Guide

Stone Edge Integration Guide Stone Edge Integration Guide Revised May 25, 2007 Modular Merchant: Terms of Service Modular Merchant Developed by Stepping Stone Media, LLC 30 East Broadway STE 210 Eugene, OR 97401 www.modularmerchant.com

More information

HP Server Automation Enterprise Edition

HP Server Automation Enterprise Edition HP Server Automation Enterprise Edition Software Version: 10.0 User Guide: Server Patching Document Release Date: June 13, 2013 Software Release Date: June 2013 Legal Notices Warranty The only warranties

More information

HP INTEGRATED ARCHIVE PLATFORM

HP INTEGRATED ARCHIVE PLATFORM You can read the recommendations in the user guide, the technical guide or the installation guide for HP INTEGRATED ARCHIVE PLATFORM. You'll find the answers to all your questions on the HP INTEGRATED

More information

Ingenious Testcraft Technical Documentation Installation Guide

Ingenious Testcraft Technical Documentation Installation Guide Ingenious Testcraft Technical Documentation Installation Guide V7.00R1 Q2.11 Trademarks Ingenious, Ingenious Group, and Testcraft are trademarks of Ingenious Group, Inc. and may be registered in the United

More information

Deploying and updating VMware vsphere 5.0 on HP ProLiant Servers

Deploying and updating VMware vsphere 5.0 on HP ProLiant Servers Deploying and updating VMware vsphere 5.0 on HP ProLiant Servers Integration Note Introduction... 2 Deployment... 2 ESXi 5.0 deployment location options... 2 ESXi 5.0 image options... 2 VMware ESXi Image

More information

HP LaserJet MFP Analog Fax Accessory 300 Send Fax Driver Guide

HP LaserJet MFP Analog Fax Accessory 300 Send Fax Driver Guide HP LaserJet MFP Analog Fax Accessory 300 Send Fax Driver Guide Copyright and License 2008 Copyright Hewlett-Packard Development Company, L.P. Reproduction, adaptation, or translation without prior written

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Applications Notes Best Practices for Using SolarWinds' ORION to Monitor SANiQ Performance Legal Notices Warranty The only warranties for HP products and services

More information

Radia Cloud. User Guide. For the Windows operating systems Software Version: 9.10. Document Release Date: June 2014

Radia Cloud. User Guide. For the Windows operating systems Software Version: 9.10. Document Release Date: June 2014 Radia Cloud For the Windows operating systems Software Version: 9.10 User Guide Document Release Date: June 2014 Software Release Date: June 2014 Legal Notices Warranty The only warranties for products

More information

HP Device Manager 4.6

HP Device Manager 4.6 Technical white paper HP Device Manager 4.6 FTP Server Configuration Table of contents Overview... 2 IIS FTP server configuration... 2 Installing FTP v7.5 for IIS... 2 Creating an FTP site with basic authentication...

More information

HP Universal CMDB. Software Version: 10.22. Data Flow Management Best Practices

HP Universal CMDB. Software Version: 10.22. Data Flow Management Best Practices HP Universal CMDB Software Version: 10.22 Data Flow Management Best Practices Document Release Date: December 2015 Software Release Date: December 2015 Legal Notices Warranty The only warranties for HP

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 Citrix XenServer Integration Guide Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty The only warranties

More information

HP LASER GAMING MOUSE USER MANUAL

HP LASER GAMING MOUSE USER MANUAL HP LASER GAMING MOUSE USER MANUAL v1.0.en Part number: 513192-001 Contents Selecting a User Profile... 1 Customizing a User Profile... 2 Customizing DPI Profiles... 3 Selecting a DPI Profile... 3 Changing

More information

HP SiteScope. HP Vertica Solution Template Best Practices. For the Windows, Solaris, and Linux operating systems. Software Version: 11.

HP SiteScope. HP Vertica Solution Template Best Practices. For the Windows, Solaris, and Linux operating systems. Software Version: 11. HP SiteScope For the Windows, Solaris, and Linux operating systems Software Version: 11.23 HP Vertica Solution Template Best Practices Document Release Date: December 2013 Software Release Date: December

More information

HP External Hard Disk Drive Backup Solution by Seagate User Guide. November 2004 (First Edition) Part Number 373652-001

HP External Hard Disk Drive Backup Solution by Seagate User Guide. November 2004 (First Edition) Part Number 373652-001 HP External Hard Disk Drive Backup Solution by Seagate User Guide November 2004 (First Edition) Part Number 373652-001 Copyright 2004 Hewlett-Packard Development Company, L.P. The information contained

More information

Setting Up ALERE with Client/Server Data

Setting Up ALERE with Client/Server Data Setting Up ALERE with Client/Server Data TIW Technology, Inc. November 2014 ALERE is a registered trademark of TIW Technology, Inc. The following are registered trademarks or trademarks: FoxPro, SQL Server,

More information

ImageNow Interact for Microsoft SharePoint Installation, Setup, and User Guide

ImageNow Interact for Microsoft SharePoint Installation, Setup, and User Guide ImageNow Interact for Microsoft SharePoint Installation, Setup, and User Guide Version: 6.6.x Written by: Product Documentation, R&D Date: March 2012 ImageNow and CaptureNow are registered trademarks of

More information

Easy Manage Helpdesk Guide version 5.4

Easy Manage Helpdesk Guide version 5.4 Easy Manage Helpdesk Guide version 5.4 Restricted Rights Legend COPYRIGHT Copyright 2011 by EZManage B.V. All rights reserved. No part of this publication or software may be reproduced, transmitted, stored

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

HP Real User Monitor. Release Notes. For the Windows and Linux operating systems Software Version: 9.21. Document Release Date: November 2012

HP Real User Monitor. Release Notes. For the Windows and Linux operating systems Software Version: 9.21. Document Release Date: November 2012 HP Real User Monitor For the Windows and Linux operating systems Software Version: 9.21 Release Notes Document Release Date: November 2012 Software Release Date: November 2012 Legal Notices Warranty The

More information

Sharing Pictures, Music, and Videos on Windows Media Center Extender

Sharing Pictures, Music, and Videos on Windows Media Center Extender Sharing Pictures, Music, and Videos on Windows Media Center Extender Applies to: Microsoft Windows XP Media Center Edition Microsoft Windows Media Center Extender Microsoft Windows Media Center Extender

More information

HP Service Manager. Process Designer Content Pack 9.30.1. Processes and Best Practices Guide

HP Service Manager. Process Designer Content Pack 9.30.1. Processes and Best Practices Guide HP Service Manager Process Designer Content Pack 9.30.1 Processes and Best Practices Guide Document Release Date: June, 2012 Software Release Date: June, 2012 1 Legal Notices Warranty The only warranties

More information

HP ilo mobile app for Android

HP ilo mobile app for Android HP ilo mobile app for Android User Guide Abstract The HP ilo mobile app provides access to the remote console and scripting features of HP ProLiant servers. HP Part Number: 690350-003 Published: March

More information

HP Roar Plus Speaker. Other Features

HP Roar Plus Speaker. Other Features HP Roar Plus Speaker Other Features Copyright 2014 Hewlett-Packard Development Company, L.P. Microsoft, Windows, and Windows Vista are U.S. registered trademarks of the Microsoft group of companies. Bluetooth

More information

HR Onboarding Solution

HR Onboarding Solution HR Onboarding Solution Installation and Setup Guide Version: 3.0.x Compatible with ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: November 2014 2014 Perceptive Software. All rights

More information

HP ProtectTools User Guide

HP ProtectTools User Guide HP ProtectTools User Guide Copyright 2007 Hewlett-Packard Development Company, L.P. Microsoft and Windows are U.S. registered trademarks of Microsoft Corporation. Intel is a trademark or registered trademark

More information

Fairfield University Using Xythos for File Sharing

Fairfield University Using Xythos for File Sharing Fairfield University Using Xythos for File Sharing Version 7.0 Table of Contents I: Manage your Department Folder...2 Your Department Folder... 2 II: Sharing Folders and Files Inside of Fairfield U...3

More information

Sales Person Commission

Sales Person Commission Sales Person Commission Table of Contents INTRODUCTION...1 Technical Support...1 Overview...2 GETTING STARTED...3 Adding New Salespersons...3 Commission Rates...7 Viewing a Salesperson's Invoices or Proposals...11

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Best Practices Best Practice for Active Monitoring of LeftHand SANs Legal Notices Warranty The only warranties for HP products and services are set forth in the

More information

HP Factory-Installed Operating System Software for Microsoft Windows Small Business Server 2003 R2 User Guide

HP Factory-Installed Operating System Software for Microsoft Windows Small Business Server 2003 R2 User Guide HP Factory-Installed Operating System Software for Microsoft Windows Small Business Server 2003 R2 User Guide Part Number 371502-004 October 2007 (Fourth Edition) Copyright 2004, 2007 Hewlett-Packard Development

More information

Additional License Authorizations

Additional License Authorizations Additional License Authorizations for HP Service Management Center Software products and for HP Release Control Software Product use authorizations This document provides Additional License Authorizations

More information

HP Client Manager 6.2

HP Client Manager 6.2 HP Client Manager 6.2 Introduction... 2 New Features in HPCM 6.2... 4 Understanding how HPCM works... 5 Extensive reporting capability... 5 HPCM in operation... 6 Client inventory... 6 Health monitoring...

More information

Exam Preparation Guide HP0-M96: Asset Manager 9 Implementation Exam

Exam Preparation Guide HP0-M96: Asset Manager 9 Implementation Exam HP ExpertONE Exam Preparation Guide HP0-M96: Asset Manager 9 Implementation Exam This guide is to set expectations about the context of the certification exam and to help candidates prepare. Recommended

More information

How to configure MAC authentication on a ProCurve switch

How to configure MAC authentication on a ProCurve switch An HP ProCurve Networking Application Note How to configure MAC authentication on a ProCurve switch Contents 1. Introduction... 3 2. Prerequisites... 3 3. Network diagram... 3 4. Configuring the ProCurve

More information

QUICK START GUIDE RESOURCE MANAGERS. Last Updated: 04/27/2012

QUICK START GUIDE RESOURCE MANAGERS. Last Updated: 04/27/2012 QUICK START GUIDE RESOURCE MANAGERS Last Updated: 04/27/2012 Table of Contents Introduction... 3 Getting started... 4 Logging into Eclipse... 4 Setting your user preferences... 5 Online help and the Eclipse

More information