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

Size: px
Start display at page:

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

Transcription

1 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. In this case it may be appropriate to create your query tool using BIRT and format the output to resemble the original application. This is part one of a two part series. Paul Bappoo Paul@BirtReporting.com 1 February 2011

2 CONTENTS How To Contact The Author... 4 Introduction... 5 What You Will Need... 6 The Basic Report... 7 Adding the Parameter... 9 Laying Out the Report The Header Section The Detail Section The line detail fields Conclusion More Information

3 Paul Bappoo Query Maximo with Open Source BIRT (Part 1) COPYRIGHT 2011 by Paul Bappoo, all rights reserved. This guide is furnished under license and may be used or copied only in accordance withthe terms of such license. The content of this guide is furnished for informational use only, is subject to change without notice, andshould not be construed as a commitment by the author. The author assumes no responsibility or liability for any errors or inaccuraciesthat may appear in this guide. Except as permitted by such license, no part of this publication may be reproduced, stored in a retrieval system or transmitted, inany form or by any means, electronic, mechanical, recording or otherwise, without the prior written permission of the author. All product and company names are trademarks or registered trademarks oftheir respective holders. 3

4 HOW TO CONTACT THE AUTHOR Web Site: Paul Bappoo is the author of BIRT for Beginners (which is available in paperback from BIRTReporting.com, Amazon and Barnes and Noble amongst others) and the BIRT for Maximo Self Study Workbook, also available from BIRTReporting.com. He has been an international technical software consultant and involved with computers for over 30 years. Paul has an interest in BIRT reporting, enterprise application integration, automated software testing, computer based training and enterprise system implementation. Paul runs the BIRT User Group UK and is a member of the BIRT-Exchange Advisory Council. He would be delighted to hear from you with your tips, tricks and stories about your usage of BIRT. If you have a question, a need for training or consulting or great tip to share with the community then drop him a line. 4

5 INTRODUCTION Do you have Maximo users who, for the most part, only need to run queries over your Maximo data? Most large organisations do and if you have not yet identified them then now may be the time. Maximo 7.1 and above, of course, comes with BIRT as the budled report writer software, however the open source community have developed BIRT beyond this version and at the time of writing is the current release. BIRT can be used for more than simple reporting duties so in this tutorial we look at how to use the latest version of open source BIRT as a query tool over Maximo, running from outside the Maximo environment and how to format the resultant reports to resemble the Maximo screen that the user would see if they were logged on to Maximo itself. Even if you don t wish to report over Maximo, this tutorial provides a valuable insight into the advanced formatting capabilities of BIRT. Here is a screenshot of the report that we are going to build: The complete design files and all of the image files that were used in the creation of this report are available free of charge to readers of my book BIRT for Beginners or readers of my BIRT for Maximo Self Study Workbook. Just visit the readers area of my web site: 5

6 WHAT YOU WILL NEED In order to create the look and feel of this report you will need some graphic files. You can create these yourself with any image editing software or if you are a reader of my books then you can download the files from my web site. The files are as follows: MXReportHeader.jpg This is an image I created to sit at the top of all the reports and resembles the Maximo header image. Of course you can create your own image to resemble your corporate reporting style or just use mine. MXArrow.jpg This is the arrow that sits to the left of each detail line of the report. In this example we are displaying purchase order lines. In the Maximo application this image would be active and when clicked on it would reveal more details about the parchase order line. In this case it is a static image, but could easily be made into a hyperlink which would run a secondary report to show the line details. MXFindBG.jpg This image is the background to the search toolbar, that sits just beneath the main report header. It is a thin sliver of an image and the report design uses standard HTML functionality to repeat it to fill the entire width of the search bar. MXLookupBtn.gif This image is the hyperlink that actually runs the report, once the user has selected the PO Number that they want to view. You will also need a copy of the open source BIRT Report Designer and since this report uses a Java Server Page (JSP), you will need something with which to create and edit one of those. Luckily the BIRT designer is Eclipse based and so forms an excellent choice for JSP editing too. For details on how to download and intall the BIRT Designer please see my report: The Complete Getting Started Guide to BIRT which is available for free from the members area of 6

7 THE BASIC REPORT The BIRT report at the heart of this example is a very simple listing of purchase order lines, combined with a little information from the report header. When creating a report with BIRT for Maximo you need to use the scripted data source method, however, when creating a report which is designed to run outside of Maximo there is a much easier way to create a data source and a data set. Again, follow the example provided in my beginners guide: The Complete Getting Started Guide to BIRT which is available for free from the members area of To create the example report I used for the Maximo PO Lines I created 2 datasets, one to give me a list of all the PO numbers so that the user could select one easily and one to source all the PO and POLine data. The SQL statement for the first was as follows: select distinct PONum from PO And the second was like this: select po.description as POHeadDesc, poline.*, left(poline.description,60) as LineDesc, left(po.description,50) as description, po.status, po.totalcost from POLine inner join po on po.ponum = poline.ponum where poline.ponum =? Of course you can use your own SQL and select whatever data you like for your example. TIP: It is always a good idea to write your SQL statements in a SQL query editor such as TOAD or MS SQL Enterprise Manager to ensure they work, before moving them into BIRT. 7

