Agenda. 1. Tom Rosenburg, General Motors Maximizing Ad Hoc Reporting with the Application Where Clause

Size: px
Start display at page:

Download "Agenda. 1. Tom Rosenburg, General Motors Email: thomas.j.rosenburg@gm.com. Maximizing Ad Hoc Reporting with the Application Where Clause"

Transcription

1 Maximo Ad Hoc Reporting Tom Rosenburg, General Motors Robert Clarkson, Raytheon Pam Denny, IBM 2013 IBM Corporation

2 Agenda 1. Tom Rosenburg, General Motors Maximizing Ad Hoc Reporting with the Application Where Clause 2. Robert Clarkson, Raytheon Extracting Ad Hoc Reports to BIRT Designer 1

3 Tom Rosenburg, General Motors Introduction Maximo Local Business Administrator at the General Motors Spring Hill Manufacturing Facility. 6.9 million square feet, and occupies 2,100 acres. Located in Spring Hill, 40 miles south of Nashville. Produced Saturn vehicles from July March Produced the Chevrolet Traverse from Sept November Currently, the site manufacturing operations consist of a flexible vehicle assembly plant producing Chevrolet Equinox, an engine plant making 4- cylinder engines, a stamping plant, two polymer injection molding operations and one painting operation for bumper fascias. Manufactured engines and components supplied to GM assembly plants around the globe. Awards 2012: Wildlife Habitat Council: Wildlife Habitat certification 2012: EPA s Energy Star Challenge for Industry for Stamping/Powertrain Plants 2012: Ward s North America 10 Best Engines for Ecotec 2.0L Engine 2012: Tennessee Pollution Prevention Program: Performer status 2011: Tennessee Chamber of Commerce & Industry: Environmental Certificate of Achievement 2010: Ward s North America 10 Best Engines for Ecotec 2.4L Engine 2

4 How GM Uses Ad Hoc Reporting Utilize Ad Hoc Reporting for - We need to know what Pm s due this month were Skipped or not done last month. - We needed a report from Inventory that showed the items that have a value of over $100 - I needed a report from Asset, that lists the spare parts in the spare parts table The QBR s above require data from other tables in order to select the records to report on. Examples of Ad Hoc Reporting include Work Order Job Plans Inventory Asset 3

5 The where clause, a key to unlocking QBR reports Example #1: Work Order Find Work Orders that were not filled out correctly with missing crafts. I need to create a qbr to to the area CAC letting them know to correct these work orders ((woclass = 'WORKORDER' or woclass = 'ACTIVITY') and historyflag = 0 and siteid = '1536' and istask = 0 and craft is null and location in (select y.location from locancestor y where y.siteid = '1536' and y.ancestor = 'EN.LGE')) 4

6 From Work order, click the down arrow next to Advanced Search 5

7 Click on the Where Clause 6

8 Paste the SQL Expression into the where clause. 7

9 You can now create the QBR from your results. Click Select Action, then Run Reports 8

10 Then Create Report 9

11 You then Name the Report, select whether to make it public, and save it 10

12 Select the fields you want on the report. Then, very importantly, select whether to use the current query when ever the report is run 11

13 Format the report. In this case, I grouped by persongroup 12

14 Schedule, or submit the report. In this case, scheduled once a month, on the 1 st at 8am. 13

15 Locancestor table can be found in system configuration, where ancestor is the same as location 14

16 From Locations the ancestor is EN.LGE for all the children locations, and their children, if any. 15

17 Example #2: Job Plans Find job plans where there is an asset associated with the job plan, and the asset is in location B1000. We have a Site / Org division of the database, so I call out siteid, to reduce the processing time of the query. I also reference 2 different tables, in order to select the job plans I want: JPASSETSPLINK and ASSET since all the tables have fields that have the same name I use an alias for the table, to simplify the query. X = JPASSETSPLINK and y = ASSET (siteid = '1536 and jpnum in (select x.jpnum from jpassetsplink x where x.siteid = '1536 and x.assetnum in (select y.assetnum from asset y where y.location = 'B1000' and y.siteid = '1536'))) 16

18 I paste the query into the Job Plan where clause. I can then write a QBR Report to to the CAC s to clean these up. 17

19 Example #3: Inventory Find information from multiple tables. Some fields are in the Item table, and some are in Inventory. Note: You don t have to call out the inventory table. SQL assumes inventory, because that is the main table the query is run from. From the Inventory module, I want to see the Inventory for a group of Items. I know the field IN2. I also want the inventory to be not Obsolete, and from a particular site. I am going to give the Item Table an alias of x. ((status!= 'OBSOLETE' and siteid = '1536') and itemnum in (select x.itemnum from item x where x.itemsetid = 'I1536' and x.in2 in ('000-0D1KZ',.'000-0KKTN'))) 18

20 I paste the query into the Inventory where clause. This is an example of an in statement. 19

21 Example #4: Inventory Find spare parts with a current balance of 0 for a particular set of assets. This could be a very useful QBR depending on how you order your parts. (status!= 'OBSOLETE' and siteid = '1536' and location!= 'SPRING-HILL' and itemnum in (select itemnum from sparepart where assetnum like 'T - ') and itemnum in (select x.itemnum from INVBALANCES x where x.curbal = '0' and location!= 'SPRING-HILL')) 20

22 Example #5: Inventory Find inventory where the standard cost is greater than $100. The std cost is not in the inventory table, so I need to get that from the invcost table. (status!= 'OBSOLETE' and siteid = '1536' and itemnum in (select itemnum from invcost where stdcost > 100 and siteid = '1536')) 21

