How to Add and Hide UI Elements in Cognos Connection

Size: px
Start display at page:

Download "How to Add and Hide UI Elements in Cognos Connection"

Transcription

1 Guideline How to Add and Hide UI Elements in Product(s): Cognos 8 Area of Interest: Infrastructure

2 2 Copyright Your use of this document is subject to the Terms of Use governing the Cognos software products and related services which you have licensed or purchased from Cognos. The information contained in this document is proprietary information of Cognos Incorporated and/or its licensors and is protected under copyright and other applicable laws. You may use the information and methodologies described in this document 'as is' or you may modify them, however Cognos will not be responsible for any deficiencies or errors that result from modifications which you make. Copyright 2006 (c) Cognos Incorporated. All Rights Reserved. You can print selected pages, a section, or the whole book. Cognos grants you a non-exclusive, non-transferable license to use, copy, and reproduce the copyright materials, in printed or electronic format, solely for the purpose of providing internal training on, operating, and maintaining the Cognos software. This document is maintained by the Best Practices, Product and Technology team. You can send comments, suggestions, and additions to Best Practices, Product and Technologies.

3 3 Contents 1 INTRODUCTION COGNOS CONNECTION USING THE SYSTEM.XML FILE HOW TO REMOVE A CUSTOM SECTION IN COGNOS CONNECTION FOR ALL USERS HOW TO REMOVE A CUSTOM SECTION IN COGNOS CONNECTION FOR SPECIFIC USERS, GROUPS, AND ROLES ADDING A NEW SECTION IN COGNOS CONNECTION HOW TO REMOVE A CUSTOM SECTION IN COGNOS CONNECTION USING URLS APPENDIX A LIST OF SECTION THAT CAN BE HIDDEN... 9

4 4 1 Introduction This document describes how administrators can add and hide specific sections within the UI. Using the system.xml file, parameters can be added to add or remove UI components for all users or for specific users, groups, and roles. 2 provides some easy and quick ways to add custom sections and to remove particular areas in the UI. Removing sections is especially popular as it allows administrators to simplify the end user interface. For example, in the screenshot below, specific sections in the headers were removed providing this much simpler UI for consumers. The functionality does not end here. A fine level of granularity is available allowing administrators to removing specific links and buttons and replacing them with their links. Finally, an administrator can assign these custom sections to particular users, groups, and roles. 3 Using the System.xml File The system.xml file provides a lot of flexibility and control over how administrators can customize the UI. In this document, we will look at how to

5 5 add and remove sections of the UI using this file. The system.xml file is located in the <install-dir>/c8/templates/ps/portal directory. 4 How to Remove a Custom Section in Cognos Connection for all Users To remove a specific section in : Backup the system.xml file located in the <install-dir>/c8/templates/ps/portal directory. Edit the system.xml file. To remove a specific section, append the following parameter. <param name="ui_hide"> <CC_HEADER_MENU_home/> </param> In this case, CC_HEADER_MENU_home is the right-hand side of the Cognos Connection main header. See the following section for a complete list of all of the sections that can be hidden. Note: This setting removes the section of the UI for all users. Refer to the subsequent section for more information on how to do this on a user, group, or role basis. In addition to removing this header, suppose that want to remove all headers, except the portal tabs and the main logo header. Restart the Cognos 8 service for the changes to take effect. 5 How to Remove a Custom Section in Cognos Connection for Specific Users, Groups, and Roles It is possible to remove specific sections of the, but only remove them for specific users, groups, or roles. For example, suppose that I want to remove the Excel button for a particular group of users that I don t want viewing reports in Excel. To do this: In, browse to a particular user, group, or role. Click on Set Properties for this particular user, group, or role.

6 6 Click on the View Search Path link. A pop-up window will appear with an ID. The object ID will appear in this window. In the screenshot below, the ID for this group is: xoknvbnn1bwvycw_. Within a system.xml file, define this group. For example, the following syntax shows how I can define multiple groups within this file: <param name="ui_groups"> <group id="g1">xoknvbnn1bwvycw_</group> <group id="g2">xom5ldybncm91chm6dwlfuji_</group> <group id="55">xof5ldybnc4htchm6dalfuji_</group> </param> Note: If you are using one of the following five groups, you do not need to create a new group. User Description ID Anonymous Users who can access Cognos 8 without being prompted for authentication Anonymous

7 7 Administrators Users who have the administration capability Administrators Authenticated Users Query Studio Users Report Studio Users All authenticated users, which includes Administrators, Query Studio Users, and Report Studio Users Users who have the Query Studio capability Users who have the Report Studio capability Consumers QSUsers RSUsers Within the same section of the system.xml file, add the following parameters: <param name="ui_hide"> <RV_TOOLBAR_BUTTONS_XLS show="administrators g1 g2 RSUsers"/> <RV_TOOLBAR_BUTTONS_CSV show="administrators g1 g2 RSUsers"/> <RV_TOOLBAR_BUTTONS_XLS show="administrators g1 g2 RSUsers"/> <RV_TOOLBAR_BUTTONS_CSV show="administrators g1 g2 RSUsers"/> <RV_TOOLBAR_BUTTONS_XLWA show="administrators g1 g2 RSUsers"/> <RV_TOOLBAR_BUTTONS_singleXLS show="administrators g1 g2 RSUsers"/> </param> Where the show = are exceptions. More specifically, the users and groups listed above are those users that will see these options. This means that Administrators, g1, g2, and RSUsers will see these options, but all other users will not see these options. Cognos Viewer toolbar for: Administrators, g1, g2, and RSUsers Cognos Viewer toolbar for all other Users 6 Adding a New Section in In addition to removing specific sections of, custom links and buttons can be added in a similar manner. To do this: Edit the system.xml file. To add a custom section to the top right header, add the following parameter: <param name="ui_add"> <CRN_HEADER_OPTIONS> <item> <url> <target>_blank</target>

