Customizing Incremental ETL for Operational Reporting

Size: px
Start display at page:

Download "Customizing Incremental ETL for Operational Reporting"

Transcription

1 Customizing Incremental ETL for Operational Reporting for HP Project and Portfolio Management Center version 9.12 Content Pack 1 About this Document... 2 Operational Reporting ETL Architecture... 2 ETL Batch Job... 2 PPM Center Tables Published for Change Data Capture... 3 COMMON ETL Module... 6 TM ETL Module... 7 RM ETL Module... 8 FM ETL Module... 8 PM ETL Module... 9 Guidelines for Custom Code CDC Operations Adding PPM Center Tables for Incremental Change Creating a New ETL Module... 12

2 About this Document This paper provides information about how to customize the incremental ETL process for the Operational Reporting solution for PPM Center. It is written for PPM Center administrators, configurators, and DBAs. Readers are assumed to be knowledgeable about PPM Center and SAP BusinessObjects Enterprise. The Operational Reporting Administrator s Guide provides information about the incremental ETL job (PPM_ETL_BATCH_JOB) that covers the day-to-day updates for PPM Center data tables. This paper describes how you can bring data that are not part of the default ETL process into the Operational Reporting system from the PPM Center database. Operational Reporting ETL Architecture The incremental ETL tool (extract, transform and load for Operational Reporting in PPM Center is designed using Oracle s Change Data Capture (CDC) and job infrastructure. It uses synchronous CDC. Tables are published in the PPM Center database and subscribed in multiple modules in PPM Center databases. The five PPM Center modules that participate in the incremental ETL process for Operational Reporting are designed to handle specific tables in the PPM Center database based on functionality. For example, the TM module loads and converts data for tables related to HP Time Management. The five functional modules are: CM (Common) TM (Time Management) RM (Resource Management) FM (Financial Management) PM (Project Management) ETL Batch Job RPT_ETL_BATCH_JOB is a scheduled job that calls RPT_ETL_BATCH_JOB_CHAIN, which is illustrated in Figure 1. This ETL job chain has seven blocks, with one block for each of the five ETL modules, one for the ETL_START_PROGRAM, and one for ETL_END_PROGRAM. Incremental ETL for each functional module in PPM Center is called from each block of the ETL job chain. The Oracle job scheduler schedules the ETL job chain, which is illustrated in Figure 1. Each block calls a function from the RPT_ETL_JOB_UTIL package. In the event of a failure at any point along the chain, the function throws an exception and the process jumps to the ETL_END block, instead of the next block in the job chain. 2

3 Figure 1. ETL job chain PPM Center Tables Published for Change Data Capture The framework uses the Oracle publish and subscribe model to publish a list of PPM Center tables for change. Each module subscribes to a list of tables. (The subscription is created during installation or upgrade.) To load changes in the Operational Reporting database, each module calls the Oracle API using the subscription name, and then calls a module-specific API to process changes within that specific window or time frame. For example, the CM (common) module calls the RPT_INCREMENTAL_ETL.DO_COMMON_INCREMENTAL_ETL function. The RPT_ETL_JOB_UTIL.RUN_ETL function maintains the CDC window and also the transition COMMIT or ROLLBACK. 3

4 Figure 2. Each module executes generic code to copy the change capture data (CDC) from the PPM Center database CDC table to the Operational Reporting database CDC table using a database link. During Operational Reporting deployment or upgrade, this CDC table is created in the Operational Reporting database. It (?) executes another generic method to merge those changes in the PPM Center tables into the Operational Reporting database. After the changes are copied and merged, PPM Center tables in the Operational Reporting schema are the same as the tables in the PPM Center schema and each module executes module-specific fact calculation logic. (See Figure 3 below) Figure 3. 4

5 The following PPM Center tables are published for change data capture (CDC): FM_APPROVED_BUDGETS FM_FINANCIAL_LINE_CELLS FM_FINANCIAL_SUMMARY FM_FORECAST_ACTUALS FM_FORECAST_ACTUAL_LINES FM_USER_DATA ITG_ACTIVITIES_NLS ITG_AUDIT_EVENTS ITG_SETTINGS_ATTRIBUTES ITG_SETTINGS_CONTAINERS ITG_SETTINGS_CONTAINER_CHLDRN ITG_SETTINGS_CONT_ATTRS KCRT_CONTACTS KCRT_FG_MASTER_PROJ_REF KCRT_FG_PFM_ASSET KCRT_FG_PFM_PROJECT KCRT_FG_PFM_PROPOSAL KCRT_FG_PROJ_ISSUE KCRT_FG_PROJ_RISK KCRT_FG_PROJ_SCOPE_CHANGE KCRT_REQUESTS KCRT_REQUEST_DETAILS KCRT_REQUEST_TYPES_NLS KCRT_REQ_HEADER_DETAILS KCRT_STATUSES_NLS KCST_CURRENCIES_NLS KDLV_PACKAGES KDRV_CALENDARS KDRV_CALENDAR_EXCEPTIONS KDRV_CALENDAR_SETUPS KDRV_WORKING_DAYS KNTA_LOOKUPS_NLS KNTA_REGIONS_NLS KNTA_SECURITY_GROUPS_NLS KNTA_USERS KPMO_BUSINESS_OBJECTIVES_NLS KRSC_ORG_UNITS_NLS KRSC_ORG_UNIT_MEMBERS KTMG_CHARGE_CODES_NLS KTMG_PERIODS KTMG_PERIOD_TYPES_NLS KTMG_POLICIES KWFL_WORKFLOWS_NLS KWFL_WORKFLOW_INSTANCES 5

6 KWFL_WORKFLOW_INSTANCE_STEPS KWFL_WORKFLOW_STEPS_NLS PFM_LIFECYCLE_PARENT_ENTITY PGM_PROGRAMS PGM_PROGRAM_CONTENT PM_PROGRAM_BUSINESS_OBJECTIVES PM_PROJECTSPM_PROJECT_ROLLUP PM_PROJECT_TYPES PM_WORK_PLANS PPM_FISCAL_PERIODS_NLS RSC_POSITIONS RSC_POSITION_FORECAST RSC_RESOURCES RSC_RESOURCE_ASSIGNMENTS RSC_RESOURCE_POOLS RSC_RESOURCE_POOL_MANAGERS RSC_ROLES_NLS RSC_RP_DISTRIBUTION_ENTRIES RSC_STAFFING_PROFILES RSC_STAFF_PROF_ALLOCATION TM_ACTUALS TM_ACTUALS_EFFORT TM_LINE_CHARGE_CODES TM_TIME_SHEETS TM_TIME_SHEET_LINES WP_MILESTONES WP_TASKS WP_TASK_ACTUALS WP_TASK_COSTS WP_TASK_INFO WP_TASK_SCHEDULE WP_USER_DATA WP_WORK_UNITS The different modules subscribe to different tables to get the changes for their areas of functionality. COMMON ETL Module The CM module loads all common tables and transforms requests, fiscal periods, and custom parameter data to fact. The CM module subscribes to the following tables. (This list of tables is defined in the RPT_PPM_OBJECTS.COMMON_CDC_TABLES object.) KCRT_CONTACTS KCRT_FG_PFM_ASSET KCRT_FG_PFM_PROJECT KCRT_FG_PFM_PROPOSAL KCRT_REQUESTS KCRT_REQUEST_TYPES_NLS KCRT_REQ_HEADER_DETAILS 6

7 KCRT_REQUEST_DETAILS KCRT_STATUSES_NLS KCST_CURRENCIES_NLS KDRV_CALENDAR_SETUPS KDRV_CALENDARS KDRV_WORKING_DAYS KNTA_LOOKUPS_NLS KNTA_REGIONS_NLS KNTA_USERS KPMO_BUSINESS_OBJECTIVES_NLS KRSC_ORG_UNIT_MEMBERS KRSC_ORG_UNITS_NLS FM_FINANCIAL_SUMMARY RSC_STAFFING_PROFILES KWFL_WORKFLOW_INSTANCES KWFL_WORKFLOW_INSTANCE_STEPS KWFL_WORKFLOW_STEPS_NLS KWFL_WORKFLOWS_NLS PFM_LIFECYCLE_PARENT_ENTITY PGM_PROGRAM_CONTENT PGM_PROGRAMS PM_PROGRAM_BUSINESS_OBJECTIVES PM_PROJECTS PM_PROJECT_TYPES PM_PROJECT_ROLLUP PM_WORK_PLANS WP_TASKS WP_TASK_ACTUALS PPM_FISCAL_PERIODS_NLS RSC_RESOURCES RSC_RESOURCE_POOL_MANAGERS RSC_RESOURCE_POOLS RSC_ROLES_NLS RSC_RP_DISTRIBUTION_ENTRIES TM_TIME_SHEETS TM_TIME_SHEET_LINES Fact transformation logic for the Common ETL is defined in the following packages and is called from the RPT_INCREMENTAL_ETL.DO_COMMON_INCREMENTAL_ETL function: RPT_POPULATE_DIMENSION.RPT_POPULATE_DIM_FISC_PERIODS(); rpt_request_update_dimension.do_req_custom_params_incrm_etl('h'); rpt_request_update_dimension.do_req_custom_params_incrm_etl('d'); rpt_request_update_dimension.do_request_incremental_etl(start_year_boundry); TM ETL Module The TM module works with tables for HP Time Management. The TM module subscribes to the following tables. (This list is of tables is defined in the RPT_PPM_OBJECTS.TM_CDC_TABLES object.) 7

8 ITG_AUDIT_EVENTS KTMG_PERIODS KTMG_POLICIES TM_ACTUALS TM_ACTUALS_EFFORT TM_TIME_SHEETS TM_TIME_SHEET_LINES WP_TASKS WP_TASK_INFO TM_LINE_CHARGE_CODES KTMG_CHARGE_CODES_NLS KTMG_PERIOD_TYPES_NLS KDLV_PACKAGES ITG_ACTIVITIES_NLS Fact transformation logic for HP Time Management ETL is defined in the following packages/functions and is called from the RPT_INCREMENTAL_ETL.DO_TM_INCREMENTAL_ETL function: rpt_tm_refresh.rpt_tm_refresh_all RPT_RM_UPDATE_EFFORT_FACT.DO_INCREMENTAL_ACTUALS; RM ETL Module The RM module works with tables for HP Resource Management. The RM module subscribes to the following tables. (This list is of tables is defined in the RPT_PPM_OBJECTS.RM_CDC_TABLES object. RSC_POSITIONS RSC_RESOURCE_ASSIGNMENTS RSC_STAFF_PROF_ALLOCATION RSC_POSITION_FORECAST RSC_RESOURCE_POOLS RSC_STAFFING_PROFILES KNTA_REGIONS_NLS KDRV_WORKING_DAYS KDRV_CALENDAR_SETUPS RSC_RP_DISTRIBUTION_ENTRIES RSC_RESOURCES KNTA_USERS KDRV_CALENDAR_EXCEPTIONS KNTA_SECURITY_GROUPS_NLS Fact transformation logic for the HP Resource Management ETL is defined in the following packages/ functions and is called from the RPT_INCREMENTAL_ETL.DO_RM_INCREMENTAL_ETL function: rpt_rm_update_facts.do_incremental_capacity(start_year_boundry, end_year_boundry); rpt_rm_update_facts.do_incremental_demand(start_year_boundry, end_year_boundry); FM ETL Module The FM module works with tables for HP Financial Management. The FM module subscribes to the following tables. (This list is of tables is defined in the RPT_PPM_OBJECTS.FM_CDC_TABLES object.) PM_PROGRAM_BUSINESS_OBJECTIVES PM_PROJECTS 8

9 KPMO_BUSINESS_OBJECTIVES_NLS PFM_LIFECYCLE_PARENT_ENTITY KCRT_FG_PFM_PROPOSAL KCRT_FG_PFM_PROJECT KCRT_FG_PFM_ASSET KCST_CURRENCIES_NLS FM_FORECAST_ACTUAL_LINES FM_FINANCIAL_LINE_CELLS FM_APPROVED_BUDGETS FM_USER_DATA FM_FORECAST_ACTUALS FM_FINANCIAL_SUMMARY PGM_PROGRAM_CONTENT PGM_PROGRAMS KRSC_ORG_UNITS_NLS ITG_SETTINGS_ATTRIBUTES ITG_SETTINGS_CONT_ATTRS ITG_SETTINGS_CONTAINER_CHLDRN ITG_SETTINGS_CONTAINERS Fact transformation logic for the HP Financial Management ETL is defined in the frpt_fm_update_facts.do_fm_full_etl; function, and is called from the RPT_INCREMENTAL_ETL.DO_FM_INCREMENTAL_ETL function. PM ETL Module The PM module works with tables for HP Project Management. The PM module subscribes to the following tables. (This list is of tables is defined in the RPT_PPM_OBJECTS.PM_CDC_TABLES object.) KCRT_FG_PFM_PROJECT KCRT_FG_PROJ_ISSUE KCRT_FG_PROJ_RISK KCRT_FG_PROJ_SCOPE_CHANGE KCRT_FG_MASTER_PROJ_REF WP_TASK_SCHEDULE WP_TASK_ACTUALS WP_WORK_UNITS WP_TASK_COSTS WP_TASK_INFO WP_TASKS RSC_RESOURCES KNTA_USERS PM_WORK_PLANS PM_PROJECTS WP_MILESTONES WP_USER_DATA KNTA_LOOKUPS_NLS KCRT_REQ_HEADER_DETAILS KCRT_REQUEST_DETAILS 9

10 Fact transformation logic for the HP Project Management ETL is defined in following packages/ functions, and is called from the RPT_INCREMENTAL_ETL.DO_PM_INCREMENTAL_ETL function: RPT_PM_UPDATE_FACTS.update_task_dim; RPT_PM_UPDATE_FACTS.RPT_PM_UPDATE_TASK_COST_FCT; RPT_PM_UPDATE_FACTS.UPDATE_ASSIGNMENT_FACTS; RPT_PM_UPDATE_FACTS.update_aggr_effort_fact; RPT_PM_UPDATE_FACTS.UPDATE_PROJECT_MGR; Note: For a complete list of data tables and views created in PPM Center for the Operational Reporting schema, see the Data Model Guide. 10

11 Guidelines for Custom Code You can add custom code to the functions called during ETL. You can leverage custom code using the CDC infrastructure, logging mechanisms, scheduled job, and so on. The custom code that you add to functions must comply with the following restrictions: Place all custom code into a separate package. Custom code must not update/modify any existing fact transformation logic. Custom code must select the right PPM Center module. For example, if the code uses tables included in the common list, then it would be called from the common module. Custom code must not call any commit or rollback. Transaction is managed in the upper layer. Custom code must throw an exception for any failure. The upper layer can then break the job chain execution. Custom code must not use DBMS_OUTPUT.PUT_LINE for logging, but instead use the following rpt_event_util functions: Use rpt_event_util.log_begin_func_event to mark the start of the function. Use rpt_event_util.log_info_event to log debug information. Use rpt_event_util.log_end_func_event to mark the end of the function. Use rpt_event_util.log_error_event to log error information. Custom code can include events in the CDC table in its logic. A CDC table exists for each table in a module. For example, for the KNTA_USERS table, the CM module contains a KNTA_USERS_CDC_CM_W table for CDC changes. Similarly, the RM module contains a KNTA_USERS_CDC_RM_W table exists for the RM module. CDC Operations The following operation types occur in CDC: I (insert) UU (before update) UN (after update) D (delete) For any update in PPM Center, CDC adds UU(with old values) and UN (with new values). For any data created in PPM Center, CDC may add insert and multiple update events. However, in the Operational Reporting schema, the infrastructure only copies the last event, and if last event happens to be an update, then it brings in data of the UN operation type. For the RM module, CDC copies data of the UU and UN operation types. These CDC data are deleted before the next copy and merge are performed during next incremental ETL run. 11

12 Adding PPM Center Tables for Incremental Change Custom code can use additional PPM Center tables for incremental change. There is no straightforward way to implement it, but it can be done in different ways. The approach described here requires minimal change to existing code. Suppose, that custom code must bring in changes for the following portfolio hierarchy tables (for HP Portfolio Management): KPFM_PORTFOLIO_LIFE_CYCLE PFM_PORTFOLIOS PFM_PORTFOLIO_CONTENTS PFM_PORTFOLIO_MANAGERS This requires a new ETL module. Creating a New ETL Module In this approach, you build custom code using the API that the framework provides. Because this involves minimal interaction with the existing code base, the risk of overriding changes during an upgrade is very small. To create a new ETL module with the example codes provided: 1 Unzip the example codes package and, and open the rpt_ex_etl_objects.pls file in a text editor. 2 Update the following parameters: ETL_OBJECTS: Add one or more PPM Center data table names to participate in the ETL for the new module. ETL_CHANGE_SET_NAME: Add a change set name for Oracle Change Data Capture. All ETL_OBJECTS tables are to be published under this change set. ETL_SUBS_NAME: Add a subscription name for Oracle Change Data Capture. Changes in published tables can be used to this subscription. ETL_VIEW_PREFIX: Add a two-letter preview name for the Oracle Change Data Capture subscription. This is used to uniquely identify views in the subscription. 3 If any table name that you specified for the ETL_OBJECTS parameter is more than 15 characters long, open the latest rpt_constants.plb output file from your reporting schema, and then update the two functions below (see examples in rpt_constants.plb): GET_SHORTNAME: This function must return the shortened form (fewer than 15 characters) of the table name. GET_FULLNAME: This function must return the full form of the table name. 4 If any of the tables that you specified for the ETL_OBJECTS parameter are missing a primary key or have composite primary keys, you must open the latest rpt_sync_objects.plb file for your reporting schema and update the following function (see examples in rpt_sync_objects.plb): GET_PRIMARY_KEYS(table_name IN VARCHAR2): This function must return the primary key for the table. 5 Open the rpt_fct_ex_table.sql file and update the fact table structure. The rpt_fct_ex_table.sql file creates the RPT_FCT_EXTEND table. (You can either reuse the RPT_FCT_EXTEND table, or create a new fact table to use.) 6 Open rpt_ex_populate_facts.pls file and update logic for initial load data in populate_facts function. The populate_facts function does not contain any code, you may need to add code to populate the fact table. 12

13 7 Open rpt_ex_update_facts.pls file and update logic for incremental data changes in update_facts function. The update_facts function does not contain any code, you may need to add code to update fact tale with delta changes. To apply the above changes in PPM Center and Operational Reporting databases, execute the scripts described in the following table. Script update_ppm_schema.sql update_reporting_schema.sql run_ex_inc_etl.sql Description Top-level script. Run this script in PPM database using schema username and password. It requires two parameters: PPM Schema name, and Index table space name for PPM schema. This script publishes new tables, creates subscription, and index for newly created CDC tables. Top-level script. To apply changes in the Operational Reporting database and load initial data, run this script in the Operational Reporting database using the schema username and password. The script requires the following two parameters: PPM Center schema name Data tablespace name for the Operational Reporting database schema Run this script to bring incremental changes from PPM Center to the Operational Reporting database. The script copies and merges changes, and then executes code to calculate fact. 13

14 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 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. Business Objects and the Business Objects logo, BusinessObjects, Web Intelligence, and other Business Objects products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of Business Objects Software Ltd. Business Objects is an SAP company. Adobe is a trademark of Adobe Systems Incorporated. Oracle and Javaô are registered trademarks of Oracle Corporation and/or its affiliates. March 2012

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

DS10. Data Services - Platform and Transforms COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s)

DS10. Data Services - Platform and Transforms COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s) DS10 Data Services - Platform and Transforms. COURSE OUTLINE Course Version: 15 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No