23 I select the fields to create a QBR 22

24 I am going to group by itemnum to create a QBR 23

25 I now have a QBR report. However, after viewing and saving, it requires additional modifications Robert will detail these next 24

26 Extracting Reports to BIRT Designer 25

27 Robert Clarkson, Raytheon Introduction Six years working with Raytheon Company Raytheon Company is a technology and innovation leader specializing in defense, security and civil markets throughout the world. With a history of innovation spanning 91 years, Raytheon provides state-of-the-art electronics, mission systems integration and other capabilities in the areas of sensing; effects; and command, control, communications and intelligence systems; as well as a broad range of mission support services. Six years working with Maximo and Maximo Reporting Actuate BIRT Over 15 years as a computer programmer, professionally, and over 25 years total About five years working with Databases and SQL 26

28 When you may need to extend a QBR in BIRT Designer Add functionality not available through the QBR Special SQL functions (Max, Min, Nvl, Lead, Lag, etc ) Access to procedures Complex SQL scripting (sub-queries) Formatting the data better (Currency, Conditional formatting) Join to other data sources or databases Complex Programming in Java 27

29 Applications Used IBM Maximo This example should be applicable to versions 7.x Oracle SQL Developer Any SQL Development Environment could be used also like Sqlplus or TOAD Eclipse BIRT Developer This example should be applicable to both Indigo and Ganymede versions And a Text Editing Software This example uses Notepad++, but any text editor like Notepad, Wordpad will do also. 28

30 SQL Developer: Find the report to extract SELECT * FROM Maximo.Reportdesign WHERE ImportedBy = ORDER BY ImportedDate DESC Enter Your Maximo UserID or whomever s UserID that produced the Ad-Hoc Report. DESIGN (Content) REPORT FILENAME 29

31 Text Editor: Save the Content Filename Remove the Double quotes from the beginning and end of the file content (red circles) 30

32 BIRT Developer: Open the file 31

33 BIRT Developer: Open Method Script This is where the SQL Script is located. The script is made up of a concatenated string of text. (purple text above) 32

34 SQL Developer: Extract the script I format the script to make it easier to read and easier to modify. Also, you may need to qualify the tables in the FROM statement with Maximo. (see red lines above) 33

35 SQL Developer: Modify the script 34

36 BIRT Developer: Update OPEN Script IMPORTANT! Always place a trailing space before the closing double-quote marks; This will insure that you don t accidently concatenate the last word with the first word on the next line. 35

37 BIRT Developer: Fetch Method Script 36

38 BIRT Developer: Update FETCH Script 37

39 BIRT Developer: Edit Data Set Dialog Click here to open the Edit Data Set Dialog 38

40 BIRT Developer: Check the changes After - Updating Open Script - Updating Fetch Script - Updating Data Set Columns 39

41 BIRT Developer: Edit the Layout 40

42 BIRT Developer: Insert Column Insert Column Here 41

43 BIRT Developer: Insert Column (Continued) 42

44 BIRT Developer: Add the new field NOTE: Drag the Avg. Unit Cost from the left Data Set over to the empty new column. 43

45 BIRT Developer: Format the new column 44

46 BIRT Developer: Preview the Report NOTE: This preview has Tivoli Software and IBM, which is the default for the Maximo templates. You can change the Master Page, if you want, but Maximo has a separate set of Master Pages, so you will need a copy of Maximo s Master Pages, if you want the header and icons to match. 45

47 Maximo: Import the file into Maximo NOTE: If you don t have access to the Report Administration application, then submit your updated *.rptdesign file to your Report or Maximo Administrator Search for your report by using the CreatedBy Column and entering your Maximo UserID 46

48 Maximo: Import the file into Maximo (Continued) 47

49 Maximo: Import the file into Maximo (Continued) Open the Import Report Dialog 48

50 Maximo: Import the file into Maximo (Continued) Browse to the *.rptdesign file 49

51 Maximo: Test the Report! Click Preview, then Submit 50

52 Encrypting database credentials Database connectivity file 51

53 Encrypting database credentials (continued) #<DataSourceName>.<propertyName>=value # driver for ORACLE # oracle.jdbc.oracledriver # sample url for ORACLE # jdbc:oracle:thin:@<host>:<port>:<sid> # sample schemaowner for ORACLE # maximo # driver for SQLServer # com.microsoft.sqlserver.jdbc.sqlserverdriver # sample url for SQLServer # jdbc:sqlserver://hostname:port;databasename=dbname;integratedsecurity=false; # sample schemaowner for SQLServer # dbo # driver for DB2 # com.ibm.db2.jcc.db2driver # sample url for DB2 # jdbc:db2://localhost:50000/dbalias # sample schemaowner for DB2 # maximo Exposed Username and Password maximodatasource.url= jdbc:db2://ibm-a5:50000/db2a maximodatasource.driver=com.ibm.db2.jcc.db2driver maximodatasource.username=wilson maximodatasource.password=wilson maximodatasource.schemaowner=maximo 52

54 Encrypting database credentials (continued) 1) Place your Username and Password into the mxreportdatasources.properties file 2) Navigate to the following folder: <V75>\reports\birt\tools (on the Maximo Server) 3) Execute encryptproperties.bat 4) This Utility will do the following: Add maximodatasource.encrypted=true Encrypt your Username and Password (see below) Add escape characters to URL maximodatasource.encrypted=true maximodatasource.schemaowner=maximo maximodatasource.username=yanjygupfrc\= maximodatasource.url=jdbc\:db2\://ibm-a5\:50000/db2a maximodatasource.password=mewnevcbrfubl54acl+jsg\=\= maximodatasource.driver=com.ibm.db2.jcc.db2driver 53