8 8 <label xml:lang="en">google</label> <tooltip xml:lang="en">google</tooltip> <icon>action_search.gif</icon> </item> </CRN_HEADER_OPTIONS> </param> Where CRN_HEADER_OPTIONS is the section where this custom link will appear. Additionally, tooltips, language specific links, and buttons can be added in addition to the links. Restart the Cognos 8 service for these changes to take effect. 7 How to Remove a Custom Section in Cognos Connection using URLs In addition to making these changes through the system.xml file, users can remove these headers and toolbars using URLs. In particular, the following URL parameter, &ui=<list of header to list>, can be used to selectively hide any or all of the following header items. For example, to remove all of the headers and toolbars, append &ui=h1h2h3h4 to the end of a URL. Any combination of titles (t1, t2, t3, t4), menus (m1, m2, m3, m4), and headers (h1, h2, h3, h4), shown below, can be used. h1 h2 h3 h4 t t t t m1 m2 m3 m4 Notes: This only applies within or Cognos Viewer. A header contains both a title and a menu. For example, &ui=h1 will perform the same actions as &ui=t1m1. When viewing a report, to remove all headers and toolbars, simply append this parameter to the end of the URL: on=run&ui.object=/content/package[@name='go Sales and

9 9 Studio Report Report']&ui=h1h2h3h4 8 Appendix A 8.1 List of Section That Can be Hidden User Interface Element <CRN_HEADER/> <CRN_HEADER_TITLE/> <CRN_HEADER_OPTIONS/> <CRN_HEADER_OPTIONS_rs/> <CRN_HEADER_OPTIONS_qs/> <CRN_HEADER_OPTIONS_mm/> <CRN_HEADER_OPTIONS_ags/> <CRN_HEADER_OPTIONS_ps/> <CRN_HEADER_OPTIONS_cc/> Description The top header (h1) Left-hand side of the top header (h1) Right-hand side of the top header (h1) Report Studio link Query Studio link Metric Studio link Event Studio link Analysis Studio link link (Cognos Viewer only) <CC_HEADER/> <CC_HEADER_TITLE/> <CC_HEADER_MENU/> <CC_HEADER_MENU_home/> <CC_HEADER_MENU_return/> <CC_HEADER_MENU_preferences/> <CC_HEADER_MENU_logon/> <CC_HEADER_MENU_logoff/> header (h2) Left-hand side of the header (h2) Right-hand side of the header (h2) "home" link "return" link (Cognos Viewer only) "preferences" link "logon" link "logoff" link

10 10 <CC_HEADER_MENU_about/> <CC_HEADER_MENU_help/> "about" link (Cognos Viewer only) "help" link <CC_VIEW/> <CC_VIEW_TABS/> <CC_VIEW_TOOLS/> <CC_VIEW_TOOLS_directory/> <CC_VIEW_TOOLS_capabilities/> <CC_VIEW_TOOLS_schedule/> <CC_VIEW_TOOLS_administration/> <CC_VIEW_TOOLS_csadministration/> <CC_VIEW_TOOLS_portal/> <CC_VIEW_TOOLS_drillthru/> header (h3) Left-hand side of the header (h3) that includes the tabs Right-hand side of the header (h3) that includes the tools "directory" link "capabilities" link "schedule" link "administration" link "content administration" link "portal administration" link "drill-through definition" link <CC_TOOLBAR/> <CC_TOOLBAR_PATH/> <CC_TOOLBAR_BUTTONS/> <CC_TOOLBAR_BUTTONS_newjobDefinition/> <CC_TOOLBAR_BUTTONS_newfolder/> <CC_TOOLBAR_BUTTONS_newURL/> <CC_TOOLBAR_BUTTONS_newconfigurationFolder/> <CC_TOOLBAR_BUTTONS_newrole/> <CC_TOOLBAR_BUTTONS_newgroup/> header (h4) that includes the path navigation and toolbar Path navigation Toolbar buttons New Job New Folder New URL New Configuration Folder New Role New Group

11 11 <CC_TOOLBAR_BUTTONS_newnamespaceFolder/> <CC_TOOLBAR_BUTTONS_newdataSource/> <CC_TOOLBAR_BUTTONS_newdataSourceConnection/> <CC_TOOLBAR_BUTTONS_newdataSourceSignon/> <CC_TOOLBAR_BUTTONS_newcontact/> <CC_TOOLBAR_BUTTONS_newdistributionList/> <CC_TOOLBAR_BUTTONS_newprinter/> <CC_TOOLBAR_BUTTONS_newimportDeploymentFolder/> <CC_TOOLBAR_BUTTONS_newexportDeploymentFolder/> <CC_TOOLBAR_BUTTONS_import/> <CC_TOOLBAR_BUTTONS_export/> <CC_TOOLBAR_BUTTONS_cut/> <CC_TOOLBAR_BUTTONS_copy/> <CC_TOOLBAR_BUTTONS_paste/> <CC_TOOLBAR_BUTTONS_delete/> <CC_TOOLBAR_BUTTONS_refresh/> <CC_TOOLBAR_BUTTONS_selectall/> <CC_TOOLBAR_BUTTONS_deselectall/> <CC_TOOLBAR_BUTTONS_list/> <CC_TOOLBAR_BUTTONS_detail/> <CC_TOOLBAR_BUTTONS_properties/> <CC_TOOLBAR_BUTTONS_configuration_properties/> <CC_TOOLBAR_BUTTONS_order/> <CC_TOOLBAR_BUTTONS_enable_schedule/> <CC_TOOLBAR_BUTTONS_disable_schedule/> <CC_TOOLBAR_BUTTONS_view_events/> <CC_TOOLBAR_BUTTONS_page_sizes/> <CC_TOOLBAR_BUTTONS_search/> New Namespace Folder New Data Source New Connection New Data Source Signon New Contact New Distribution List New Printer New import deployment folder New export deployment folder New import specification New export Specification Cut Copy Paste Delete Refresh Select all Deselect All List view mode Detailed view mode Current folder properties Configuration folder properties Order Enable Schedule Disable Schedule View Events Page sizes option in configuration tool Search

12 12 <CC_TOOLBAR_BUTTONS_newpagelet/> <CC_TOOLBAR_BUTTONS_edit_pagelet/> Add a new portal page Edit a page <CC_DIALOG_HEADER/> <CC_DIALOG_HEADER_help/> Not supported "Help" link <CC_RUN_OPTIONS_ _attachment/> "Include the report" check box <RV_HEADER/> <RV_HEADER_TITLE/> <RV_HEADER_MENU/> <RV_HEADER_MENU_return/> <RV_HEADER_MENU_about/> Cognos Viewer header Left hand side of the Cognos Viewer header Right hand side of the Cognos Viewer header "return" link "about" link <RV_TOOLBAR/> <RV_TOOLBAR_BUTTONS/> <RV_TOOLBAR_BUTTONS_Download/> <RV_TOOLBAR_BUTTONS_Save/> <RV_TOOLBAR_BUTTONS_ReportViewSave/> <RV_TOOLBAR_BUTTONS_Send/> <RV_TOOLBAR_BUTTONS_Run/> <RV_TOOLBAR_BUTTONS_HTML/> <RV_TOOLBAR_BUTTONS_PDF/> <RV_TOOLBAR_BUTTONS_XLS/> <RV_TOOLBAR_BUTTONS_CSV/> <RV_TOOLBAR_BUTTONS_XML/> <RV_TOOLBAR_BUTTONS_XLWA/> Not applicable Toolbar options in Cognos Viewer Download toolbar button. Applies when download is enabled. Save toolbar button Save As toolbar button toolbar button Run toolbar button HTML format view button PDF format view button XLS format view button CSV format view button XML format view button Excel 2002 format view

13 13 <RV_TOOLBAR_BUTTONS_XLS/> <RV_TOOLBAR_BUTTONS_singleXLS/> Excel 2000 format view Excel 2000 single sheet format view <SMT_SCOPE_any/> <SMT_SCOPE_entries_i_own/> <SMT_SCOPE_public_folders/> Any choice from the Scope selection in the Schedule Management tool. Entries I Own choice from the Scope selection in the Schedule Management tool. Public Folders choice from the Scope selection in the Schedule Management tool.

Customizing the Cognos 8 Welcome Page

Customizing the Cognos 8 Welcome Page Proven Practice Customizing the Cognos 8 Welcome Page Product(s): Cognos 8 Area of Interest: Infrastructure Customizing the Cognos 8 Welcome Page 2 Copyright Your use of this document is subject to the

More information

COGNOS (R) ENTERPRISE BI SERIES COGNOS REPORTNET (TM)

COGNOS (R) ENTERPRISE BI SERIES COGNOS REPORTNET (TM) COGNOS (R) ENTERPRISE BI SERIES COGNOS REPORTNET (TM) GETTING STARTED Cognos ReportNet Getting Started 07-05-2004 Cognos ReportNet 1.1MR1 Type the text for the HTML TOC entry Type the text for the HTML

More information

COGNOS (R) 8 COGNOS CONNECTION USER GUIDE USER GUIDE THE NEXT LEVEL OF PERFORMANCE TM. Cognos Connection User Guide

COGNOS (R) 8 COGNOS CONNECTION USER GUIDE USER GUIDE THE NEXT LEVEL OF PERFORMANCE TM. Cognos Connection User Guide COGNOS (R) 8 COGNOS CONNECTION USER GUIDE Cognos Connection User Guide USER GUIDE THE NEXT LEVEL OF PERFORMANCE TM Product Information This document applies to Cognos (R) 8 Version 8.1.2 MR2 and may also

More information

Cognos Connection User Guide USER GUIDE. Cognos (R) 8 COGNOS CONNECTION USER GUIDE

Cognos Connection User Guide USER GUIDE. Cognos (R) 8 COGNOS CONNECTION USER GUIDE Cognos Connection User Guide USER GUIDE Cognos (R) 8 COGNOS CONNECTION USER GUIDE Product Information This document applies to Cognos (R) 8 Version 8.2 and may also apply to subsequent releases. To check

More information

Version User Guide

Version User Guide IBM Cognos Connection Version 10.1.0 User Guide Product Information This document applies to IBM Cognos Software Version 10.1.0 and may also apply to subsequent releases. To check for newer versions of

More information

Adding Content to your Personalised Page

Adding Content to your Personalised Page Having prepared the layout of your personalised page, you now need to populate it with the relevant content. Content cannot be added unless the layout is already set up. Refer to Creating a Personalised

More information

IPEDS Human Resources Survey

IPEDS Human Resources Survey IPEDS Human Resources Survey - 2018 User Guide For Reports Version 5 November 2018 Table of Contents Overview... 3 Log in Procedure... 4 Running Reports... 6 Export Reports to Excel... 9 Drill Down to

More information

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

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

More information

Collapsible Hierarchies using Scripting

Collapsible Hierarchies using Scripting Tip or Technique Collapsible Hierarchies using Scripting Product(s): Cognos 8.2, Cognos 8.3 Area of Interest: Report Design 2 Copyright Your use of this document is subject to the Terms of Use governing

More information

INSTITUTE BUSINESS SYSTEMS IMSS COGNOS REPORT STUDIO GUIDE

INSTITUTE BUSINESS SYSTEMS IMSS COGNOS REPORT STUDIO GUIDE INSTITUTE BUSINESS SYSTEMS IMSS COGNOS REPORT STUDIO GUIDE Table of Contents Logging into Cognos... 3 Viewing Summary Information... 6 Running a Report... 6 Rerunning a Report... 9 Comparing Summary Information...

More information

IBM Cognos Open Mic Cognos Analytics 11 Part 1. 1 st Jun, IBM Corporation

IBM Cognos Open Mic Cognos Analytics 11 Part 1. 1 st Jun, IBM Corporation IBM Cognos Open Mic Cognos Analytics 11 Part 1 1 st Jun, 2016 IBM Cognos Open MIC Team Chakravarthi Mannava Presenter Subhash Kothari Technical Panel Member Deepak Giri Technical Panel Member 2 Agenda

More information

Quick Guide FAST HR. For more resources, including a guide on FAST HR codes, visit # Instructions Screenshot

Quick Guide FAST HR. For more resources, including a guide on FAST HR codes, visit   # Instructions Screenshot Tips & tricks This quick guide describes basic navigation within the FAST HR reporting tool, including how to use filter options, format columns and export reports. For more resources, including a guide

More information

ER/Studio Enterprise Portal Evaluation Guide. Published: March 6, 2009

ER/Studio Enterprise Portal Evaluation Guide. Published: March 6, 2009 ER/Studio Enterprise Portal 1.0.3 Evaluation Guide Published: March 6, 2009 Contents Introduction to ER/Studio Enterprise Portal 1.0... 3 Session 1: Getting Started with the Enterprise Portal... 4 Session

More information

Securing the IBM Cognos 8 BI Environment

Securing the IBM Cognos 8 BI Environment Proven Practice Securing the IBM Cognos 8 BI Environment Product(s): IBM Cognos 8 BI Area of Interest: Security 2 Copyright Copyright 2008 Cognos ULC (formerly Cognos Incorporated). Cognos ULC is an IBM

More information

Business Insight Authoring

Business Insight Authoring Business Insight Authoring Getting Started Guide ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: August 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

COGNOS BI I) BI introduction Products Introduction Architecture Workflows