More information

SAP Sybase Replication Server Change DATA Capture Configuration. Example Configuration

SAP Sybase Replication Server Change DATA Capture Configuration. Example Configuration SAP Sybase Replication Server Change DATA Capture Configuration Example Configuration TABLE OF CONTENTS 1 INTRODUCTION... 3 1.1 Scope... 3 1.2 Purpose... 3 2 CONFIGURATION... 4 2.1 Requeriments... 4 2.2

More information

HP Project and Portfolio Management Center

HP Project and Portfolio Management Center HP Project and Portfolio Management Center Software Version: 9.10 Operational Reporting Administrator s Guide: February 2011 Revision Document Release Date: February 2011 Software Release Date: September

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

Achieve Patch Currency for Microsoft SQL Server Clustered Environments Using HP DMA

Achieve Patch Currency for Microsoft SQL Server Clustered Environments Using HP DMA Technical white paper Achieve Patch Currency for Microsoft SQL Server Clustered Environments Using HP DMA HP Database and Middleware Automation version 10.30 Table of Contents Purpose 2 Prerequisites 4

More information

Moving BCM to different IP range

Moving BCM to different IP range Moving BCM to different IP range PREREQUISITES This document describes how to move your BCM application server to a different IP range. The solution is for BCM system administrators who have basic knowledge