55 Questions? 54

56 Backup 55

57 Backup 1 This is a for a QBR, looking at Safety PM work that are past due, and they were due sometime in the past 6 months. I like this type of date range, as it floats. (woclass = 'WORKORDER' or woclass = 'ACTIVITY') and status not in ('COMP','CLOSE','CAN') and istask = 0 and safety = 1 and siteid = '1536' and (pmnum is not null or (parent is not null and jpnum is not null)) and targcompdate < add_months (trunc (sysdate, 'MM'), +0) and targcompdate > add_months (trunc (sysdate, 'MM'), -6) 56

58 Backup 2 This is a query from inventory to select items from a particular manufacturer, with a particular description. The description is in Item, thus the sub select. (status!= 'OBSOLETE' and manufacturer = 'GR01' and siteid = '1536' AND itemnum in (select itemnum from item where upper (description) like '%BELLOW%')) 57

59 Backup 3 This query is run from PM, and references the Route, Asset, and Route_stop tables. Using the Alias s x, y, Z (siteid = '1536' and (location = 'LGE.BLOCKS.C.LINE' or assetnum in (select x.assetnum from asset x where x.location = 'LGE.BLOCKS.C.LINE')) or route in (select route from routes Y where Y.route in (select Z.route from route_stop Z where Z.assetnum in (select x.assetnum from asset x where x.location = 'LGE.BLOCKS.C.LINE')))) 58

60 QBR Report Output Example 59

61 Backup 4 This is based on the user that is loged in, and the persongroup the user belongs to. I use it for the users start center, however it could be used for a qbr to pm s due this month.(notice nothing in RED) From Workorder ((woclass = 'WORKORDER' or woclass = 'ACTIVITY') and historyflag = 0 and istask = 0 and siteid in (select LOCATIONSITE from PERSON where PERSONID =:USER) and persongroup in (select persongroup from PERSONGROUPTEAM where RESPPARTYGROUP = :USER) and (pmnum is not null or (parent is not null and jpnum is not null)) and targcompdate >= add_months (trunc (sysdate, 'MM'), +0) and targcompdate < last_day(trunc(sysdate))+1) 60

62 Backup 5 To use the previous SQL on a start center. Click on Change Content 61

63 Click on Select Content, then Result Set 62

64 Rename the result set, and click Finished 63

65 Click on the Pencil on the right of the result set 64

66 Filter for the query you want to report on with your result set. 65

67 On the Column Display, at the min select wonum, then save 66

68 Under Chart Options check chart by default and select status in display by, then save, then finished 67

69 The result is an interactive report, showing what needs to be completed, and what has been completed. 68

70 Clicking on the Chart takes you to the workorder list. 69

71 BACKUP 7 FIND SPARE PARTS WITH NONE ON HAND (status!= 'OBSOLETE' and 'siteid = '1536 and location!= 'SPRING-HILL' and itemnum in (select s.itemnum from sparepart s where s.assetnum = 'BLK.OP068GR1A') and itemnum not in (select x.itemnum from INVBALANCES x where x.curbal >= '1' and x.location!= 'SPRING-HILL' )) In this I used an alias if s for the sparepart table and x for the invbalances table. So I reference two tables from inventory to get my result set. You can then create a QBR to generate on a set schedule, to get this information to the correct people in your organization. 70

IBM Maximo Asset Management. V7.5x Designer 371 Report Development Guide

IBM Maximo Asset Management. V7.5x Designer 371 Report Development Guide IBM Maximo Asset Management V7.5x Designer 371 Report Development Guide Copyright International Business Machines 2012 1 V7.5 Reporting...5 Report Types...6 Installation and Configuration...7 1. Download

More information

Tivoli IBM Tivoli Foundations Service Manager 1.2. Report Developer Guide

Tivoli IBM Tivoli Foundations Service Manager 1.2. Report Developer Guide Tivoli IBM Tivoli Foundations Service Manager 1.2 Report Developer Guide Note Before using this information and the product it supports, read the information in Notices on page 41. This edition applies

More information

Note: With v3.2, the DocuSign Fetch application was renamed DocuSign Retrieve.

Note: With v3.2, the DocuSign Fetch application was renamed DocuSign Retrieve. Quick Start Guide DocuSign Retrieve 3.2.2 Published April 2015 Overview DocuSign Retrieve is a windows-based tool that "retrieves" envelopes, documents, and data from DocuSign for use in external systems.

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Getting Started with Oracle Business Intelligence Publisher 11g Release 1 (11.1.1) E28374-02 September 2013 Welcome to Getting Started with Oracle Business Intelligence Publisher.

More information

How To Use Databook On A Microsoft Powerbook (Robert Birt) On A Pc Or Macbook 2 (For Macbook)

How To Use Databook On A Microsoft Powerbook (Robert Birt) On A Pc Or Macbook 2 (For Macbook) DataBook 1.1 First steps Congratulations! You downloaded DataBook, a powerful data visualization and navigation tool for relational databases from REVER. For Windows, after installing the program, launch

More information

IBM Tivoli Software. Maximo Business Intelligence Work Packs. Workorder, Asset Failure, Asset and Inventory Management