COGNOS BI I) BI introduction Products Introduction Architecture Workflows COGNOS BI I) BI introduction Products Architecture Workflows II) Working with Framework Manager (Modeling Tool): Architecture Flow charts Creating Project Creating Data Sources Preparing Relational Metadata

More information

How to Export a Report in Cognos Analytics

How to Export a Report in Cognos Analytics IBM Cognos Analytics How to Export a Report in Cognos Analytics Reports viewed in IBM Cognos Analytics can be exported in many formats including Excel. Some of the steps for exporting are different depending

More information

Veritas NetBackup OpsCenter Reporting Guide. Release 8.0

Veritas NetBackup OpsCenter Reporting Guide. Release 8.0 Veritas NetBackup OpsCenter Reporting Guide Release 8.0 Veritas NetBackup OpsCenter Reporting Guide Legal Notice Copyright 2016 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo

More information

ACTIVE Net Insights user guide. (v5.4)

ACTIVE Net Insights user guide. (v5.4) ACTIVE Net Insights user guide (v5.4) Version Date 5.4 January 23, 2018 5.3 November 28, 2017 5.2 October 24, 2017 5.1 September 26, 2017 ACTIVE Network, LLC 2017 Active Network, LLC, and/or its affiliates

More information

Style Report Enterprise Edition