More information

External Media Cards User Guide

External Media Cards User Guide External Media Cards User Guide SD logo is a trademark of its proprietor. Copyright 2009 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

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

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

Register for this Exam You need an HPE Learner ID and a Pearson VUE login and password.

Register for this Exam You need an HPE Learner ID and a Pearson VUE login and password. Exam Preparation Guide Advanced HP Application Lifecycle Management 12.x.Software Exam description This exam tests that you can support all phases of the quality and test management process with HPE ALM

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

Project and Portfolio Management Center

Project and Portfolio Management Center Project and Portfolio Management Center Software Version: 9.41 Deployment Management Extension for Oracle E- Business Suite Guide for PPM Go to HELP CENTER ONLINE http://admhelp.microfocus.com/ppm/ Document

More information

Data Replication in HP DMA

Data Replication in HP DMA Technical white paper Data Replication in HP DMA HP Database and Middleware Automation version 10.00 Data Replication and HP DMA To help HP Database and Middleware Automation (HP DMA) extend across broader

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

HP Project and Portfolio Management Center

HP Project and Portfolio Management Center HP Project and Portfolio Management Center Software Version: 8.00 Generating Fiscal Periods Document Release Date: July 2009 Software Release Date: July 2009 Legal Notices Warranty The only warranties

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 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 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