IBM Tivoli Software. Maximo Business Intelligence Work Packs. Workorder, Asset Failure, Asset and Inventory Management IBM Tivoli Software Maximo Asset Management Version 7.5 Releases Maximo Business Intelligence Work Packs Workorder, Asset Failure, Asset and Inventory Management Revision 4 Pam Denny Maximo Report Designer/Architect

More information

Getting Started using the SQuirreL SQL Client

Getting Started using the SQuirreL SQL Client Getting Started using the SQuirreL SQL Client The SQuirreL SQL Client is a graphical program written in the Java programming language that will allow you to view the structure of a JDBC-compliant database,

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Integration of Oracle BI Publisher with Oracle Business Intelligence Enterprise Edition Purpose This tutorial mainly covers how Oracle BI Publisher is integrated with

More information

WebSphere Business Monitor V6.2 KPI history and prediction lab

WebSphere Business Monitor V6.2 KPI history and prediction lab Copyright IBM Corporation 2009 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 6.2 LAB EXERCISE WebSphere Business Monitor V6.2 KPI history and prediction lab What this exercise is about... 1 Lab requirements...

More information

Chapter 4 Accessing Data

Chapter 4 Accessing Data Chapter 4: Accessing Data 73 Chapter 4 Accessing Data The entire purpose of reporting is to make sense of data. Therefore, it is important to know how to access data locked away in the database. In this

More information

Training Manual Version 1.0

Training Manual Version 1.0 State of Indiana Content Management System Open Text v.11.2 Training Manual Version 1.0 Developed by Table of Contents 1. Getting Started... 4 1.1 Logging In... 4 1.2 OpenText Menu...5 1.3 Selecting a

More information

Perceptive Intelligent Capture Solution Configration Manager

Perceptive Intelligent Capture Solution Configration Manager Perceptive Intelligent Capture Solution Configration Manager Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: February 2016 2015 Lexmark International Technology, S.A.

More information

Introduction to Microsoft Access 2013

Introduction to Microsoft Access 2013 Introduction to Microsoft Access 2013 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

Application Developer Guide

Application Developer Guide IBM Maximo Asset Management 7.1 IBM Tivoli Asset Management for IT 7.1 IBM Tivoli Change and Configuration Management Database 7.1.1 IBM Tivoli Service Request Manager 7.1 Application Developer Guide Note

More information

Tips and Tricks SAGE ACCPAC INTELLIGENCE

Tips and Tricks SAGE ACCPAC INTELLIGENCE Tips and Tricks SAGE ACCPAC INTELLIGENCE 1 Table of Contents Auto e-mailing reports... 4 Automatically Running Macros... 7 Creating new Macros from Excel... 8 Compact Metadata Functionality... 9 Copying,

More information

QW SQL Wizard (July 13, 2010)

QW SQL Wizard (July 13, 2010) QW SQL Wizard (July 13, 2010) QWSQLWIZ allows you to create a connection to an external database, supply an SQL query, and link the resulting data into a Quality Window application for analysis. Once the

More information

Database Forms and Reports Tutorial

Database Forms and Reports Tutorial Database Forms and Reports Tutorial Contents Introduction... 1 What you will learn in this tutorial... 2 Lesson 1: Create First Form Using Wizard... 3 Lesson 2: Design the Second Form... 9 Add Components

More information

Web Intelligence User Guide

Web Intelligence User Guide Web Intelligence User Guide Office of Financial Management - Enterprise Reporting Services 4/11/2011 Table of Contents Chapter 1 - Overview... 1 Purpose... 1 Chapter 2 Logon Procedure... 3 Web Intelligence

More information

DbSchema Tutorial with Introduction in SQL Databases

DbSchema Tutorial with Introduction in SQL Databases DbSchema Tutorial with Introduction in SQL Databases Contents Connect to the Database and Create First Tables... 2 Create Foreign Keys... 7 Create Indexes... 9 Generate Random Data... 11 Relational Data

More information

Toad for Data Analysts, Tips n Tricks

Toad for Data Analysts, Tips n Tricks Toad for Data Analysts, Tips n Tricks or Things Everyone Should Know about TDA Just what is Toad for Data Analysts? Toad is a brand at Quest. We have several tools that have been built explicitly for developers

More information

Generating Open For Business Reports with the BIRT RCP Designer

Generating Open For Business Reports with the BIRT RCP Designer Generating Open For Business Reports with the BIRT RCP Designer by Leon Torres and Si Chen The Business Intelligence Reporting Tools (BIRT) is a suite of tools for generating professional looking reports

More information

Published. Technical Bulletin: Use and Configuration of Quanterix Database Backup Scripts 1. PURPOSE 2. REFERENCES 3.

Published. Technical Bulletin: Use and Configuration of Quanterix Database Backup Scripts 1. PURPOSE 2. REFERENCES 3. Technical Bulletin: Use and Configuration of Quanterix Database Document No: Page 1 of 11 1. PURPOSE Quanterix can provide a set of scripts that can be used to perform full database backups, partial database

More information

Introduction to Microsoft Access 2010

Introduction to Microsoft Access 2010 Introduction to Microsoft Access 2010 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

The software shall provide the necessary tools to allow a user to create a Dashboard based on the queries created.

The software shall provide the necessary tools to allow a user to create a Dashboard based on the queries created. IWS BI Dashboard Template User Guide Introduction This document describes the features of the Dashboard Template application, and contains a manual the user can follow to use the application, connecting