8 The question mark in the second SQL statement indicates that a parameter will be used to provide the value to the SQL at runtime. In my example this is going to be the PO Number selected by the user. Once you have created your two datasets you should be able to see them in the BIRT Designer as follows: POLines is the data set that returns the line details that will be used to populate the report and POList is the data set that returns the list of PO s that the user will select from at runtime. 8

9 ADDING THE PARAMETER To add the report parameter that will be selected by the user at runtime, right click on the Report Parameters node and select New Parameter. 9

10 Complete the parameter dialogue as shown: Notice how the display type for the parameter is set to Combo Box this is because we want the user to be able to either select from a drop down list of PO numbers or type in their own PO number. The selection list values are set as Dynamic and the data set is specified as POList (remember that s the one that provides the list of PO numbers to select from). I also like to provide a default value of a known database record so that when I test the data set in the next stage, I know if it is working! 10

11 Next we need to join our report parameter to the data set, so reopen the dataset and select the Parameters node. You will see an entry here called param_1 this is created automatically by BIRT because you put that question mark into the original SQL statement. Select it and click the Edit button. 11

12 Now in the Linked To Report Parameter field, select the report parameter that you just created. That s it, now when the report runs, the user will be asked to select or type a PO Number and this will be passed into the report SQL replacing the question mark and thereby filtering the report to select all the lines for just the one selected PO. Try this now by previewing the data set results and ensure that data is being returned. This is where the default parameter value comes in handy, because without it, no data would be returned! 12

13 LAYING OUT THE REPORT Next you will want to set up 2 tables on your report layout andpopulate them with fields from your data set. The first table will hold details of the PO header information so will not require any detail or footer rows, sinceit is supposed to only display a singlerecord. Create the table with 14 columns and 5 header rows. You will need to edit the table that BIRT creates for you by default to add in the additional headers and remove the footer. THE HEADER SECTION Add the following fields to the third header row: PONum Description SiteID Status TotalCost Add an appropriate label in front of each field and leave a single column empty between each label/field group, as in the screen shot below. Format the text fields as follows for the field labels: 13

14 And as follows for the data items: Next highlight all the cells in the second row, right click and select Merge Cells. This creates one single cell that fills theentire second row. Place a label in this cell and set the general and border properties as follows: 14

15 The label border colour as for most of the colours in this example, is defined using a custom colour. To create the custom colour, click the colour box, click Define Custom Colours, select the first Custom Colour box, then enter the RGB values into the appropriate fields and click Add to Custom Colours. The colour will then be available to select from the palette for use in other areas of your report. You may need to play around with the left/right justification of the fields and format the number fields appropriately. To format number fields to show two decimal places, select each number field that you wish to format and set the properties as per the screen shot below. 15

16 THE DETAIL SECTION Now we need to create the header for the detail lines section, which will appear in the second of the two tables. I chose to place a label in the fourth row of the first table, but it could equally be placed into the header row of the second table. Once the field is placed, set the background colour as per the screen shot below and enter the text PO Lines 16

17 THE LINE DETAIL FIELDS From the POLines dataset place the following fields into the second table, but this time place them into the detail section, rather than the header. POLineNum ItemNum LineDesc OrderQuantity OrderUnit UnitCost Discount Tax1 LineCost LoadedCost Notice again that we separate the individual columns with a blank column as in the screenshot below: When you add the data fields you will see that the headers are added automatically for you, but since they adopt the underlying field names, you may wish to edit them to a more appropriate value. Next we need to format the column headers and the field values. Here is the formatting for the column headers: 17

18 And here is the formatting for the data items: Finally the report date is added to the end of the report. BIRT does this by default and it is part of the master page. Click on the master page tab, scroll to the end and modfiy the font and background colours as we have done previously. 18

19 CONCLUSION That s about it for the BIRT report part of this. Preview the report in your browser and see how it looks: You will notice of course that the header image and the parameter selection are still not present and the default BIRT viewer colour scheme is occupying the top of the report window. In order to place a header image and paramter on the screen, above the report header objects we need to invoke a little Java Server Page (JSP) and that will be the subject of the next tutorial in this series. I hope you enjoy creating this Maximo styled report and I hope it is useful for you. If you have any difficulties please swing by the forum at BIRTReporting.com and post your query there. Our members are a helpful bunch and I pop on there myself from time to time so there is a good chance you will find a solution to your issue. Also, don t forget to become a member of BIRTReporting.com, it s free to join and you will automatically be alerted when the next part of this tutorial becomes available. Plus you will get free access to the members area where you can find many other tutorials like this. Finally, don t forget that if you are a reader of either of my two books, BIRT for Beginners or BIRT for Maximo Self Study Workbook then you can download the source files for this tutorial from the readers area. This will allow you to use a pre-prepared BIRT report as a template for creating these examples and any future Maximo styled reports that you need. 19