Style Report Enterprise Edition INTRODUCTION Style Report Enterprise Edition Welcome to Style Report Enterprise Edition! Style Report is a report design and interactive analysis package that allows you to explore, analyze, monitor, report,

More information

Job Aid. Remote Access BAIRS Printing and Saving a Report. Table of Contents

Job Aid. Remote Access BAIRS Printing and Saving a Report. Table of Contents Remote Access BAIRS Printing and Saving a Report Table of Contents Remote Access BAIRS Printing a Report PDF HTML... 2 Remote Access BAIRS Printing a Report Export to PDF Interactive Reporting... 3 Remote

More information

Using the New UCOP UAT Validation Reports For Undergraduate Admissions

Using the New UCOP UAT Validation Reports For Undergraduate Admissions To access the new UAT validation reports in Cognos for Course Enrollment data, please follow the instructions outlined below: 1. Copy and paste the following link into your browser - http://data.ucop.edu.

More information

Financial Report Guide

Financial Report Guide Financial Report Guide 2008 Washington University All rights reserved. For RAPS Support, send an e-mail message to RAPS@wustl.edu, or call 935-3890. Last Modified: 09/16/08 This page is intentionally left

More information

Introduction to Cognos

Introduction to Cognos Introduction to Cognos User Handbook 7800 E Orchard Road, Suite 280 Greenwood Village, CO 80111 Table of Contents... 3 Logging In To the Portal... 3 Understanding IBM Cognos Connection... 4 The IBM Cognos

More information

Reporting Tools Running Query Viewer