More information

State of Indiana Content Management System. Training Manual Version 2.0. Developed by

State of Indiana Content Management System. Training Manual Version 2.0. Developed by State of Indiana Content Management System Training Manual Version 2.0 Developed by Table of Contents Getting Started... 4 Logging In... 5 RedDot Menu... 6 Selecting a Project... 7 Start Page... 8 Creating

More information

Using SQL Server Management Studio

Using SQL Server Management Studio Using SQL Server Management Studio Microsoft SQL Server Management Studio 2005 is a graphical tool for database designer or programmer. With SQL Server Management Studio 2005 you can: Create databases

More information

Oracle Business Intelligence Publisher: Create Reports and Data Models. Part 1 - Layout Editor

Oracle Business Intelligence Publisher: Create Reports and Data Models. Part 1 - Layout Editor Oracle Business Intelligence Publisher: Create Reports and Data Models Part 1 - Layout Editor Pradeep Kumar Sharma Senior Principal Product Manager, Oracle Business Intelligence Kasturi Shekhar Director,

More information

Embarcadero Rapid SQL Developer 2.0 User Guide

Embarcadero Rapid SQL Developer 2.0 User Guide Embarcadero Rapid SQL Developer 2.0 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

IBM Tivoli Software. Document Version 8. Maximo Asset Management Version 7.5 Releases. QBR (Ad Hoc) Reporting and Report Object Structures

IBM Tivoli Software. Document Version 8. Maximo Asset Management Version 7.5 Releases. QBR (Ad Hoc) Reporting and Report Object Structures IBM Tivoli Software Maximo Asset Management Version 7.5 Releases QBR (Ad Hoc) Reporting and Report Object Structures Document Version 8 Pam Denny Maximo Report Designer/Architect CONTENTS Revision History...

More information

FileMaker Pro and Microsoft Office Integration

FileMaker Pro and Microsoft Office Integration FileMaker Pro and Microsoft Office Integration page Table of Contents Executive Summary...3 Introduction...3 Top Reasons to Read This Guide...3 Before You Get Started...4 Downloading the FileMaker Trial

More information

Top 10 Oracle SQL Developer Tips and Tricks

Top 10 Oracle SQL Developer Tips and Tricks Top 10 Oracle SQL Developer Tips and Tricks December 17, 2013 Marc Sewtz Senior Software Development Manager Oracle Application Express Oracle America Inc., New York, NY The following is intended to outline

More information

Penn State University (PSU)

Penn State University (PSU) Penn State University (PSU) FAMS Maximo Basics Start Center, Querying, Navigation, Reporting, and Desktop Requisitions Prepared By Revision History Revision Date: February 4, 2014 Revision Number: 1 Revision

More information

User Guide. Version 3.2. Copyright 2002-2009 Snow Software AB. All rights reserved.

User Guide. Version 3.2. Copyright 2002-2009 Snow Software AB. All rights reserved. Version 3.2 User Guide Copyright 2002-2009 Snow Software AB. All rights reserved. This manual and computer program is protected by copyright law and international treaties. Unauthorized reproduction or

More information

WebFOCUS BI Portal: S.I.M.P.L.E. as can be

WebFOCUS BI Portal: S.I.M.P.L.E. as can be WebFOCUS BI Portal: S.I.M.P.L.E. as can be Author: Matthew Lerner Company: Information Builders Presentation Abstract: This hands-on session will introduce attendees to the new WebFOCUS BI Portal. We will

More information

Integrating with BarTender Integration Builder

Integrating with BarTender Integration Builder Integrating with BarTender Integration Builder WHITE PAPER Contents Overview 3 Understanding BarTender's Native Integration Platform 4 Integration Builder 4 Administration Console 5 BarTender Integration

More information

DataPA OpenAnalytics End User Training

DataPA OpenAnalytics End User Training DataPA OpenAnalytics End User Training DataPA End User Training Lesson 1 Course Overview DataPA Chapter 1 Course Overview Introduction This course covers the skills required to use DataPA OpenAnalytics

More information

DbSchema Tutorial with Introduction in MongoDB

DbSchema Tutorial with Introduction in MongoDB DbSchema Tutorial with Introduction in MongoDB Contents MySql vs MongoDb... 2 Connect to MongoDb... 4 Insert and Query Data... 5 A Schema for MongoDb?... 7 Relational Data Browse... 8 Virtual Relations...

More information

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide Open Crystal Reports From the Windows Start menu choose Programs and then Crystal Reports. Creating a Blank Report Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick

More information

How to Create Dashboards. Published 2014-08

How to Create Dashboards. Published 2014-08 How to Create Dashboards Published 2014-08 Table of Content 1. Introduction... 3 2. What you need before you start... 3 3. Introduction... 3 3.1. Open dashboard Example 1... 3 3.2. Example 1... 4 3.2.1.

More information

What s New in Version 10 Details for Web Essentials

What s New in Version 10 Details for Web Essentials What s New in Version 10 Details for Web Essentials TABLE OF CONTENTS Overview... 3 Dashboard Module... 3 General Changes... 3 New Proposal... 3 Create Proposal in Word... 5 Create New Proposal in Excel...

More information

Jet Data Manager 2012 User Guide

Jet Data Manager 2012 User Guide Jet Data Manager 2012 User Guide Welcome This documentation provides descriptions of the concepts and features of the Jet Data Manager and how to use with them. With the Jet Data Manager you can transform

More information

SQL Basics. Introduction to Standard Query Language