20 MORE INFORMATION This book, written by Paul Bappoo, the founder of the BIRT User Group UK presents an overview of the open source BIRT tools and the commercial enhancements available from Actuate, including... Eclipse BIRT Designer, Actuate BIRT Designer, iserver Express, Interactive BIRT viewer, Actuate BIRT Studio, BIRT Spreadsheet Designer With walkthrough tutorials of the main features, including screenshots, from installation through data selection to formatting reports and fully graphical Flash charting this book will have you creating your own reports from scratch in only a couple of hours. If you are too busy to spend days learning software and want tangible results fast then BIRT For Beginners is for you. When you buy the book you will automatically get access to the readers section of my web site which includes BIRT report request forms that you can distribute to your end users, extra chapters in PDF format and an ever growing library of reports, tutorials, reviews, tips & tricks. Buy the book and get free membership of BIRT Reporting and the BIRT User Group UK at: Please feel free to share this address with your colleagues and inspire them to use BIRT to create great looking reports. I look forward to your feedback so please feel free to send me an and let me know how you get on with BIRT, provide feedback on this guide or share your tips and tricks. Paul Bappoo Paul@BirtReporting.com 20

Use the Microsoft Office Word Add-In to Create a Source Document Template for Microsoft Dynamics AX 2012 WHITEPAPER

Use the Microsoft Office Word Add-In to Create a Source Document Template for Microsoft Dynamics AX 2012 WHITEPAPER Use the Microsoft Office Word Add-In to Create a Source Document Template for Microsoft Dynamics AX 2012 WHITEPAPER Microsoft Office Word Add-Ins Whitepaper Junction Solutions documentation 2012 All material

More information

Creating Online Surveys with Qualtrics Survey Tool

Creating Online Surveys with Qualtrics Survey Tool Creating Online Surveys with Qualtrics Survey Tool Copyright 2015, Faculty and Staff Training, West Chester University. A member of the Pennsylvania State System of Higher Education. No portion of this

More information

As in the example above, a Budget created on the computer typically has:

As in the example above, a Budget created on the computer typically has: Activity Card Create a How will you ensure that your expenses do not exceed what you planned to invest or spend? You can create a budget to plan your expenditures and earnings. As a family, you can plan

More information

Creating and Managing Online Surveys LEVEL 2

Creating and Managing Online Surveys LEVEL 2 Creating and Managing Online Surveys LEVEL 2 Accessing your online survey account 1. If you are logged into UNF s network, go to https://survey. You will automatically be logged in. 2. If you are not logged

More information

6 th Annual EclipseCon Introduction to BIRT Report Development. John Ward

6 th Annual EclipseCon Introduction to BIRT Report Development. John Ward 6 th Annual EclipseCon Introduction to BIRT Report Development John Ward BIRT and Us Who am I? Who are you? Who am I? John Ward, BIRT user Independent BIRT Enthusiast Author: Practical Data Analysis and

More information

REP200 Using Query Manager to Create Ad Hoc Queries

REP200 Using Query Manager to Create Ad Hoc Queries Using Query Manager to Create Ad Hoc Queries June 2013 Table of Contents USING QUERY MANAGER TO CREATE AD HOC QUERIES... 1 COURSE AUDIENCES AND PREREQUISITES...ERROR! BOOKMARK NOT DEFINED. LESSON 1: BASIC

More information

InfoView User s Guide. BusinessObjects Enterprise XI Release 2

InfoView User s Guide. BusinessObjects Enterprise XI Release 2 BusinessObjects Enterprise XI Release 2 InfoView User s Guide BusinessObjects Enterprise XI Release 2 Patents Trademarks Copyright Third-party contributors Business Objects owns the following U.S. patents,

More information

SECTION 5: Finalizing Your Workbook

SECTION 5: Finalizing Your Workbook SECTION 5: Finalizing Your Workbook In this section you will learn how to: Protect a workbook Protect a sheet Protect Excel files Unlock cells Use the document inspector Use the compatibility checker Mark

More information

Working with the new enudge responsive email styles

Working with the new enudge responsive email styles Working with the new enudge responsive email styles This tutorial assumes that you have added one of the mobile responsive colour styles to your email campaign contents. To add an enudge email style to

More information

ADOBE DREAMWEAVER CS3 TUTORIAL

ADOBE DREAMWEAVER CS3 TUTORIAL ADOBE DREAMWEAVER CS3 TUTORIAL 1 TABLE OF CONTENTS I. GETTING S TARTED... 2 II. CREATING A WEBPAGE... 2 III. DESIGN AND LAYOUT... 3 IV. INSERTING AND USING TABLES... 4 A. WHY USE TABLES... 4 B. HOW TO