SAP 3D Visual Enterprise 9.0: Localization of Authoring Content

SAP 3D Visual Enterprise 9.0: Localization of Authoring Content SAP White Paper Visualization SAP 3D Visual Enterprise 9.0: Localization of Authoring Content Author once - deliver to Multiple Locales Table of Contents Localization Overview 4 Localizer Utility 6 Exporting

More information

QuickSpecs. VMware Virtualization Software For HP ProLiant Servers. Overview

QuickSpecs. VMware Virtualization Software For HP ProLiant Servers. Overview Overview HP supports, certifies, and sells VMware Virtualization software on HP ProLiant servers. VMware from HP provides a comprehensive suite of virtualization solutions designed expressly for mission-critical

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 StorageWorks Enterprise Virtual Array 4400 to 6400/8400 upgrade assessment

HP StorageWorks Enterprise Virtual Array 4400 to 6400/8400 upgrade assessment HP StorageWorks Enterprise Virtual Array 4400 to 6400/8400 upgrade assessment Part number: 5697-8185 First edition: June 2009 Legal and notice information Copyright 2009 Hewlett-Packard Development Company,

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

QuickSpecs. What's New The addition of VMware ESX Server and VMware Virtual Infrastructure Node (VIN)

QuickSpecs. What's New The addition of VMware ESX Server and VMware Virtual Infrastructure Node (VIN) Overview HP supports, certifies, and sells VMware Virtualization software on HP ProLiant servers. VMware from HP provides a comprehensive suite of virtualization solutions designed expressly for mission-critical