SQL Basics. Introduction to Standard Query Language SQL Basics Introduction to Standard Query Language SQL What Is It? Structured Query Language Common Language For Variety of Databases ANSI Standard BUT. Two Types of SQL DML Data Manipulation Language

More information

Oracle Managed File Getting Started - Transfer FTP Server to File Table of Contents

Oracle Managed File Getting Started - Transfer FTP Server to File Table of Contents Oracle Managed File Getting Started - Transfer FTP Server to File Table of Contents Goals... 3 High- Level Steps... 4 Basic FTP to File with Compression... 4 Steps in Detail... 4 MFT Console: Login and

More information

Programming with SQL

Programming with SQL Unit 43: Programming with SQL Learning Outcomes A candidate following a programme of learning leading to this unit will be able to: Create queries to retrieve information from relational databases using

More information

CloudCTI Recognition Configuration Tool Manual

CloudCTI Recognition Configuration Tool Manual CloudCTI Recognition Configuration Tool Manual 2014 v1.0 Contents Recognition Configuration Tool... 2 Welcome to the Recognition Configuration Tool... 2 Getting started... 2 Listed applications... 4 Other

More information

Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5.

Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5. 1 2 3 4 Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5. It replaces the previous tools Database Manager GUI and SQL Studio from SAP MaxDB version 7.7 onwards

More information

SharePoint How To s / Team Sites 1of 6

SharePoint How To s / Team Sites 1of 6 SharePoint How To s / Team Sites of 6 SharePoint Server 007 Team Sites are Web sites created from a template and designed for team collaboration. They are hosted on the corporate network. Team Sites are

More information

Build an ArcGIS Online Application

Build an ArcGIS Online Application Build an ArcGIS Online Application Sign into ArcGIS Online for Maryland 1. Open a web browser 2. Go to URL http://maryland.maps.arcgis.com/ 3. Click Sign In in the upper right corner of the web page 4.

More information

Advanced BIAR Participant Guide

Advanced BIAR Participant Guide State & Local Government Solutions Medicaid Information Technology System (MITS) Advanced BIAR Participant Guide October 28, 2010 HP Enterprise Services Suite 100 50 West Town Street Columbus, OH 43215

More information

Accessing Your Database with JMP 10 JMP Discovery Conference 2012 Brian Corcoran SAS Institute

Accessing Your Database with JMP 10 JMP Discovery Conference 2012 Brian Corcoran SAS Institute Accessing Your Database with JMP 10 JMP Discovery Conference 2012 Brian Corcoran SAS Institute JMP provides a variety of mechanisms for interfacing to other products and getting data into JMP. The connection

More information

IBM Tivoli Software. Version 7.5 Report Planning Guide Document Version 4

IBM Tivoli Software. Version 7.5 Report Planning Guide Document Version 4 IBM Tivoli Software Maximo Asset Management Version 7 Releases Version 7.5 Report Planning Guide Document Version 4 Pam Denny Maximo Report Designer/Architect CONTENTS Revision History... iv 1 Overview...5

More information

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD)

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD) USING MYWEBSQL MyWebSQL is a database web administration tool that will be used during LIS 458 & CS 333. This document will provide the basic steps for you to become familiar with the application. 1. To

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 1 P age Table of Contents Table of Contents... Error! Bookmark

More information

Galaxy Software Addendum

Galaxy Software Addendum Galaxy Software Addendum for Importing Users from Active Directory Includes Encryption of Connection Strings Page 1 of 9 System Galaxy Version 10.3 How to Guide For Importing users from Active Directory

More information

Oracle Database: SQL and PL/SQL Fundamentals

Oracle Database: SQL and PL/SQL Fundamentals Oracle University Contact Us: 1.800.529.0165 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This course is designed to deliver the fundamentals of SQL and PL/SQL along

More information

Using the SQL Server Linked Server Capability

Using the SQL Server Linked Server Capability Using the SQL Server Linked Server Capability SQL Server s Linked Server feature enables fast and easy integration of SQL Server data and non SQL Server data, directly in the SQL Server engine itself.

More information

Enterprise Reporting Advanced Web Intelligence Training. Enterprise Reporting Services

Enterprise Reporting Advanced Web Intelligence Training. Enterprise Reporting Services Enterprise Reporting Advanced Web Intelligence Training Enterprise Reporting Services Table of Contents Chapter Page 1 Overview 4 2 Web Intelligence Access 8 3 BI Launch Pad Navigation 12 4 Nested Query

More information

Retrieving Data Using the SQL SELECT Statement. Copyright 2006, Oracle. All rights reserved.

Retrieving Data Using the SQL SELECT Statement. Copyright 2006, Oracle. All rights reserved. Retrieving Data Using the SQL SELECT Statement Objectives After completing this lesson, you should be able to do the following: List the capabilities of SQL SELECT statements Execute a basic SELECT statement

More information

Intelligent Event Processer (IEP) Tutorial Detection of Insider Stock Trading

Intelligent Event Processer (IEP) Tutorial Detection of Insider Stock Trading Intelligent Event Processer (IEP) Tutorial Detection of Insider Stock Trading Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. November 2008 Page 1 of 29 Contents Setting Up the

More information

Video Administration Backup and Restore Procedures

Video Administration Backup and Restore Procedures CHAPTER 12 Video Administration Backup and Restore Procedures This chapter provides procedures for backing up and restoring the Video Administration database and configuration files. See the following

More information

WebSphere Business Monitor V6.2 Business space dashboards