More information

Creating Mailing Lables in IBM Cognos 8 Report Studio

Creating Mailing Lables in IBM Cognos 8 Report Studio Tip or Technique Creating Mailing Lables in IBM Cognos 8 Report Studio Product(s): IBM Cognos 8.4 Area of Interest: Reporting Creating Mailing Lables in IBM Cognos 8 Report Studio 2 Copyright and Trademarks

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

SAS BI Dashboard 3.1. User s Guide

SAS BI Dashboard 3.1. User s Guide SAS BI Dashboard 3.1 User s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2007. SAS BI Dashboard 3.1: User s Guide. Cary, NC: SAS Institute Inc. SAS BI Dashboard

More information

Creating Custom Crystal Reports Tutorial

Creating Custom Crystal Reports Tutorial Creating Custom Crystal Reports Tutorial 020812 2012 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical,

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

Information Server Documentation SIMATIC. Information Server V8.0 Update 1 Information Server Documentation. Introduction 1. Web application basics 2

Information Server Documentation SIMATIC. Information Server V8.0 Update 1 Information Server Documentation. Introduction 1. Web application basics 2 Introduction 1 Web application basics 2 SIMATIC Information Server V8.0 Update 1 System Manual Office add-ins basics 3 Time specifications 4 Report templates 5 Working with the Web application 6 Working

More information

Hypercosm. Studio. www.hypercosm.com

Hypercosm. Studio. www.hypercosm.com Hypercosm Studio www.hypercosm.com Hypercosm Studio Guide 3 Revision: November 2005 Copyright 2005 Hypercosm LLC All rights reserved. Hypercosm, OMAR, Hypercosm 3D Player, and Hypercosm Studio are trademarks

More information

Hands-on Guide. FileMaker Pro. Using FileMaker Pro with Microsoft Office

Hands-on Guide. FileMaker Pro. Using FileMaker Pro with Microsoft Office Hands-on Guide FileMaker Pro Using FileMaker Pro with Microsoft Office Table of Contents Introduction... 3 Before You Get Started... 4 Sharing Data between FileMaker Pro and Microsoft Excel... 5 Drag and

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

EXCEL XML SPREADSHEET TUTORIAL

EXCEL XML SPREADSHEET TUTORIAL EXCEL XML SPREADSHEET TUTORIAL In this document we are going to work with our Excel XML spreadsheet that we used in Video 1. You have now identified your shoe products and have one image of each of these

More information

MicroStrategy Desktop

MicroStrategy Desktop MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop is designed to enable business professionals like you to explore data, simply and without needing direct support from IT. 1 Import data from

More information

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11 MS Excel Handout: Level 2 elearning Department 2016 Page 1 of 11 Contents Excel Environment:... 3 To create a new blank workbook:...3 To insert text:...4 Cell addresses:...4 To save the workbook:... 5

More information

HP Storage Essentials Storage Resource Management Report Optimizer Software 6.0. Building Reports Using the Web Intelligence Java Report Panel

HP Storage Essentials Storage Resource Management Report Optimizer Software 6.0. Building Reports Using the Web Intelligence Java Report Panel HP Storage Essentials Storage Resource Management Report Optimizer Software 6.0 Building Reports Using the Web Intelligence Java Report Panel First edition: July 2008 Legal and notice information Copyright

More information

User's Manual. 2006... Dennis Baggott and Sons

User's Manual. 2006... Dennis Baggott and Sons User's Manual 2 QUAD Help Desk Client Server Edition 2006 1 Introduction 1.1 Overview The QUAD comes from QUick And Dirty. The standard edition, when first released, really was a Quick and Dirty Help Desk

More information

WEBFOCUS QUICK DATA FOR EXCEL

WEBFOCUS QUICK DATA FOR EXCEL WEBFOCUS QUICK DATA FOR EXCEL BRIAN CARTER INFORMATION BUILDERS SUMMIT 2008 USERS CONFERENCE JUNE 2008 Presentation Abstract: Even with the growing popularity and evolvement of Business Intelligence products

More information

BID2WIN Workshop. Advanced Report Writing

BID2WIN Workshop. Advanced Report Writing BID2WIN Workshop Advanced Report Writing Please Note: Please feel free to take this workbook home with you! Electronic copies of all lab documentation are available for download at http://www.bid2win.com/userconf/2011/labs/

More information

Using FileMaker Pro with Microsoft Office

Using FileMaker Pro with Microsoft Office Hands-on Guide Using FileMaker Pro with Microsoft Office Making FileMaker Pro Your Office Companion page 1 Table of Contents Introduction... 3 Before You Get Started... 4 Sharing Data between FileMaker

More information

Serif PagePlusX4. Group Listing