More information

ADM505. Oracle Database Administration COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s)

ADM505. Oracle Database Administration COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s) ADM505 Oracle Database Administration. COURSE OUTLINE Course Version: 15 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of

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

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

BW305. SAP Business Warehouse Query Design and Analysis COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s)

BW305. SAP Business Warehouse Query Design and Analysis COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s) BW305 SAP Business Warehouse Query Design and Analysis. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved.

More information

How the Standard Integration between SAP EM and SAP TM Can Be Tested with SE37

How the Standard Integration between SAP EM and SAP TM Can Be Tested with SE37 How the Standard Integration between SAP EM and SAP TM Can Be Tested with SE37 Author: Daniel Härder Document Date: 04.02.2013 TABLE OF CONTENTS SUMMARY... 3 TESTING EM TM INTEGRATION WITH SE37... 3 DEFINING

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

Copying Data Between Similar HPE Vertica Clusters

Copying Data Between Similar HPE Vertica Clusters Copying Data Between Similar HPE Vertica HPE Vertica Analytic Database Legal Notices Warranty The only warranties for Hewlett Packard Enterprise products and services are set forth in the express warranty

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

HA300 SAP HANA Modeling

HA300 SAP HANA Modeling HA300 SAP HANA Modeling. COURSE OUTLINE Course Version: 12 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

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