Reporting Tools Running Query Viewer Reporting Tools Query Viewer is the Campus Solutions tool for running established queries and generating reports. (Query Manager is the tool used to build queries. See the Query Manager job aid for more

More information

Wholesale Lockbox User Guide

Wholesale Lockbox User Guide Wholesale Lockbox User Guide August 2017 Copyright 2017 City National Bank City National Bank Member FDIC For Client Use Only Table of Contents Introduction... 3 Getting Started... 4 System Requirements...

More information

Version Installation and User Guide

Version Installation and User Guide IBM Cognos 8 Business Intelligence Map Manager Version 8.4.1 Installation and User Guide Product Information This document applies to IBM Cognos 8 Version 8.4.1 and may also apply to subsequent releases.

More information

Portal Administration Guide

Portal Administration Guide Portal Administration Guide InForm TM GTM 5.5 SP0 Part number: DC-INF55-015-000 Copyright 2002-2011, Oracle and/or its affiliates. All rights reserved. The Programs (which include both the software and

More information

ZENworks Reporting System Reference. January 2017

ZENworks Reporting System Reference. January 2017 ZENworks Reporting System Reference January 2017 Legal Notices For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government rights, patent

More information

Symantec ediscovery Platform

Symantec ediscovery Platform Symantec ediscovery Platform Native Viewer (ActiveX) Installation Guide 7.1.5 Symantec ediscovery Platform : Native Viewer (ActiveX) Installation Guide The software described in this book is furnished

More information

MetaManager 3.3 New Features Guide METAMANAGER AN IBM GLOBAL SOLUTIONS DIRECTORY OFFERING BSP Software LLC 1/5

MetaManager 3.3 New Features Guide METAMANAGER AN IBM GLOBAL SOLUTIONS DIRECTORY OFFERING BSP Software LLC 1/5 METAMANAGER AN IBM GLOBAL SOLUTIONS DIRECTORY OFFERING Version 3.3 New Features Guide 2008 2009 BSP Software LLC 1/5 Product Information This document applies to MetaManager TM Series 3 version 3 and may

More information

BDM Hyperion Workspace Basics

BDM Hyperion Workspace Basics BDM Hyperion Workspace Basics Contents of this Guide - Toolbars & Buttons Workspace User Interface 1 Standard Toolbar 3 Explore Toolbar 3 File extensions and icons 4 Folders 4 Browsing Folders 4 Root folder

More information

Columbia University Finance Training FDS On-Demand Reporting

Columbia University Finance Training FDS On-Demand Reporting Overview The FDS (Financial Data Store) On Demand Reports interface is Columbia s custom interface for running FDS reports. The interface provides a number of features such as retained parameter values,

More information

Oracle Communications Performance Intelligence Center

Oracle Communications Performance Intelligence Center Oracle Communications Performance Intelligence Center Browser Export Scheduler Guide Release 10.2 E66874 Revision 1 February 2016 i Oracle Communications Performance Intelligence Center Browser Export

More information

METAMANAGER AN IBM GLOBAL SOLUTIONS DIRECTORY OFFERING. Version 5.5. MetaManager Series 5 Hot Fix Release Notes

METAMANAGER AN IBM GLOBAL SOLUTIONS DIRECTORY OFFERING. Version 5.5. MetaManager Series 5 Hot Fix Release Notes METAMANAGER AN IBM GLOBAL SOLUTIONS DIRECTORY OFFERING Version 5.5 2008-2018 Tech Data BSP Software 1 / 18 Product Information This document applies to MetaManager TM Series 5 version 5 and may also apply

More information

Tivoli Common Reporting V Cognos report in a Tivoli Integrated Portal dashboard

Tivoli Common Reporting V Cognos report in a Tivoli Integrated Portal dashboard Tivoli Common Reporting V2.1.1 Cognos report in a Tivoli Integrated Portal dashboard Preethi C Mohan IBM India Ltd. India Software Labs, Bangalore +91 80 40255077 preethi.mohan@in.ibm.com Copyright IBM

More information

University of North Dakota PeopleSoft Finance Tip Sheets. Utilizing the Query Download Feature

University of North Dakota PeopleSoft Finance Tip Sheets. Utilizing the Query Download Feature There is a custom feature available in Query Viewer that allows files to be created from queries and copied to a user s PC. This feature doesn t have the same size limitations as running a query to HTML

More information

User Scripting April 14, 2018

User Scripting April 14, 2018 April 14, 2018 Copyright 2013, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and

More information

HarePoint Analytics. For SharePoint. User Manual

HarePoint Analytics. For SharePoint. User Manual HarePoint Analytics For SharePoint User Manual HarePoint Analytics for SharePoint 2013 product version: 15.5 HarePoint Analytics for SharePoint 2016 product version: 16.0 04/27/2017 2 Introduction HarePoint.Com

More information

Reference Guide. Adding a Generic File Store - Importing From a Local or Network ShipWorks Page 1 of 21

Reference Guide. Adding a Generic File Store - Importing From a Local or Network ShipWorks Page 1 of 21 Reference Guide Adding a Generic File Store - Importing From a Local or Network Folder Page 1 of 21 Adding a Generic File Store TABLE OF CONTENTS Background First Things First The Process Creating the

More information

Introduction to Cognos Participants Guide. Table of Contents: Guided Instruction Overview of Welcome Screen 2

Introduction to Cognos Participants Guide. Table of Contents: Guided Instruction Overview of Welcome Screen 2 IBM Cognos Analytics Welcome to Introduction to Cognos! Today s objectives include: Gain a Basic Understanding of Cognos View a Report Modify a Report View a Dashboard Request Access to Cognos Table of

More information

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

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

More information

Sage Construction Central Setup Guide (Version 18.1)

Sage Construction Central Setup Guide (Version 18.1) Sage 300 Construction and Real Estate Sage Construction Central Setup Guide (Version 18.1) Certified course curriculum Important Notice The course materials provided are the product of Sage. Please do

More information

MAPILab Statistics for SharePoint User Guide

MAPILab Statistics for SharePoint User Guide MAPILab Statistics for SharePoint User Guide Edition 1.0, April 2010, MAPILab LTD. Contents Introduction... 3 Quick start... 3 Getting started... 4 Report selection... 6 Report generation... 10 Filters

More information

Impromptu User Installation Guide. IBM Cognos Business Intelligence Series 7 IBM Cognos Impromptu User. Version 7.4

Impromptu User Installation Guide. IBM Cognos Business Intelligence Series 7 IBM Cognos Impromptu User. Version 7.4 IBM Cognos Business Intelligence Series 7 IBM Cognos Impromptu User Version 7.4 for the Microsoft(R) Windows(R) Operating System Impromptu User Installation Guide IMPROMPTU USER INSTALLATION GUIDE Installation

More information

Smart-X Software Solutions SecReport Enterprise User Guide

Smart-X Software Solutions SecReport Enterprise User Guide Smart-X Software Solutions SecReport Enterprise User Guide Table of Contents: WELCOME 4 FEATURES AND CAPABILITIES 5 CONTENTS AND REQUIREMENTS 7 CONTENTS 7 REQUIREMENTS 8 LICENSING AND INSTALLATION 10 EVALUATION

More information

Calendar & Buttons Dashboard Menu Features My Profile My Favorites Watch List Adding a New Request...

Calendar & Buttons Dashboard Menu Features My Profile My Favorites Watch List Adding a New Request... remitview User Guide 1 TABLE OF CONTENTS INTRODUCTION... 3 Calendar & Buttons... 3 GETTING STARTED.... 5 Dashboard.... 7 Menu Features... 8 PROFILE.... 10 My Profile... 10 My Favorites... 12 Watch List...

More information

Tivoli Common Reporting V2.x. Reporting with Tivoli Data Warehouse

Tivoli Common Reporting V2.x. Reporting with Tivoli Data Warehouse Tivoli Common Reporting V2.x Reporting with Tivoli Data Warehouse Preethi C Mohan IBM India Ltd. India Software Labs, Bangalore +91 80 40255077 preethi.mohan@in.ibm.com Copyright IBM Corporation 2012 This

More information

Sage Australia Tax Reports User's Guide. October 2018

Sage Australia Tax Reports User's Guide. October 2018 Sage 300 2019 Australia Tax Reports User's Guide October 2018 This is a publication of Sage Software, Inc. 2018 The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product

More information

Tuning Cognos ReportNet for a High Performance Environment

Tuning Cognos ReportNet for a High Performance Environment Proven Practice Tuning Cognos ReportNet for a High Performance Environment Product(s): Cognos ReportNet Area of Interest: Performance Tuning Cognos ReportNet for a High Performance Environment 2 Copyright

More information

Quick Start Guide. Kaseya 2

Quick Start Guide. Kaseya 2 LiveConnect Quick Start Guide Kaseya 2 February 13, 2010 About Kaseya Kaseya is a global provider of IT automation software for IT Solution Providers and Public and Private Sector IT organizations. Kaseya's

More information

Doc. Version 1.0 Updated:

Doc. Version 1.0 Updated: OneStop Reporting Report Composer 3.5 User Guide Doc. Version 1.0 Updated: 2012-01-02 Table of Contents Introduction... 2 Who should read this manual... 2 What s included in this manual... 2 Symbols and

More information

Report Commander 2 User Guide

Report Commander 2 User Guide Report Commander 2 User Guide Report Commander 2.5 Generated 6/26/2017 Copyright 2017 Arcana Development, LLC Note: This document is generated based on the online help. Some content may not display fully

More information

Saving Report Output to the Server File System

Saving Report Output to the Server File System Guideline Saving Report Output to the Server File System Product(s): IBM Cognos 8 BI Area of Interest: Infrastructure Saving Report Output to the Server File System 2 Copyright and Trademarks Licensed

More information

ER/Studio Enterprise Portal User Guide

ER/Studio Enterprise Portal User Guide ER/Studio Enterprise Portal 1.1.1 User Guide Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All rights

More information

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3 Enterprise Vault.cloud CloudLink Google Account Synchronization Guide CloudLink 4.0.1 to 4.0.3 Enterprise Vault.cloud: CloudLink Google Account Synchronization Guide Last updated: 2018-06-08. Legal Notice

More information

BI-TECH ARCHIVE REPORTING. Instruction Manual

BI-TECH ARCHIVE REPORTING. Instruction Manual BI-TECH ARCHIVE REPORTING Instruction Manual Finance Systems March 25, 2014 Table of Contents Introduction 2 Report Security 2 Navigating to the Bi-Tech Reports 2 GL Transaction Detail Report 4 JL Transaction

More information

CCRS Quick Start Guide for Program Administrators. September Bank Handlowy w Warszawie S.A.

CCRS Quick Start Guide for Program Administrators. September Bank Handlowy w Warszawie S.A. CCRS Quick Start Guide for Program Administrators September 2017 www.citihandlowy.pl Bank Handlowy w Warszawie S.A. CitiManager Quick Start Guide for Program Administrators Table of Contents Table of Contents

More information

Deltek Costpoint Enterprise Reporting Installation Guide for Users Upgrading to Version 7.0.1

Deltek Costpoint Enterprise Reporting Installation Guide for Users Upgrading to Version 7.0.1 Deltek Costpoint Enterprise Reporting 7.0.1 April 15, 2013 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical or technical errors may

More information

Creating Dashboard. Version: 7.3

Creating Dashboard. Version: 7.3 Creating Dashboard Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from, through

More information

Main Window. Overview. Do this Click the New Report link. Create a New Report.

Main Window. Overview. Do this Click the New Report link. Create a New Report. Overview Main Window Create a new report from a table or existing view Create a new report by defining a custom join Work with your custom reports Open a recently accessed custom report Work with reports

More information

Cox Business Online Backup Administrator Guide. Version 2.0

Cox Business Online Backup Administrator Guide. Version 2.0 Cox Business Online Backup Administrator Guide Version 2.0 2012 by Cox Communications. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic,

More information

COGNOS (R) ENTERPRISE PLANNING SERIES

COGNOS (R) ENTERPRISE PLANNING SERIES COGNOS (R) ENTERPRISE PLANNING SERIES COGNOS PLANNING CONTRIBUTOR CLIENT LOADER INSTALLATION GUIDE Contributor Client Loader User Guide DD-MM-YYYY Contributor Client Loader please update with product version

More information

Veritas ediscovery Platform

Veritas ediscovery Platform Veritas ediscovery Platform Release Notes 8.2 Cumulative Hotfix 3 Release Notes PAGE: 2 Veritas ediscovery Platform : Release Notes 8.2 CHF3 The software described in this book is furnished under a license

More information

Remodeling Your Office A New Look for the SAS Add-In for Microsoft Office

Remodeling Your Office A New Look for the SAS Add-In for Microsoft Office Paper SAS1864-2018 Remodeling Your Office A New Look for the SAS Add-In for Microsoft Office ABSTRACT Tim Beese, SAS Institute Inc., Cary, NC Millions of people spend their weekdays in an office. Occasionally

More information

Deltek PM Compass 2.2. Custom Reports and Microsoft SQL Server Reporting Services Guide

Deltek PM Compass 2.2. Custom Reports and Microsoft SQL Server Reporting Services Guide Deltek PM Compass 2.2 Custom Reports and Microsoft SQL Server Reporting September 4, 2015 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical

More information

OBIEE. Oracle Business Intelligence Enterprise Edition. Rensselaer Business Intelligence Finance Author Training

OBIEE. Oracle Business Intelligence Enterprise Edition. Rensselaer Business Intelligence Finance Author Training OBIEE Oracle Business Intelligence Enterprise Edition Rensselaer Business Intelligence Finance Author Training TABLE OF CONTENTS INTRODUCTION... 1 USER INTERFACE... 1 HOW TO LAUNCH OBIEE... 1 TERMINOLOGY...

More information

COGNOS (R) ENTERPRISE BI SERIES

COGNOS (R) ENTERPRISE BI SERIES COGNOS (R) ENTERPRISE BI SERIES COGNOS SERIES 7 VERSION 3 NEW FEATURES New Features 06-07-2004 Series 7 Version 3 7.3 Table of Contents Report Studio Tour Type the text for the HTML TOC entry New Features

More information

University of Rochester

University of Rochester University of Rochester User s Guide to URGEMS Ad- Hoc Reporting Guide Using IBM Cognos Workspace Advanced, Version 10.2.1 Version 1.0 April, 2016 Updated 12/16/16 1 P age Table of Contents University

More information

REPORTING Copyright Framework Private Equity Investment Data Management Ltd

REPORTING Copyright Framework Private Equity Investment Data Management Ltd REPORTING Copyright Framework Private Equity Investment Data Management Ltd - 2016 Table of Contents Standard Reports... 3 Standard Report Pack... 4 General Data Protection and Framework... 7 Partner Bank

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware User's Guide for Oracle Business Intelligence Publisher Release 11g (11.1.1) Part No. E18861-01 April 2011 Oracle Fusion Middleware User's Guide for Oracle Business Intelligence

More information

10 Minute Demonstration Script

10 Minute Demonstration Script 10 Minute Demonstration Script Table of Contents The Demo... 3 The Interface... 3 Demo Flow... 3 Capture and Indexing... 4 Searches... 6 Integration and Workflow... 8 2 P a g e The Demo Most demonstrations

More information

Portal Integration Kit User s Guide for Microsoft SharePoint

Portal Integration Kit User s Guide for Microsoft SharePoint Portal Integration Kit User s Guide for Microsoft SharePoint BusinessObjects Enterprise XI 3.1 windows Copyright 2008 Business Objects, an SAP company. All rights reserved. Business Objects owns the following

More information

Release Notes ClearSQL (build 181)

Release Notes ClearSQL (build 181) August 14, 2018 Release Notes ClearSQL 7.1.2 (build 181) NEW FEATURES NEW: Exclusion of code lines from Flowcharts. It is now possible to exclude lines of code from a Flowchart diagram by defining exclusion

More information

COGNOS (R) ENTERPRISE BI SERIES COGNOS REPORTNET (TM)

COGNOS (R) ENTERPRISE BI SERIES COGNOS REPORTNET (TM) COGNOS (R) ENTERPRISE BI SERIES COGNOS REPORTNET (TM) QUERY STUDIO USER GUIDE Query Studio User Guide 28-04-2003 Cognos ReportNet 1.1MR1 Type the text for the HTML TOC entry Query Studio Quick Tour Query

More information

AvePoint Cloud Backup. Release Notes

AvePoint Cloud Backup. Release Notes AvePoint Cloud Backup Release Notes Table of Contents New Features and Improvements... 2 AvePoint Cloud Backup for Office 365 July 2018... 2 AvePoint Cloud Backup for Office 365 June 2018... 2 AvePoint

More information

CRM On Demand. Oracle CRM On Demand Report Services API Developer s Guide

CRM On Demand. Oracle CRM On Demand Report Services API Developer s Guide CRM On Demand Oracle CRM On Demand Report Services API Developer s Guide Release 31 February 2016 Copyright 2005, 2016 Oracle. All rights reserved. This software and related documentation are provided

More information

Reporting and Printing Guide

Reporting and Printing Guide Enterprise Studio Reporting and Printing Guide 2017-03-17 Applies to: Enterprise Studio 2.3 and Team Server 2.3 Table of contents 1 About reporting and printing models 4 2 Reporting models to HTML and

More information

SMARTdoc v2 User Manual

SMARTdoc v2 User Manual Pages: 1/49 SMARTdoc v2 Pages: 2/49 1 Introduction SMARTdoc is an easy to use but full functional document management system. The mean focus is easy and fast. SMARTdoc is all about document and information

More information

Chapter 2 Autodesk Asset Locator... 3

Chapter 2 Autodesk Asset Locator... 3 Contents Chapter 2 Autodesk Asset Locator....................... 3 Supported Operating Systems....................... 3 Installing Autodesk Asset Locator..................... 4 Define a Search...............................

More information

TSM Studio Server and TSM Studio Operational Reporting

TSM Studio Server and TSM Studio Operational Reporting TSM Studio Server and TSM Studio Operational Reporting Table of Contents Disclaimer... 3 What is Operational Reporting?... 4 Getting Started... 5 Custom Summary... 8 Adding your own items to the Custom

More information

C_TBI30_74

C_TBI30_74 C_TBI30_74 Passing Score: 800 Time Limit: 0 min Exam A QUESTION 1 Where can you save workbooks created with SAP BusinessObjects Analysis, edition for Microsoft Office? (Choose two) A. In an Analysis iview

More information

Training Documentation. Corporate IT - Center of Excellence Cognos CPM. Cognos Workspace Advanced

Training Documentation. Corporate IT - Center of Excellence Cognos CPM. Cognos Workspace Advanced Training Documentation Corporate IT - Center of Excellence Cognos CPM Cognos Workspace Advanced 1 Version History Version Date Comment By Reviewed 0.1 04/01/2012 Draft Markus Reiß 0.2 16/08/2012 Update

More information

Mail & Deploy Reference Manual. Version 2.0.5

Mail & Deploy Reference Manual. Version 2.0.5 Mail & Deploy Reference Manual Version 2.0.5 Introduction TABLE OF CONTENTS Introduction... 4 General Introduction... 5 Architecture... 6 Server... 6 Repository... 6 Client... 6 Contact Us... 7 Server...

More information

Centrify Infrastructure Services

Centrify Infrastructure Services Centrify Infrastructure Services License Management Administrator s Guide December 2018 (release 18.11) Centrify Corporation Legal Notice This document and the software described in this document are furnished

More information

October 14, Business Intelligence Connector Guide

October 14, Business Intelligence Connector Guide October 14, 2017 Copyright 2013, 2017, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and

More information

CREATING CUSTOMER MAILING LABELS

CREATING CUSTOMER MAILING LABELS CREATING CUSTOMER MAILING LABELS agrē has a built-in exports to make it easy to create a data file of customer address information, but how do you turn a list of names and addresses into mailing labels?

More information

Admissions & Intro to Report Editing Participants Guide

Admissions & Intro to Report Editing Participants Guide IBM Cognos Analytics Admissions & Intro to Report Editing Participants Guide Welcome to Cognos - Admissions and Introduction to Report Editing! Today s objectives include: Gain a Basic Understanding of

More information

Student Manual. Cognos Analytics

Student Manual. Cognos Analytics Student Manual Cognos Analytics Add a Prompt to a Filter Add a prompt to a filter to add interactivity to the report. Prompts allow you to change filter criteria when the report is run. NAVIGATION: My

More information

Sage Singapore Tax Reports User's Guide. August 2018

Sage Singapore Tax Reports User's Guide. August 2018 Sage 300 2019 Singapore Tax Reports User's Guide August 2018 This is a publication of Sage Software, Inc. 2018 The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product

More information

Reporting and Analysis Guide

Reporting and Analysis Guide Reporting and Analysis Guide InForm TM ITM 4.6 SP3 Part number: DC-INF46-002-030 Copyright 1998-2011, Oracle and/or its affiliates. All rights reserved. The Programs (which include both the software and

More information

Module 2: Managing Your Resources Lesson 5: Configuring System Settings and Properties Learn

Module 2: Managing Your Resources Lesson 5: Configuring System Settings and Properties Learn Module 2: Managing Your Resources Lesson 5: Configuring System Settings and Properties Learn Welcome to Module 2, Lesson 5. In this lesson, you will learn how to use the Administration Console to configure

More information

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

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

More information

SQL Server Reporting Services

SQL Server Reporting Services www.logicalimagination.com 800.657.1494 SQL Server Reporting Services Course #: SS-104 Duration: 3 days Prerequisites This course assumes no prior knowledge of SQL Server Reporting Services. This course

More information

Reporting and Analysis Guide

Reporting and Analysis Guide Reporting and Analysis Guide Oracle Health Sciences InForm 6.0.1 Part number: E56923-01 Copyright 2012-2014, Oracle and/or its affiliates. All rights reserved. This software and related documentation are

More information

AvePoint Governance Automation 2. Release Notes

AvePoint Governance Automation 2. Release Notes AvePoint Governance Automation 2 Release Notes Service Pack 2, Cumulative Update 1 Release Date: June 2018 New Features and Improvements In the Create Office 365 Group/Team service > Governance Automation

More information

User Manual. Admin Report Kit for Exchange Server

User Manual. Admin Report Kit for Exchange Server User Manual Admin Report Kit for Exchange Server Table of Contents 1 About ARKES-Admin Report Kit for Exchange Server 1 1.1 System requirements 2 1.2 How to activate the software? 3 1.3 ARKES Reports Primer

More information

Guideline Supplier Processes

Guideline Supplier Processes Guideline Supplier Processes Order Processing Technical Connection Bid Submitting Requests for Information Submitting Bids at Auctions Document Retrieval Version 4.5.0 Version 4.5.0 August 2010 Table of

More information

2554 : Administering Microsoft Windows SharePoint Services and SharePoint Portal Server 2003

2554 : Administering Microsoft Windows SharePoint Services and SharePoint Portal Server 2003 2554 : Administering Microsoft Windows SharePoint Services and SharePoint Portal Server 2003 Introduction Elements of this syllabus are subject to change. This five-day instructor-led course provides students

More information

Context-sensitive Help

Context-sensitive Help USER GUIDE MADCAP DOC-TO-HELP 5 Context-sensitive Help Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this

More information