Serif PagePlusX4. Group Listing File Menu New Startup Wizard New Publication New Book Open File Open Browse Files Browse Revert Close File Save Save As Save As Package Export As Picture Properties Page Setup Layout Guides Print Print

More information

SAS BI Dashboard 4.3. User's Guide. SAS Documentation

SAS BI Dashboard 4.3. User's Guide. SAS Documentation SAS BI Dashboard 4.3 User's Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2010. SAS BI Dashboard 4.3: User s Guide. Cary, NC: SAS Institute

More information

Microsoft PowerPoint 2010 Templates and Slide Masters (Level 3)

Microsoft PowerPoint 2010 Templates and Slide Masters (Level 3) IT Services Microsoft PowerPoint 2010 Templates and Slide Masters (Level 3) Contents Introduction... 1 Installed Templates and Themes... 2 University of Reading Templates... 3 Further Templates and Presentations...

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

Search help. More on Office.com: images templates

Search help. More on Office.com: images templates Page 1 of 14 Access 2010 Home > Access 2010 Help and How-to > Getting started Search help More on Office.com: images templates Access 2010: database tasks Here are some basic database tasks that you can

More information

Microsoft Excel 2010 Pivot Tables

Microsoft Excel 2010 Pivot Tables Microsoft Excel 2010 Pivot Tables Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Microsoft Excel 2010: Pivot Tables 1.5 hours Topics include data groupings, pivot tables, pivot

More information

BusinessObjects Enterprise InfoView User's Guide

BusinessObjects Enterprise InfoView User's Guide BusinessObjects Enterprise InfoView User's Guide BusinessObjects Enterprise XI 3.1 Copyright 2009 SAP BusinessObjects. All rights reserved. SAP BusinessObjects and its logos, BusinessObjects, Crystal Reports,

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

Microsoft Word 2010 Mail Merge (Level 3)

Microsoft Word 2010 Mail Merge (Level 3) IT Services Microsoft Word 2010 Mail Merge (Level 3) Contents Introduction...1 Creating a Data Set...2 Creating the Merge Document...2 The Mailings Tab...2 Modifying the List of Recipients...3 The Address

More information

Learning Services IT Guide. Access 2013

Learning Services IT Guide. Access 2013 Learning Services IT Guide Access 2013 Microsoft Access is a programme which allows you to store a lot of information easily in the form of a database. For example you could create a database which stored

More information

DESIGN A WEB SITE USING PUBLISHER Before you begin, plan your Web site

DESIGN A WEB SITE USING PUBLISHER Before you begin, plan your Web site Page 1 of 22 DESIGN A WEB SITE USING PUBLISHER Before you begin, plan your Web site Before you create your Web site, ask yourself these questions: What do I want the site to do? Whom do I want to visit

More information

FastTrack Schedule 10. Tutorials Manual. Copyright 2010, AEC Software, Inc. All rights reserved.

FastTrack Schedule 10. Tutorials Manual. Copyright 2010, AEC Software, Inc. All rights reserved. FastTrack Schedule 10 Tutorials Manual FastTrack Schedule Documentation Version 10.0.0 by Carol S. Williamson AEC Software, Inc. With FastTrack Schedule 10, the new version of the award-winning project

More information

Microsoft. Access HOW TO GET STARTED WITH

Microsoft. Access HOW TO GET STARTED WITH Microsoft Access HOW TO GET STARTED WITH 2015 The Continuing Education Center, Inc., d/b/a National Seminars Training. All rights reserved, including the right to reproduce this material or any part thereof

More information

Creating an Email with Constant Contact. A step-by-step guide

Creating an Email with Constant Contact. A step-by-step guide Creating an Email with Constant Contact A step-by-step guide About this Manual Once your Constant Contact account is established, use this manual as a guide to help you create your email campaign Here

More information

Microsoft Office System Tip Sheet

Microsoft Office System Tip Sheet Experience the 2007 Microsoft Office System The 2007 Microsoft Office system includes programs, servers, services, and solutions designed to work together to help you succeed. New features in the 2007

More information

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700 Information Technology MS Access 2007 Users Guide ACCESS 2007 Importing and Exporting Data Files IT Training & Development (818) 677-1700 training@csun.edu TABLE OF CONTENTS Introduction... 1 Import Excel

More information

Oregon State Bar Software Standards 2005. Software Proficiency Expectations (Items in bold are to be demonstrated)

Oregon State Bar Software Standards 2005. Software Proficiency Expectations (Items in bold are to be demonstrated) Oregon State Bar Software Standards 2005 Computer Basics (all users) Software Proficiency Expectations (Items in bold are to be demonstrated) Touch typing (at least 25 words per minute). Starting, shutting

More information

Joomla! 2.5.x Training Manual

Joomla! 2.5.x Training Manual Joomla! 2.5.x Training Manual Joomla is an online content management system that keeps track of all content on your website including text, images, links, and documents. This manual includes several tutorials

More information