Generating Unique System IDs (SIDs) after Disk Duplication using Altiris Deployment Solution

Generating Unique System IDs (SIDs) after Disk Duplication using Altiris Deployment Solution Generating Unique System IDs (SIDs) after Disk Duplication using Altiris Deployment Solution HP thin clients running Microsoft Windows Embedded Standard 2009 (WES) and Windows XP Embedded (XPe) Table of

More information

HP LF Printing Knowledge Center

HP LF Printing Knowledge Center HP LF Printing Knowledge Center Proof a press with CMYK Application: QuarkXPress 6.5 Printer: HP Designjet 30/130 series Software: HP Software RIP Operating System: Windows 1. First recommendations: See

More information

Advanced HP Application Lifecycle Management 12.x.Software

Advanced HP Application Lifecycle Management 12.x.Software Exam Preparation Guide Advanced HP Application Lifecycle Management 12.x.Software Exam description This exam tests that you can support all phases of the quality and test management process with HPE ALM

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

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

DBW4H. Data Warehousing with SAP BW/4HANA - Delta from SAP BW powered by SAP HANA COURSE OUTLINE. Course Version: 13 Course Duration: 2 Day(s)

DBW4H. Data Warehousing with SAP BW/4HANA - Delta from SAP BW powered by SAP HANA COURSE OUTLINE. Course Version: 13 Course Duration: 2 Day(s) DBW4H Data Warehousing with SAP BW/4HANA - Delta from SAP BW powered by SAP HANA. COURSE OUTLINE Course Version: 13 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate

More information

HP Data Center Automation Appliance

HP Data Center Automation Appliance HP Data Center Automation Appliance DCAA at-a-glance Express Edition Software Version: 1.00 Release Date: April 2015 Legal Notices Warranty The only warranties for HP products and services are set forth

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 Data Replication Solution Service for HPE Business Copy for P9000 XP Disk Array Family

HPE Data Replication Solution Service for HPE Business Copy for P9000 XP Disk Array Family Data sheet HPE Data Replication Solution Service for HPE Business Copy for P9000 XP Disk Array Family HPE Lifecycle Event Services HPE Data Replication Solution Service provides implementation of the HPE

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

External Devices User Guide

External Devices User Guide External Devices User Guide Copyright 2009 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

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 Application Lifecycle Management. Upgrade Best Practices

HP Application Lifecycle Management. Upgrade Best Practices HP Application Lifecycle Management Upgrade Best Practices Document Release Date: October 2010 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty

More information

BOD410 SAP Lumira 2.0 Designer

BOD410 SAP Lumira 2.0 Designer BOD410 SAP Lumira 2.0 Designer. COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No part of this

More information

Cube Designer User Guide SAP BusinessObjects Financial Consolidation, Cube Designer 10.0

Cube Designer User Guide SAP BusinessObjects Financial Consolidation, Cube Designer 10.0 Cube Designer User Guide SAP BusinessObjects Financial Consolidation, Cube Designer 10.0 Copyright 2011 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP BusinessObjects

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

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

Management and Printing User Guide

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

More information

Disclosure Management US SEC. Preview

Disclosure Management US SEC. Preview Disclosure Management US SEC Preview TABLE OF CONTENT Introduction... 3 Creating the Preview... 4 Troubleshooting... 8 Alternative way of creating the Preview... 10 Useful Notes/KBAs... 14 2 Introduction

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 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

Standardize Microsoft SQL Server Cluster Provisioning Using HP DMA

Standardize Microsoft SQL Server Cluster Provisioning Using HP DMA Technical white paper Standardize Microsoft SQL Server Cluster Provisioning Using HP DMA HP Database and Middleware Automation version 10.30 Table of Contents Purpose 2 Prerequisites 4 Process Overview

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.60 User Guide Document Release Date: December 2010 Software Release Date: December 2010 Legal Notices Warranty The only warranties

More information

External Media Cards. User Guide

External Media Cards. User Guide External Media Cards User Guide Copyright 2006 Hewlett-Packard Development Company, L.P. SD Logo is a trademark of its proprietor. The information contained herein is subject to change without notice.

More information

HP Service Health Reporter

HP Service Health Reporter HP Service Health Reporter Versions 9.30 & 9.31 Report Scheduling Table of contents Overview... 2 Scheduling... 2 Type of Scheduling... 2 How to schedule?... 2 Schedule Parameters... 2 Report (instance)

More information

ADM920 SAP Identity Management

ADM920 SAP Identity Management ADM920 SAP Identity Management. COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication may be reproduced