WebSphere Business Monitor V6.2 Business space dashboards Copyright IBM Corporation 2009 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 6.2 LAB EXERCISE WebSphere Business Monitor V6.2 What this exercise is about... 2 Lab requirements... 2 What you should

More information

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...

More information

INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO:

INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO: INTRODUCTION: You can extract data (i.e. the total cost report) directly from the Truck Tracker SQL Server database by using a 3 rd party data tools such as Excel or Crystal Reports. Basically any software

More information

Online Backup Client User Manual Mac OS

Online Backup Client User Manual Mac OS Online Backup Client User Manual Mac OS 1. Product Information Product: Online Backup Client for Mac OS X Version: 4.1.7 1.1 System Requirements Operating System Mac OS X Leopard (10.5.0 and higher) (PPC

More information

Online Backup Client User Manual Mac OS

Online Backup Client User Manual Mac OS Online Backup Client User Manual Mac OS 1. Product Information Product: Online Backup Client for Mac OS X Version: 4.1.7 1.1 System Requirements Operating System Mac OS X Leopard (10.5.0 and higher) (PPC

More information

Knowledgebase Article

Knowledgebase Article Company web site: Support email: Support telephone: +44 20 3287-7651 +1 646 233-1163 2 EMCO Network Inventory 5 provides a built in SQL Query builder that allows you to build more comprehensive

More information

Two new DB2 Web Query options expand Microsoft integration As printed in the September 2009 edition of the IBM Systems Magazine

Two new DB2 Web Query options expand Microsoft integration As printed in the September 2009 edition of the IBM Systems Magazine Answering the Call Two new DB2 Web Query options expand Microsoft integration As printed in the September 2009 edition of the IBM Systems Magazine Written by Robert Andrews robert.andrews@us.ibm.com End-user

More information

Webapps Vulnerability Report

Webapps Vulnerability Report Tuesday, May 1, 2012 Webapps Vulnerability Report Introduction This report provides detailed information of every vulnerability that was found and successfully exploited by CORE Impact Professional during

More information

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com Sage 500 ERP Intelligence Reporting Getting Started Guide 27.11.2012 Table of Contents 1.0 Getting started 3 2.0 Managing your reports 10 3.0 Defining report properties 18 4.0 Creating a simple PivotTable

More information

"SQL Database Professional " module PRINTED MANUAL

SQL Database Professional  module PRINTED MANUAL "SQL Database Professional " module PRINTED MANUAL "SQL Database Professional " module All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or

More information

Results CRM 2012 User Manual

Results CRM 2012 User Manual Results CRM 2012 User Manual A Guide to Using Results CRM Standard, Results CRM Plus, & Results CRM Business Suite Table of Contents Installation Instructions... 1 Single User & Evaluation Installation

More information

How To Contact The Author... 4. Introduction... 5. What You Will Need... 6. The Basic Report... 7. Adding the Parameter... 9

How To Contact The Author... 4. Introduction... 5. What You Will Need... 6. The Basic Report... 7. Adding the Parameter... 9 2011 Maximo Query with Open Source BIRT Sometimes an organisation needs to provide certain users with simple query tools over their key applications rather than complete access to use the application.

More information

Practical Example: Building Reports for Bugzilla

Practical Example: Building Reports for Bugzilla Practical Example: Building Reports for Bugzilla We have seen all the components of building reports with BIRT. By this time, we are now familiar with how to navigate the Eclipse BIRT Report Designer perspective,

More information

IBM Maximo Asset Management V7.6 Overview. January 8, 2015

IBM Maximo Asset Management V7.6 Overview. January 8, 2015 IBM Maximo Asset Management V7.6 Overview January 8, 2015 IBM Maximo Historical Releases Maximo V7.1 (May 2008) Maximo V7.5 (Apr 2011) Maximo V7.6 (Dec 12, 2014) IBM End of Support for V7.1 Is April 30,

More information

Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide

Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide Decision Support AITS University Administration Web Intelligence Rich Client 4.1 User Guide 2 P age Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence

More information

Sitecore InDesign Connector 1.1

Sitecore InDesign Connector 1.1 Sitecore Adaptive Print Studio Sitecore InDesign Connector 1.1 - User Manual, October 2, 2012 Sitecore InDesign Connector 1.1 User Manual Creating InDesign Documents with Sitecore CMS User Manual Page

More information

Maximo Business Intelligence Reporting Roadmap Washington DC Users Group

Maximo Business Intelligence Reporting Roadmap Washington DC Users Group Maximo Business Intelligence Reporting Roadmap Washington DC Users Group Pam Denny, IBM Email: pdenny@us.ibm.com Twitter: andbflo_denny May 2014 Please note IBM s statements regarding its plans, directions,

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

More information

Data Tool Platform SQL Development Tools

Data Tool Platform SQL Development Tools Data Tool Platform SQL Development Tools ekapner Contents Setting SQL Development Preferences...5 Execution Plan View Options Preferences...5 General Preferences...5 Label Decorations Preferences...6

More information

BI 4.1 Quick Start Java User s Guide

BI 4.1 Quick Start Java User s Guide BI 4.1 Quick Start Java User s Guide BI 4.1 Quick Start Guide... 1 Introduction... 4 Logging in... 4 Home Screen... 5 Documents... 6 Preferences... 8 Web Intelligence... 12 Create a New Web Intelligence

More information

Business Insight Report Authoring Getting Started Guide

Business Insight Report Authoring Getting Started Guide Business Insight Report Authoring Getting Started Guide Version: 6.6 Written by: Product Documentation, R&D Date: February 2011 ImageNow and CaptureNow are registered trademarks of Perceptive Software,

More information

User Guide. Trade Finance Global. Reports Centre. October 2015. nordea.com/cm OR tradefinance Name of document 8/8 2015/V1

User Guide. Trade Finance Global. Reports Centre. October 2015. nordea.com/cm OR tradefinance Name of document 8/8 2015/V1 User Guide Trade Finance Global Reports Centre October 2015 nordea.com/cm OR tradefinance Name of document 2015/V1 8/8 Table of Contents 1 Trade Finance Global (TFG) Reports Centre Overview... 4 1.1 Key

More information

PSW Guide. Version 4.7 April 2013

PSW Guide. Version 4.7 April 2013 PSW Guide Version 4.7 April 2013 Contents Contents...2 Documentation...3 Introduction...4 Forms...5 Form Entry...7 Form Authorisation and Review... 16 Reporting in the PSW... 17 Other Features of the Professional

More information

Access II 2007 Workshop

Access II 2007 Workshop Access II 2007 Workshop Query & Report I. Review Tables/Forms Ways to create tables: tables, templates & design Edit tables: new fields & table properties Import option Link tables: Relationship Forms

More information

Personal Portfolios on Blackboard

Personal Portfolios on Blackboard Personal Portfolios on Blackboard This handout has four parts: 1. Creating Personal Portfolios p. 2-11 2. Creating Personal Artifacts p. 12-17 3. Sharing Personal Portfolios p. 18-22 4. Downloading Personal

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Creating Interactive Dashboards and Using Oracle Business Intelligence Answers Purpose This tutorial shows you how to build, format, and customize Oracle Business

More information

Online Backup Client User Manual

Online Backup Client User Manual For Mac OS X Software version 4.1.7 Version 2.2 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by other means.

More information

Welcome to the topic on Master Data and Documents.

Welcome to the topic on Master Data and Documents. Welcome to the topic on Master Data and Documents. In this topic, we will look at master data in SAP Business One. After this session you will be able to view a customer record to explain the concept of

More information

IBM Emptoris Contract Management. Release Notes. Version 10.0.1.5 GI13-3418-09

IBM Emptoris Contract Management. Release Notes. Version 10.0.1.5 GI13-3418-09 IBM Emptoris Management Release Notes Version 10.0.1.5 GI13-3418-09 Note: Before using this information and the product it supports, read the information in Notices on page 75. Copyright IBM Corporation

More information

Exchanger XML Editor - Data Import

Exchanger XML Editor - Data Import Exchanger XML Editor - Data Import Copyright 2005 Cladonia Ltd Table of Contents Data Import... 2 Import From Text File... 2 Import From Excel File... 3 Import From Database Table... 4 Import From SQL/XML

More information

Magenta CMS Training: RAF Station/ RAF Sport websites

Magenta CMS Training: RAF Station/ RAF Sport websites Magenta CMS Training: RAF Station/ RAF Sport websites ktownsend@binaryvision.com 0207 490 1010 Introduction What is a website content management system? The content management system, or CMS, is software

More information

User Guide. Analytics Desktop Document Number: 09619414

User Guide. Analytics Desktop Document Number: 09619414 User Guide Analytics Desktop Document Number: 09619414 CONTENTS Guide Overview Description of this guide... ix What s new in this guide...x 1. Getting Started with Analytics Desktop Introduction... 1

More information

for Sage 100 ERP Business Insights Overview Document

for Sage 100 ERP Business Insights Overview Document for Sage 100 ERP Business Insights Document 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein are registered

More information

Create a New Database in Access 2010

Create a New Database in Access 2010 Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...

More information

INTRODUCTION SAHAJ ACCOUNTING

INTRODUCTION SAHAJ ACCOUNTING INTRODUCTION Welcome to SAHAJ ACCOUNTING software, not just accounting, complete business solutions. Whether you plan to manage your personal accounts or the finances of your business, you can use SAHAJ

More information

HR Onboarding Solution

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

More information

Developing SQL and PL/SQL with JDeveloper

Developing SQL and PL/SQL with JDeveloper Seite 1 von 23 Developing SQL and PL/SQL with JDeveloper Oracle JDeveloper 10g Preview Technologies used: SQL, PL/SQL An Oracle JDeveloper Tutorial September 2003 Content This tutorial walks through the

More information

Participant Guide RP301: Ad Hoc Business Intelligence Reporting

Participant Guide RP301: Ad Hoc Business Intelligence Reporting RP301: Ad Hoc Business Intelligence Reporting State of Kansas As of April 28, 2010 Final TABLE OF CONTENTS Course Overview... 4 Course Objectives... 4 Agenda... 4 Lesson 1: Reviewing the Data Warehouse...

More information

DbVisualizer 9.2 Users Guide. DbVisualizer 9.2 Users Guide

DbVisualizer 9.2 Users Guide. DbVisualizer 9.2 Users Guide DbVisualizer 9.2 Users Guide 1 of 428 Table of Contents 1 DbVisualizer 9.2 12 2 Getting Started 13 2.1 Downloading 13 2.2 Installing 13 2.2.1 Installing with an Installer 14 2.2.2 Installation from an

More information

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the SAI reports... 3 Running, Copying and Pasting reports... 4 Creating and linking a report... 5 Auto e-mailing reports...

More information