An Oracle White Paper May 2013. Creating Custom PDF Reports with Oracle Application Express and the APEX Listener

An Oracle White Paper May 2013. Creating Custom PDF Reports with Oracle Application Express and the APEX Listener An Oracle White Paper May 2013 Creating Custom PDF Reports with Oracle Application Express and the APEX Listener Disclaimer The following is intended to outline our general product direction. It is intended

More information

Monthly Payroll to Finance Reconciliation Report: Access and Instructions

Monthly Payroll to Finance Reconciliation Report: Access and Instructions Monthly Payroll to Finance Reconciliation Report: Access and Instructions VCU Reporting Center... 2 Log in... 2 Open Folder... 3 Other Useful Information: Copying Sheets... 5 Creating Subtotals... 5 Outlining

More information

Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ

Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ PharmaSUG 2014 PO10 Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ ABSTRACT As more and more organizations adapt to the SAS Enterprise Guide,

More information

Microsoft Expression Web

Microsoft Expression Web Microsoft Expression Web Microsoft Expression Web is the new program from Microsoft to replace Frontpage as a website editing program. While the layout has changed, it still functions much the same as

More information

Sending Email on Blue Hornet

Sending Email on Blue Hornet Sending Email on Blue Hornet STEP 1 Gathering Your Data A. For existing data from Advance or Outlook, pull email address, first name, last name, and any other variable data you would like to use in the

More information

Introducing our new Editor: Email Creator

Introducing our new Editor: Email Creator Introducing our new Editor: Email Creator To view a section click on any header below: Creating a Newsletter... 3 Create From Templates... 4 Use Current Templates... 6 Import from File... 7 Import via

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

Computer Training Centre University College Cork. Excel 2013 Pivot Tables

Computer Training Centre University College Cork. Excel 2013 Pivot Tables Computer Training Centre University College Cork Excel 2013 Pivot Tables Table of Contents Pivot Tables... 1 Changing the Value Field Settings... 2 Refreshing the Data... 3 Refresh Data when opening a

More information

Microsoft Excel 2007 Level 2

Microsoft Excel 2007 Level 2 Information Technology Services Kennesaw State University Microsoft Excel 2007 Level 2 Copyright 2008 KSU Dept. of Information Technology Services This document may be downloaded, printed or copied for

More information

DALHOUSIE NOTES ON PAYROLL EXPENSE DETAIL IN FINANCE SELF SERVICE. QUICK REFERENCE As of September 1, 2015

DALHOUSIE NOTES ON PAYROLL EXPENSE DETAIL IN FINANCE SELF SERVICE. QUICK REFERENCE As of September 1, 2015 DALHOUSIE NOTES ON PAYROLL EXPENSE DETAIL IN FINANCE SELF SERVICE QUICK REFERENCE As of September 1, 2015 Quick reference document outlining the basic steps to access the payroll expense detail results

More information

Microsoft Access 2007 Introduction

Microsoft Access 2007 Introduction Microsoft Access 2007 Introduction Access is the database management system in Microsoft Office. A database is an organized collection of facts about a particular subject. Examples of databases are an

More information

BIRT: A Field Guide to Reporting

BIRT: A Field Guide to Reporting BIRT: A Field Guide to Reporting x:.-. ^ 11 Diana Peh Alethea Hannemann Nola Hague AAddison-Wesley Upper Saddle River, NJ Boston Indianapolis San Francisco New York Toronto Montreal London Munich Parts

More information

WebSphere Commerce V7 Feature Pack 2

WebSphere Commerce V7 Feature Pack 2 WebSphere Commerce V7 Feature Pack 2 Pricing tool 2011 IBM Corporation This presentation provides an overview of the Pricing tool of the WebSphere Commerce V7.0 feature pack 2. PricingTool.ppt Page 1 of

More information

How To Create A Campaign On Facebook.Com

How To Create A Campaign On Facebook.Com Seriously powerful email marketing, made easy Table of Contents DOTMAILER QUICK START GUIDE... 3 Main Screen... 4 Getting Started... 6 STEP 1: CAMPAIGN SETTINGS... 7 STEP 2: CAMPAIGN CONTENT... 8 Editing

More information

Task Force on Technology / EXCEL

Task Force on Technology / EXCEL Task Force on Technology EXCEL Basic terminology Spreadsheet A spreadsheet is an electronic document that stores various types of data. There are vertical columns and horizontal rows. A cell is where the

More information

4. Are you satisfied with the outcome? Why or why not? Offer a solution and make a new graph (Figure 2).

4. Are you satisfied with the outcome? Why or why not? Offer a solution and make a new graph (Figure 2). Assignment 1 Introduction to Excel and SPSS Graphing and Data Manipulation Part 1 Graphing (worksheet 1) 1. Download the BHM excel data file from the course website. 2. Save it to the desktop as an excel

More information

Excel 2007 A Beginners Guide