More information

Universe Design Tool SDK Object Model Diagrams SAP BusinessObjects Business Intelligence platform 4.1

Universe Design Tool SDK Object Model Diagrams SAP BusinessObjects Business Intelligence platform 4.1 Universe Design Tool SDK Object Model Diagrams SAP BusinessObjects Business Intelligence platform 4.1 Copyright 2013 SAP AG or an SAP affiliate company. All rights reserved. No part of this publication

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

HPE Moonshot ilo Chassis Management Firmware 1.52 Release Notes

HPE Moonshot ilo Chassis Management Firmware 1.52 Release Notes HPE Moonshot ilo Chassis Management Firmware 1.52 Release Notes Part Number: 732171-007 Published: February 2017 Edition: 1 2017 Hewlett Packard Enterprise Development LP Notices The information contained

More information

HA100 SAP HANA Introduction

HA100 SAP HANA Introduction HA100 SAP HANA Introduction. COURSE OUTLINE Course Version: 15 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may

More information

External Devices User Guide

External Devices User Guide External Devices User Guide Copyright 2009 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

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

Hewlett Packard Enterprise Subscription for Servers Asia Pacific & Japan

Hewlett Packard Enterprise Subscription for Servers Asia Pacific & Japan Hewlett Packard Enterprise Subscription for Servers Asia Pacific & Japan General information and FAQs Technical white paper Technical white paper Contents Overview...3 What is HPE Subscription for Servers?...3

More information

LASERJET ENTERPRISE M4555 MFP SERIES. Quick Reference Guide

LASERJET ENTERPRISE M4555 MFP SERIES. Quick Reference Guide LASERJET ENTERPRISE M4555 MFP SERIES Quick Reference Guide Reduce or enlarge a copy image 1. From the Home screen, touch the Copy button. 2. Touch the Reduce/Enlarge button. 3. Select one of the predefined

More information

MDG100 Master Data Governance

MDG100 Master Data Governance MDG100 Master Data Governance. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

SAP Global Track and Trace Onboarding Guide

SAP Global Track and Trace Onboarding Guide SAP Global Track and Trace Onboarding Guide Document Version: Cloud 2019.04a Implementation Guide PUBLIC TABLE OF CONTENTS 1 INTRODUCTION... 3 1.1 Prerequisite... 3 1.2 Overview... 3 2 SET UP AN SAP CLOUD

More information

HP Service Health Reporter

HP Service Health Reporter HP Service Health Reporter Software Version: 9.40 Windows and Linux operating systems Configuration Guide Document Release Date: October 2015 Software Release Date: January 2015 Legal Notices Warranty

More information

External Media Cards User Guide

External Media Cards User Guide External Media Cards User Guide Copyright 2009 Hewlett-Packard Development Company, L.P. SD Logo is a trademark of its proprietor. The information contained herein is subject to change without notice.

More information

NET311. Advanced Web Dynpro for ABAP COURSE OUTLINE. Course Version: 10 Course Duration: 4 Day(s)

NET311. Advanced Web Dynpro for ABAP COURSE OUTLINE. Course Version: 10 Course Duration: 4 Day(s) NET311 Advanced Web Dynpro for ABAP. COURSE OUTLINE Course Version: 10 Course Duration: 4 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

HP Web Jetadmin 8.0 Credential Store Feature

HP Web Jetadmin 8.0 Credential Store Feature HP Web Jetadmin 8.0 Credential Store Feature Table of Contents: Overview...1 The Credential Store...1 Interacting with the Credential Store...2 Configuration of Device Credentials...2 Example...3 Credential

More information

HA355. SAP HANA Smart Data Integration COURSE OUTLINE. Course Version: 12 Course Duration: 3 Day(s)

HA355. SAP HANA Smart Data Integration COURSE OUTLINE. Course Version: 12 Course Duration: 3 Day(s) HA355 SAP HANA Smart Data Integration. COURSE OUTLINE Course Version: 12 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of

More information

HPE 3PAR OS MU3 Patch 28 Release Notes

HPE 3PAR OS MU3 Patch 28 Release Notes HPE 3PAR OS 3.2.1 MU3 Patch 28 Release tes This release notes document is for Patch 28 and intended for HPE 3PAR Operating System Software 3.2.1.292 (MU3)+Patch 23. Part Number: QL226-99107 Published:

More information

HA100 SAP HANA Introduction

HA100 SAP HANA Introduction HA100 SAP HANA Introduction. COURSE OUTLINE Course Version: 10 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

CLD100. Cloud for SAP COURSE OUTLINE. Course Version: 16 Course Duration: 2 Day(s)

CLD100. Cloud for SAP COURSE OUTLINE. Course Version: 16 Course Duration: 2 Day(s) CLD100 Cloud for SAP. COURSE OUTLINE Course Version: 16 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

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

SQL/MX UPDATE STATISTICS Enhancements

SQL/MX UPDATE STATISTICS Enhancements SQL/MX UPDATE STATISTICS Enhancements Introduction... 2 UPDATE STATISTICS Background... 2 Tests Performed... 2 Test Results... 3 For more information... 7 Introduction HP NonStop SQL/MX Release 2.1.1 includes

More information

BW405. BW/4HANA Query Design and Analysis COURSE OUTLINE. Course Version: 14 Course Duration: 5 Day(s)

BW405. BW/4HANA Query Design and Analysis COURSE OUTLINE. Course Version: 14 Course Duration: 5 Day(s) BW405 BW/4HANA Query Design and Analysis. COURSE OUTLINE Course Version: 14 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part

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 Intelligent Management Center v7.1

HP Intelligent Management Center v7.1 HP Intelligent Management Center v7.1 iar Quick Start Guide Part number: 5998-6863 Published: September 2014 Software Version: IMC PLAT 7.1 (E0302) Edition: 1.0 Legal and notice information Copyright 2014

More information

HP Automation Insight

HP Automation Insight HP Automation Insight For the Red Hat Enterprise Linux and SUSE Enterprise Linux operating systems AI SA Compliance User Guide Document Release Date: July 2014 Software Release Date: July 2014 Legal Notices

More information

BC403 Advanced ABAP Debugging

BC403 Advanced ABAP Debugging BC403 Advanced ABAP Debugging. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

Ariba Network Configuration Guide

Ariba Network Configuration Guide Ariba Network Configuration Guide Content 1. Account Configuration I. Account Access II. Company Profile III. Email Notifications IV. Electronic Order Routing V. Electronic Invoice Routing VI. Remittances

More information

Ariba Network Configuration Guide

Ariba Network Configuration Guide Ariba Network Configuration Guide Content 1. Account Configuration I. Account Access II. Company Profile III. Email Notifications IV. Electronic Order Routing V. Electronic Invoice Routing VI. Remittances

More information

HPE Knowledge Article

HPE Knowledge Article HPE Knowledge Article HPE Integrated Lights-Out 4 (ilo 4) - How to Reset ilo Management Processor and ilo Password? Article Number mmr_sf-en_us000012649 Environment HPE Integrated Lights-Out 4 Issue Reset

More information

C4C30. SAP Cloud Applications Studio COURSE OUTLINE. Course Version: 21 Course Duration: 4 Day(s)

C4C30. SAP Cloud Applications Studio COURSE OUTLINE. Course Version: 21 Course Duration: 4 Day(s) C4C30 SAP Cloud Applications Studio. COURSE OUTLINE Course Version: 21 Course Duration: 4 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of

More information

HP Insight Control for Microsoft System Center Installation Guide

HP Insight Control for Microsoft System Center Installation Guide HP Insight Control for Microsoft System Center Installation Guide Abstract This guide describes installing HP Insight Control for Microsoft System Center. This guide is intended for use by system integrators

More information

Closing the Skills Gap with Real-world IT and Business Skills

Closing the Skills Gap with Real-world IT and Business Skills HP Institute European e-competence Framework Brief Closing the Skills Gap with Real-world IT and Business Skills Hewlett-Packard, a committed partner to the Information and Communications Technology (ICT)

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 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

SAP Hybris Billing, Pricing Simulation Extended Functions Release 2.0, SP03

SAP Hybris Billing, Pricing Simulation Extended Functions Release 2.0, SP03 SAP Hybris Billing, Pricing Simulation Extended Functions Release 2.0, SP03 Document Version 1.0 2017-06-13 TABLE OF CONTENTS EXTENDED FUNCTIONS IN SAP HYBRIS BILLING, PRICING SIMULATION... 3 Using Alternative

More information

BOID10. SAP BusinessObjects Information Design Tool COURSE OUTLINE. Course Version: 17 Course Duration: 5 Day(s)

BOID10. SAP BusinessObjects Information Design Tool COURSE OUTLINE. Course Version: 17 Course Duration: 5 Day(s) BOID10 SAP BusinessObjects Information Design Tool. COURSE OUTLINE Course Version: 17 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved.

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

HPE Operations Bridge Reporter

HPE Operations Bridge Reporter HPE Operations Bridge Reporter Software Version: 10.00 Windows and Linux operating systems Support Matrix Document Release Date: June 2017 Software Release Date: December 2015 Legal Notices Warranty The

More information

FAQs Data Sources SAP Hybris Cloud for Customer PUBLIC

FAQs Data Sources SAP Hybris Cloud for Customer PUBLIC FAQs Data Sources SAP Hybris Cloud for Customer PUBLIC TABLE OF CONTENTS FAQS DATA SOURCES... 3 1. When I try to execute a custom report, throws an error: Report cannot be opened; report an incident, See

More information

How-To Guide SAP 3D Visual Enterprise Author 8.0 Document Version: How To Part Replace

How-To Guide SAP 3D Visual Enterprise Author 8.0 Document Version: How To Part Replace How-To Guide SAP 3D Visual Enterprise Author 8.0 Document Version: 1.0-2014-09-15 Document History Document Version Description 1.0 First version Document History 2014 SAP AG or an SAP affiliate company.

More information