Excel 2007 A Beginners Guide Excel 2007 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on

More information

Salesforce Customer Portal Implementation Guide

Salesforce Customer Portal Implementation Guide Salesforce Customer Portal Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Google Sites: Site Creation and Home Page Design

Google Sites: Site Creation and Home Page Design Google Sites: Site Creation and Home Page Design This is the second tutorial in the Google Sites series. You should already have your site set up. You should know its URL and your Google Sites Login and

More information

Excel 2010: Create your first spreadsheet

Excel 2010: Create your first spreadsheet Excel 2010: Create your first spreadsheet Goals: After completing this course you will be able to: Create a new spreadsheet. Add, subtract, multiply, and divide in a spreadsheet. Enter and format column

More information

Using your Drupal Website Book 1 - Drupal Basics

Using your Drupal Website Book 1 - Drupal Basics Book 1 - Drupal Basics By Karl Binder, The Adhere Creative Ltd. 2010. This handbook was written by Karl Binder from The Adhere Creative Ltd as a beginners user guide to using a Drupal built website. It

More information

MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES

MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES MICROSOFT OFFICE 2007 MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES Exploring Access Creating and Working with Tables Finding and Filtering Data Working with Queries and Recordsets Working with Forms Working

More information

SENDING E-MAILS WITH MAIL MERGE

SENDING E-MAILS WITH MAIL MERGE SENDING E-MAILS WITH MAIL MERGE You can use Mail Merge for Word and Outlook to create a brochure or newsletter and send it by e- mail to your Outlook contact list or to another address list, created in

More information

Last Updated: June 25, 2015

Last Updated: June 25, 2015 Introduction Welcome to Elements CRM! This Quick Start Guide is designed to get you up and running quickly. Learn how to download the application as well as the basics in navigating through it. This Quick

More information

REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS

REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS 28-APRIL-2015 TABLE OF CONTENTS Select an item in the table of contents to go to that topic in the document. USE GET HELP NOW & FAQS... 1 SYSTEM

More information

RIT Message Center Compose and Send Messages

RIT Message Center Compose and Send Messages RIT Message Center Compose and Send Messages Table of Contents Table of Contents... 2 Logging into Message Center... 3 Category Display... 3 Message Center: Create a Message... 4 Create a New Message without

More information

Chapter 11 Sharing and Reviewing Documents

Chapter 11 Sharing and Reviewing Documents Calc Guide Chapter 11 Sharing and Reviewing Documents This PDF is designed to be read onscreen, two pages at a time. If you want to print a copy, your PDF viewer should have an option for printing two

More information

Vodafone Business Product Management Group. Hosted Services Announcer Pro V4.6 User Guide

Vodafone Business Product Management Group. Hosted Services Announcer Pro V4.6 User Guide Vodafone Business Product Management Group Hosted Services Announcer Pro V4.6 User Guide Vodafone Group 2010 Other than as permitted by law, no part of this document may be reproduced, adapted, or distributed,

More information

Beginner s Guide to AIA Contract Documents Online Service for Single-Seat Users

Beginner s Guide to AIA Contract Documents Online Service for Single-Seat Users Beginner s Guide to AIA Contract Documents Online Service for Single-Seat Users Table of Contents Getting Started - Introducing ACD5- AIA Contract Documents New Online Service System Requirements Transitioning

More information

SAS Add in to MS Office A Tutorial Angela Hall, Zencos Consulting, Cary, NC

SAS Add in to MS Office A Tutorial Angela Hall, Zencos Consulting, Cary, NC Paper CS-053 SAS Add in to MS Office A Tutorial Angela Hall, Zencos Consulting, Cary, NC ABSTRACT Business folks use Excel and have no desire to learn SAS Enterprise Guide? MS PowerPoint presentations

More information

Basic tutorial for Dreamweaver CS5

Basic tutorial for Dreamweaver CS5 Basic tutorial for Dreamweaver CS5 Creating a New Website: When you first open up Dreamweaver, a welcome screen introduces the user to some basic options to start creating websites. If you re going to

More information

Vector HelpDesk - Administrator s Guide

Vector HelpDesk - Administrator s Guide Vector HelpDesk - Administrator s Guide Vector HelpDesk - Administrator s Guide Configuring and Maintaining Vector HelpDesk version 5.6 Vector HelpDesk - Administrator s Guide Copyright Vector Networks

More information

TheFinancialEdge. Reports Guide for Accounts Receivable

TheFinancialEdge. Reports Guide for Accounts Receivable TheFinancialEdge Reports Guide for Accounts Receivable 041813 2013 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or

More information

Blackbaud StudentInformationSystem. Reports Guide for Admissions Office

Blackbaud StudentInformationSystem. Reports Guide for Admissions Office Blackbaud StudentInformationSystem Reports Guide for Admissions Office 102811 2011 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means,

More information

Working with Spreadsheets

Working with Spreadsheets osborne books Working with Spreadsheets UPDATE SUPPLEMENT 2015 The AAT has recently updated its Study and Assessment Guide for the Spreadsheet Software Unit with some minor additions and clarifications.

More information

Departmental User Dashboard

Departmental User Dashboard WEBFOCUS Departmental User Dashboard Contents Dashboard Login... 2 Tab Selection... 4 Run Report... 4 Saving output in Excel 2000 format... 6 Excel 2007 Formatting Tips... 7 Dashboard Logoff... 9 Academic

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

Click-n-Print User Guide

Click-n-Print User Guide Click-n-Print User Guide Selecting PDF print module Page 2 Selecting an Email Campaign Page 4 Viewing Campaign Reports and Analysis Page 7 Creating Mailing Lists Page 8 Adding HTML variables Page 9 Searching/Adding

More information

emarketing Manual- Creating a New Email

emarketing Manual- Creating a New Email emarketing Manual- Creating a New Email Create a new email: You can create a new email by clicking the button labeled Create New Email located at the top of the main page. Once you click this button, a

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

Enterprise Interface User Guide

Enterprise Interface User Guide Enterprise Interface User Guide http://www.scientia.com Email: support@scientia.com Ref: 3094 ISO 9001:2000 / TickIT certified Copyright Scientia Ltd 2010 This document is the exclusive property of Scientia

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

A quick guide to... Creating Custom Web Forms

A quick guide to... Creating Custom Web Forms A quick guide to... Creating Custom Web Forms In this guide... Learn how to create well-designed web forms in seconds. Pick your favorite template then color and shape every aspect of your form until you

More information

Activity Builder TP-1908-V02

Activity Builder TP-1908-V02 Activity Builder TP-1908-V02 Copyright Information TP-1908-V02 2014 Promethean Limited. All rights reserved. All software, resources, drivers and documentation supplied with the product are copyright Promethean

More information

Excel 2003 A Beginners Guide

Excel 2003 A Beginners Guide Excel 2003 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on

More information

Using the ETDR Word Template Masters Theses and Reports

Using the ETDR Word Template Masters Theses and Reports Using the ETDR Word Template Masters Theses and Reports Information Technology Assistance Center Kansas State University 214 Hale Library 785 532 7722 helpdesk@k-state.edu This document is available at:

More information

Virtual Exhibit 5.0 requires that you have PastPerfect version 5.0 or higher with the MultiMedia and Virtual Exhibit Upgrades.

Virtual Exhibit 5.0 requires that you have PastPerfect version 5.0 or higher with the MultiMedia and Virtual Exhibit Upgrades. 28 VIRTUAL EXHIBIT Virtual Exhibit (VE) is the instant Web exhibit creation tool for PastPerfect Museum Software. Virtual Exhibit converts selected collection records and images from PastPerfect to HTML

More information

AppShore Premium Edition Campaigns How to Guide. Release 2.1

AppShore Premium Edition Campaigns How to Guide. Release 2.1 AppShore Premium Edition Campaigns How to Guide Release 2.1 Table of Contents Campaigns Overview...3 How to create a Campaign Message...3 How to create a List...5 How to relate a Message to a List...6

More information

PE Content and Methods Create a Website Portfolio using MS Word

PE Content and Methods Create a Website Portfolio using MS Word PE Content and Methods Create a Website Portfolio using MS Word Contents Here s what you will be creating:... 2 Before you start, do this first:... 2 Creating a Home Page... 3 Adding a Background Color

More information

Counters & Polls. Dynamic Content 1

Counters & Polls. Dynamic Content 1 Dynamic Content 1 In this tutorial, we ll introduce you to Serif Web Resources and the Smart Objects that you can use to easily add interactivity to your website. In this tutorial, you ll learn how to:

More information

SHAREPOINT 2010 FOUNDATION FOR END USERS

SHAREPOINT 2010 FOUNDATION FOR END USERS SHAREPOINT 2010 FOUNDATION FOR END USERS WWP Training Limited Page i SharePoint Foundation 2010 for End Users Fundamentals of SharePoint... 6 Accessing SharePoint Foundation 2010... 6 Logging in to your

More information

Sample- for evaluation purposes only! Advanced Excel. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc.

Sample- for evaluation purposes only! Advanced Excel. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2012 Advanced Excel TeachUcomp, Inc. it s all about you Copyright: Copyright 2012 by TeachUcomp, Inc. All rights reserved. This publication,

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

TheEducationEdge. Export Guide

TheEducationEdge. Export Guide TheEducationEdge Export Guide 102111 2011 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including photocopying,

More information

COGNOS 8 Business Intelligence

COGNOS 8 Business Intelligence COGNOS 8 Business Intelligence QUERY STUDIO USER GUIDE Query Studio is the reporting tool for creating simple queries and reports in Cognos 8, the Web-based reporting solution. In Query Studio, you can

More information