Working with Actuate Query

Size: px
Start display at page:

Download "Working with Actuate Query"

Transcription

1 Working with Actuate Query

2 Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any form, or by any means, electronic or mechanical, for any purpose, in whole or in part, without the express written permission of Actuate Corporation by Actuate Corporation. All rights reserved. Printed in the United States of America. Contains information proprietary to: Actuate Corporation, 2207 Bridgepointe Parkway, San Mateo, CA The software described in this manual is provided by Actuate Corporation under an Actuate License agreement. The software may be used only in accordance with the terms of the agreement. Actuate software products are protected by U.S. and International patents and patents pending. For a current list of patents, please see Actuate Corporation trademarks and registered trademarks include: Actuate, ActuateOne, the Actuate logo, Archived Data Analytics, BIRT, Collaborative Reporting Architecture, e.analysis, e.report, e.reporting, e.spreadsheet, Encyclopedia, Interactive Viewing, OnPerformance, Performancesoft, Performancesoft Track, Performancesoft Views, Report Encyclopedia, Reportlet, The people behind BIRT, X2BIRT, and XML reports. Actuate products may contain third-party products or technologies. Third-party trademarks or registered trademarks of their respective owners, companies, or organizations include: Adobe Systems Incorporated: Flash Player. Apache Software Foundation ( Axis, Axis2, Batik, Batik SVG library, Commons Command Line Interface (CLI), Commons Codec, Derby, Shindig, Struts, Tomcat, Xerces, Xerces2 Java Parser, and Xerces-C++ XML Parser. Bits Per Second, Ltd. and Graphics Server Technologies, L.P.: Graphics Server. Bruno Lowagie and Paulo Soares: itext, licensed under the Mozilla Public License (MPL). Castor ( ExoLab Project ( and Intalio, Inc. ( Castor. Codejock Software: Xtreme Toolkit Pro. DataDirect Technologies Corporation: DataDirect JDBC, DataDirect ODBC. Eclipse Foundation, Inc. ( Babel, Data Tools Platform (DTP) ODA, Eclipse SDK, Graphics Editor Framework (GEF), Eclipse Modeling Framework (EMF), and Eclipse Web Tools Platform (WTP), licensed under the Eclipse Public License (EPL). Jason Hsueth and Kenton Varda (code.google.com): Protocole Buffer. ImageMagick Studio LLC.: ImageMagick. InfoSoft Global (P) Ltd.: FusionCharts, FusionMaps, FusionWidgets, PowerCharts. Mark Adler and Jean-loup Gailly ( zlib. Matt Ingenthron, Eric D. Lambert, and Dustin Sallings (code.google.com): Spymemcached, licensed under the MIT OSI License. International Components for Unicode (ICU): ICU library. KL Group, Inc.: XRT Graph, licensed under XRT for Motif Binary License Agreement. LEAD Technologies, Inc.: LEADTOOLS. Matt Inger (sourceforge.net): Ant-Contrib, licensed under Apache License V2.0, Apache Software License. Microsoft Corporation (Microsoft Developer Network): CompoundDocument Library. Mozilla: Mozilla XML Parser, licensed under the Mozilla Public License (MPL). MySQL Americas, Inc.: MySQL Connector. Netscape Communications Corporation, Inc.: Rhino, licensed under the Netscape Public License (NPL). OOPS Consultancy: XMLTask, licensed under the Apache License, Version 2.0. Oracle Corporation: Berkeley DB. PostgreSQL Global Development Group: pgadmin, PostgreSQL, PostgreSQL JDBC driver. Rogue Wave Software, Inc.: Rogue Wave Library SourcePro Core, tools.h++. Sam Stephenson (prototype.conio.net): prototype.js, licensed under the MIT license. Sencha Inc.: Ext JS. Sun Microsystems, Inc.: JAXB, JDK, Jstl. ThimbleWare, Inc.: JMemcached, licensed under the Apache Public License (APL). World Wide Web Consortium (W3C)(MIT, ERCIM, Keio): Flute, JTidy, Simple API for CSS. XFree86 Project, Inc.: ( xvfb. Yuri Kanivets (code.google.com): Android Wheel gadget, licensed under the Apache Public License (APL). ZXing authors (code.google.com): ZXing, licensed under the Apache Public License (APL). All other brand or product names are trademarks or registered trademarks of their respective owners, companies, or organizations. Document No October 14, 2011

3 Contents About Working with Actuate Query iii Working with a query for an information object About information objects About creating a query for an information object About including database columns in the query for an information object About grouping query data for an information object About summarizing query data for an information object About sorting query data for an information object About specifying values for filters for an information object About specifying a query output format for an information object About saving a query for an information object Creating a query for an information object Specifying values for filters for an information object Specifying values for predefined filters for an information object Specifying values for custom filters for an information object Using NULL and IS NOT NULL for a custom filter for an information object Using the IN operator for a custom filter for an information object Modifying, running, and scheduling a query for an information object Index i

4 ii

5 About Working with Actuate Query Working with Actuate Query provides information about Actuate Query option and how to use it to create a query for an Actuate information object. This book also describes how to modify, run, and schedule a query for an Actuate information object. About Working with Actuate Query iii

6 iv Working with Actuate Query

7 Working with a query for an information object This chapter contains the following topics: About information objects About creating a query for an information object Creating a query for an information object Specifying values for filters for an information object Modifying, running, and scheduling a query for an information object Working with a query for an information object 1

8 About information objects The Actuate Query Option supports creating a query using an information object and making the query available to other users. An information object contains a database connection and an Actuate SQL query. An information object does not, however, contain page layouts, controls, or formatting. For example, the information object example in this chapter contains the following Actuate SQL query: SELECT Customers.customerNumber AS customernumber, Customers.customerName AS customername, Customers."Contact Name" AS "Contact Name", Customers.addressLine1 AS addressline1, Customers.addressLine2 AS addressline2, Customers.city AS city, Customers.state AS state, Customers.country AS country, Customers.postalCode AS postalcode, Customers.creditLimit AS creditlimit, Offices.country AS country_1, Offices.state AS state_1, Offices.city AS city_1, Offices.officeCode AS officecode, Orders.orderNumber AS ordernumber, Orders.orderDate AS orderdate, Orders.requiredDate AS requireddate, Orders.shippedDate AS shippeddate, Orders.status AS status, Products.productCode AS productcode_1, OrderDetails.priceEach AS priceeach, OrderDetails.quantityOrdered AS quantityordered, ( (Sum(OrderDetails.quantityOrdered * OrderDetails.priceEach)) ) AS Total, Products.productLine AS productline,products.productname AS productname, Products.MSRP AS MSRP,Products.buyPrice AS buyprice, Products.quantityInStock AS quantityinstock, Employees.employeeNumber AS employeenumber, Employees.lastName AS lastname, Employees.firstName AS firstname, Employees.officeCode AS officecode_1 FROM "../Base Layer/Customers/Customers.iob" AS Customers GROUP BY Customers.customerName, Customers.customerNumber, Customers.addressLine1, Customers.addressLine2, Customers.city, Customers.state, Customers.country, Customers.postalCode, Customers.phone, Customers.creditLimit, Offices.country, Offices.state, Offices.city, Offices.officeCode, Employees. , Employees.lastName, Employees.firstName, Employees.employeeNumber, Orders.orderNumber, Orders.orderDate, Orders.requiredDate, Orders.shippedDate, Orders.status, Customers."Contact Name", OrderDetails.orderLineNumber, Products.productCode, OrderDetails.priceEach, OrderDetails.quantityOrdered, Orders.comments, Products.productLine, Products.productName, ProductLine.textDescription, Products.MSRP, Products.buyPrice, Products.quantityInStock 2 Working with Actuate Query

9 About creating a query for an information object To create a query, complete the following tasks: Locate the information object that you want to use to create the query in the Encyclopedia volume. For more information about accessing an Encyclopedia volume, see Using Information Console. You must have read privilege on the information object. For more information about privileges, see Using Information Console. Using the information object and Actuate Query Wizard, create and save the query. Run the query and examine the output. If the query generates the required output, grant read and execute privileges on the saved query to the appropriate users and security roles. If the query does not generate the required output, modify the query as necessary and run it again. The topics that follow in this section provide an overview of each of the Actuate Query Wizard options. About including database columns in the query for an information object Depending on how a report developer specifies database column names, you can include database columns by choosing from display names, column names, or data row variable names. If a report developer associates descriptive display names with database columns, the Actuate Query Wizard displays the descriptive names. If a report developer does not set the display names, the Actuate Query Wizard displays the column names as they appear in the database. The Actuate Query Wizard displays data row variable names instead of column names when no other information is available. About grouping query data for an information object You can organize query output data in one or more groups, such as grouping sales orders by customer or sales representative. Using more than one group creates a hierarchy of group levels. For example, you can organize a list of items that are sold using a customer name group level and an order number group level, as shown in Figure 1-1. When you run the query, the query output displays order number groups in each customer name group, as shown in Figure 1-2. Working with a query for an information object 3

10 Customer name group level Order number group level Figure 1-1 Grouping query data Customer name group Order number group Order number group Figure 1-2 Query output displays order ID groups in each customer group You can also add an additional column to a group heading. That column s value appears in the group heading in Actuate Query output. For example, you can add the address column. When you add a column to a group heading, Actuate Query Wizard appears as shown in Figure 1-3. Address 1 column appears in customer name group heading in Actuate Query output Figure 1-3 Adding a column name to a group heading 4 Working with Actuate Query

11 When you run the query, the query output displays both the group level and the additional column s value in the group heading. For example, the customer name and the address column values appear in the customer group heading, as shown in Figure 1-4. Customer name Customer address Figure 1-4 Displaying a column name in a group heading Detail rows If you add a column to a group heading, ensure that a one-to-one relationship exists between the group level and the column you add. For the example in Figure 1-4, only one customer address appears in the data source for each customer name. If you add a column for which Actuate Query retrieves multiple values from a data source, the group heading displays only one of those values. The other column values that the query retrieves determine what data appears in the detail rows of the Actuate Query output. For example, if Actuate Query retrieves more than one customer address from the data source, only one of those addresses appears in the customer name group heading. The detail rows of the Actuate Query output, however, display the retrieved data from all of this customer s addresses. If you select Do not show detail rows, query output displays the group heading for each group level and includes only the summary rows, as shown in Figure 1-5. Group heading Summary values Figure 1-5 Displaying the group heading for each group level About summarizing query data for an information object You can summarize numerical query output data. The summary can appear as a sum, an average, or a minimum or maximum value. The summary value appears at the end of each group of data, as shown in Figure 1-6. Working with a query for an information object 5

12 Detail rows Summary value for an order number group Figure 1-6 Summarizing query data Detail rows Summary value for an order number group Summary value for an order number group Summary value for a customer name group You can display group headings and summary information for each group and hide the detail rows in the query output, as shown in Figure 1-7. Figure 1-7 Hiding the detail rows in the query output About sorting query data for an information object You can sort query output data alphabetically, numerically, or by reversing the order in which the data appears in the data source. If you do not sort data, the data appears in the order in which it appears in the data source. You can suppress the appearance of duplicate detail rows in Actuate Query output if you select Skip duplicate rows on Actuate Query Wizard Content. If you sort column data that does not appear in the query output, duplicate data rows can appear in the query output. For example, if you sort the column, offices.state, and do not display the offices.state column data in the query output, the query output can display duplicate detail rows. If the query output displays duplicate detail rows, change the sorting options to ensure that all data source columns to which you apply sorting appear in the query output. About specifying values for filters for an information object You can specify values for predefined and custom filters. 6 Working with Actuate Query

13 About specifying a query output format for an information object You can specify the following query output formats: Browser (DHTML) presents the query output in a web page when you run the query. From the DHTML Viewer toolbar, you can access other formats, such as Microsoft Excel, PDF, Microsoft PowerPoint, and RTF. Excel presents the query output in an Excel spreadsheet when you run the query. The run fails if the result set is too large to fit in the Excel document. The report retains basic data types for analysis in Excel. The output also includes column headings. This Excel output format option displays only data and not groups or summary values. You can display groups and summary information in Excel format by exporting the query output from the DHTML Viewer to Excel. PDF presents the query output as a PDF file when you run the query. e.analysis presents the query output in Actuate e.analysis if the Actuate e.analysis Option is enabled for the BIRT iserver System. You can then analyze this data. You receive an error message if e.analysis is not available. The run fails if multiple columns in the query have the same display name. For more information about Actuate e.analysis, see Using e.analysis. About saving a query for an information object You can save a query to support reusing it. Information Console saves the query as an Actuate Query Definition (.dov) file. A saved DOV uses the latest version of the information object when you run the DOV. You can also create multiple versions of a query in an Encyclopedia volume. If you modify an existing DOV file or create a new version of a DOV file, the DOV saves the properties, such as privileges and scheduling information, from the original DOV as the default behavior. Creating a query for an information object Use Actuate Query Wizard to create a query for an information object. How to create a query for an information object 1 In an Encyclopedia volume, choose an information object. You can identify an information object in the following ways: In Information Console, an information object appears in Information Objects You Can Query. Working with a query for an information object 7

14 In Management Console, Actuate Information Object appears in Type for an information object. 2 On Actuate Query Content, set up report content: 1 Select the columns to include in the query: To add specific columns to the query, select the columns in Available Columns then choose the right arrow. To add all available columns to Selected Columns, choose the double right arrow. To remove a column from Selected Columns, select the column then choose the left arrow. To remove all columns from Selected Columns, choose the double left arrow. The columns you add to the query appear in Selected Columns, as shown in Figure 1-8. The order of the selected columns is the order in which the columns appear in the query output. Figure 1-8 Columns you add to the query appear in Selected Columns 2 To change the order of items in Selected Columns, select an item and choose the up arrow or the down arrow. 3 To prevent duplicate detail data rows from appearing in the query output, select Skip duplicate rows. 4 To support changing column selection or order when a user runs the query, select Allow user to change column selection when running the query. 8 Working with Actuate Query

15 To continue with the query setup, choose Next. 3 On Actuate Query Groups, set up grouping: 1 Choose the columns by which to group data: To add a column, select the column in Fields then choose the right arrow. To remove a column from Grouping, select the column then choose the left arrow. To nest a group within a group, select a column in Fields and a column in Grouping, then choose the right arrow. In Figure 1-9, Grouping displays how to group data using an order number group level in each customer name group level. Figure 1-9 Grouping displays how to group data 2 To hide the detail rows in the query output, select Do not show detail rows. 3 To support changing the grouping when a user runs the query, select Allow user to change grouping when running the query. To continue with the query setup, choose Next. 4 On Actuate Query Summary, set up summary information for the report: 1 Choose the summaries to include in your report, as shown in Figure Working with a query for an information object 9

16 Figure 1-10 Choosing the summaries to include in your report 2 To display row counts in the totals, select Show row counts in total. A row count is the number of data rows from the data source that the query uses to calculate a summary value. 3 To support changing the summary options when a user runs the query, select Allow user to change summary options when running the query. To continue with the query setup, choose Next. 5 On Actuate Query Sorting, specify the sort order for a query s output: 1 In Groups, specify the sort order for groups. 2 In Detail, specify the sort order for detail rows: Select a field from the drop-down list. After you select a field on which to sort, choose Ascending or Descending from the drop-down list. An additional set of sort fields appears. To specify an additional column on which to sort, use a new sort field, as shown in Figure Figure 1-11 Specifying the sort order 10 Working with Actuate Query

17 3 To support changing the sort order when a user runs the query, select Allow user to change sort order when running the query. To continue with the query setup, choose Next. 6 On Actuate Query Filters, specify default values for predefined and custom filters: 1 In Predefined Filters (Parameters), specify default values for predefined filters. For an ad hoc parameter, you can type a single value or create a QBE expression. To create a QBE expression: 1 Choose the QBE expression builder icon to the right of the field. The expression builder appears, as shown in Figure Figure 1-12 Expression builder 2 Create a QBE expression. For information about QBE syntax, see Using Information Console. 3 To support changing the value of a predefined filter when a user runs the query, select the check box at the right of the field. If you do not select the check box, the query uses the default value. 2 In Custom Filters, set up the custom filters: Choose a column name from the drop-down list and specify an operator and an operand, if necessary. You can create multiple filters for each column. To support changing the value of a custom filter when a user runs the query, select the check box at the right of the field, as shown in Working with a query for an information object 11

18 Figure If you do not select the check box, the query uses the default value. Figure 1-13 Setting up custom filters To complete the query setup, choose Finish. 7 On Actuate Query Finish, as shown in Figure 1-14, complete the following settings: Figure 1-14 Specifying options on Actuate Query Finish In Page header, type an appropriate heading for the query. The page header appears on every page of the finished report. Select an output format for the query result. To support changing the output format selection when a user runs the query, select Allow user to change output format when running the query. 12 Working with Actuate Query

19 To save the query, complete the following tasks in this order: In Query name, type an appropriate name for the query. In Location, choose Browse to navigate to the appropriate folder in the Encyclopedia volume. Choose OK. In Description, type an appropriate description. Choose Save Query. If the query already exists, you can replace the existing query. 8 To run the query, choose Run. The query output appears in a new window, as shown in Figure Customer name group header Order number group header Order number group summary Order number group header Order number group summary Order number group header Figure 1-15 Displaying query output Order number group summary Customer name group summary Working with a query for an information object 13

20 How to display groups and summary information in query output in Excel format If you specify groups on Actuate Query Wizard Groups and summary values on Actuate Query Wizard Summary, complete the following procedure to display the groups and summary values in query output: 1 In Output format on Actuate Query Wizard Finish, select Browser (DHTML). Choose Run. The query output appears in the web browser. 2 To export the data from the query output in the DHTML Viewer to Microsoft Excel, retaining groups and summary values, choose Download. 3 In Export Report on Download, complete the following tasks: Select Excel Data or Excel Display. Choose View Report or Save Report. The exported query output data retains the groups and summary values. Specifying values for filters for an information object You can specify values for predefined and custom filters for an information object. Specifying values for predefined filters for an information object A report developer defines predefined filters. A predefined filter can use a single value or a QBE expression. For more information about QBE expressions, see Using Information Console. Specifying values for custom filters for an information object For a custom filter, you can specify a database column, an operator, and an operand using QBE syntax. The following operators are available: = < <= > >= <> (Not equal) 14 Working with Actuate Query

21 LIKE NOT LIKE IS NULL IS NOT NULL IN Table 1-1 shows the resulting SQL when the database column is Customer and the operand is ABB Kent. Table 1-1 SQL examples Operator SQL = Customer = 'ABB Kent' < Customer < 'ABB Kent' <= Customer <= 'ABB Kent' > Customer > 'ABB Kent' >= Customer >= 'ABB Kent' <> Customer <> 'ABB Kent' LIKE Customer LIKE 'ABB Kent%' NOT LIKE Customer NOT LIKE 'ABB Kent%' IN Customer LIKE 'ABB Kent%' For more information about QBE expressions, see Using Information Console. Using NULL and IS NOT NULL for a custom filter for an information object The operators IS NULL and IS NOT NULL are available. Table 1-2 shows the resulting SQL when you use the IS NULL and IS NOT NULL operators with the Customer database column. Table 1-2 Operator IS NULL IS NOT NULL SQL examples using IS NULL and IS NOT NULL operators SQL Customer IS NULL Customer IS NOT NULL Table 1-3 lists additional examples of custom filter operators, operands, and the SQL statements that Information Console uses. Working with a query for an information object 15

22 Table 1-3 Examples of custom filter operators, operands, and SQL statements Operator Operand SQL = Null = 'Null' <> Null <> 'Null' LIKE \Null LIKE 'Null%' LIKE Null% LIKE 'Null%' LIKE Null IS NULL NOT LIKE \Null NOT LIKE 'Null%' NOT LIKE Null IS NOT NULL Using the IN operator for a custom filter for an information object Using the IN operator, you specify an operand using QBE syntax. You can use the IN operator with a column of any data type. Table 1-4 lists examples of operands for the IN operator and the SQL statements that Information Console uses. Table 1-4 SQL examples using the IN operator for a custom filter Operator Operand SQL IN 6 21 Column = 6 OR Column = 21 IN Column = 1 OR Column BETWEEN 3 AND 5 IN CA CT NV Column LIKE 'CA%' OR Column LIKE 'CT%' OR Column LIKE 'NV%' IN 'CA' 'CT' 'NV' Column = 'CA' OR Column = 'CT' OR Column = 'NV' For Actuate Query, BIRT iserver implements custom filters using QBE syntax. BIRT iserver does not distinguish between the following QBE expressions: CustomerID = 6 CustomerID IN 6 BIRT iserver returns = 6 to the client application no matter how a user specified and saved the custom filter. 16 Working with Actuate Query

23 In Actuate Query custom filters, the following limitations apply to the IN operator: The IN operator does not support using operators in a list of values, for example:!50 >100 <50 null (1&2) Actuate Query does not support NOT IN. To specify such a filter condition, define multiple custom filters on the same column using the inequality operator, <>, for example: CustomerState <> 'CA' CustomerState <> 'NY' For more information about QBE expressions, see Using Information Console. Modifying, running, and scheduling a query for an information object You can make a query for an information object available to other users by granting read and execute privileges on the Actuate Query Definition (.dov) file to the appropriate users and security roles. Users with those privileges can: Modify the query. Run the query. Schedule the query to run at a later time. How to modify a query for an information object 1 Complete one of the following tasks: In Information Console on Documents in Queries, choose Edit for the query to modify. In Management Console, choose the icon to the left of an Actuate Query Definition. Choose Edit Query. Actuate Query Wizard appears, displaying the current settings for the query. 2 Modify the settings in Content, Groups, Summary, Sorting, Filters, and Finish as necessary. How to run a query for an information object 1 Complete one of the following tasks: In Information Console on Documents in Queries, choose the query to run. In Management Console, choose the icon to the left of an Actuate Query Definition. Choose Run Query. Working with a query for an information object 17

24 Actuate Query Wizard appears, displaying the current settings for the query. The options available depend on the settings that the query developer specifies. 2 Modify the settings as necessary. 3 Choose Finish. Actuate Query Finish appears, as shown in Figure Figure 1-16 Actuate Query Finish 4 Complete the following tasks: 1 To save the output document, select Save the output document in the volume and specify a document name, version name, output location, and whether to create a new version of the file or replace the latest version. Information Console saves the output document as an Actuate Query Output file. 2 Choose Run to run the query and view the query output. How to schedule a query for an information object 1 Complete one of the following tasks: In Information Console on Documents in Queries, choose the clock icon for the query to schedule. In Management Console, choose the icon to the left of an Actuate Query Definition. Choose Schedule Query. 18 Working with Actuate Query

25 2 On Actuate Query Schedule, in Job Name, type a job name, then select one of the following scheduling options and specify its settings: Right now, as shown in Figure 1-17, schedules the query to run immediately. Figure 1-17 Actuate Query Schedule shows the Right now option Once, as shown in Figure 1-18, schedules a date and time at which to run the query. If you select Once, specify the date and time at which to run the query. Figure 1-18 Actuate Query Schedule shows the Once option Recurring, as shown in Figure 1-19, schedules the query to run regularly at a specified interval. If you select Recurring, specify the recurrence interval, the time at which to run the query, and the start and end dates to use. Figure 1-19 Actuate Query Schedule shows the Recurring option Choose Next. Actuate Query Wizard Finish appears, displaying the current settings for the query. The options available depend on the settings that the query developer specifies. 3 On Actuate Query Finish, as shown in Figure 1-20, complete the following settings: Specify a document name, version name, output location, and whether to create a new version of the file or replace the latest version. Information Console saves the output document as an Actuate Query Output file. In Notification: Working with a query for an information object 19

26 To receive an notification when the job completes, select Send me an notification. To attach an output document to the , select a format for the attachment from the drop-down list. The available formats are PDF, Excel, PowerPoint, RTF, and Fully editable RTF. Figure 1-20 Actuate Query Finish 4 To submit the job, choose Submit. 20 Working with Actuate Query

27 Index Symbols < operator 15 < > operator 15 <= operator 15 = operator 15 > operator 15 >= operator 15 A adding page headers 12 analyzing data 7 attachments 20 B Browser (DHTML) option 7 C changing output formats 12 queries 17 sort order 11 clock icon 18 column headings 3 columns adding to queries 8 filtering data in 11 reordering 8 sorting on 10 connections 2 Content page (Query Wizard) 8 counting data rows 10 creating queries 3, 7 customizing filters 11, 14 D data analyzing 7 summarizing 5, 9 data filters changing values for 11 customizing 11, 14 specifying values for 6, 11, 14 data object executable files 2 data object instances 18, 19 data types 7 default values 11 DHTML reports viewing query output in 7 display names 3 E e.analysis equals operator 15 Excel spreadsheets generating 7 executable files 2 executing jobs 19 executing queries 13, 17 expression builder 11 F field names 3 fields adding to queries 8 filtering data in 11 reordering 8 sorting on 10 filters changing values for 11 customizing 11, 14 specifying values for 6, 11, 14 Filters page (Query Wizard) 11 Finish page (Query Wizard) 12 formats setting query output 12 G greater than operator 15 greater than or equal to operator 15 Index 21

28 Groups page (Query Wizard) 9 H headers 12 I IN operator 16 Information Console 7, 17, 18 IS NOT NULL operator 15 IS NULL operator 15 J jobs 19 L less than operator 15 less than or equal to operator 15 LIKE operator 15 M Management Console 8, 17, 18 N naming queries 13 NOT LIKE operator 15 notifications 19 O operands 11 operators adding to query statements 11, 14 output formats 12 P page headers 12 PDF files writing query output to 7 predefined filters 11, 14 privileges 17 Q QBE expression builder 11 QBE expressions 11 queries building from executable files 2 changing 17 creating 3, 7 filtering data with 6, 11, 14 grouping data in 9 naming 13 overview 17 running 13, 17, 19 saving 13 setting schedules for sorting with 10 specifying output formats for 12 query operators 11, 14 Query Wizard 7, 8, 17, 18 R result sets 7 rows counting 10 running queries 13, 17, 19 S saving queries 13 Schedule page 19 schedules creating 18 setting query scheduling jobs 19 sending 20 Show row counts option 10 sort fields 10 sort order 10, 11 Sorting page (Query Wizard) 10 spreadsheets generating 7 SQL statements adding columns to 8 adding data filters to 6, 14 changing predefined filters in 11 creating multiple filters in 11 editing 17 removing columns from 8, 9 specifying sort order in 10 submitting jobs Working with Actuate Query

29 summarizing data 5, 9 Summary page (Query Wizard) 9 T totals 10 W web pages writing query output to 7 Index 23

30 24 Working with Actuate Query

Building BIRT Dashboards

Building BIRT Dashboards Building BIRT Dashboards Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any form, or by

More information

Building BIRT Dashboards

Building BIRT Dashboards Building BIRT Dashboards Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any form, or by

More information

Installing BIRT Spreadsheet Designer

Installing BIRT Spreadsheet Designer Installing BIRT Spreadsheet Designer Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any

More information

Using Information Object Query Builder

Using Information Object Query Builder Using Information Object Query Builder Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any

More information

Using BIRT Data Analyzer

Using BIRT Data Analyzer Using BIRT Data Analyzer Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any form, or by

More information

Installing Metrics Management

Installing Metrics Management Installing Metrics Management Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any form,

More information

Building BIRT Dashboards

Building BIRT Dashboards Building BIRT Dashboards Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any form, or by

More information

Designing BIRT Dashboards

Designing BIRT Dashboards Designing BIRT Dashboards Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any form, or by

More information

1995-2011 by Actuate Corporation. All rights reserved. Printed in the United States of America.

1995-2011 by Actuate Corporation. All rights reserved. Printed in the United States of America. Actuate Glossary Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any form, or by any means,

More information

Configuring BIRT ihub

Configuring BIRT ihub Configuring BIRT ihub Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any form, or by any

More information

Installing BIRT iserver for Windows

Installing BIRT iserver for Windows Installing BIRT iserver for Windows Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any

More information

Configuring BIRT iserver

Configuring BIRT iserver Configuring BIRT iserver Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any form, or by

More information

Using Actuate JavaScript API

Using Actuate JavaScript API Using Actuate JavaScript API Information in this document is subject to change without notice. s provided are fictitious. No part of this document may be reproduced or transmitted in any form, or by any

More information

Information Console Developer Guide

Information Console Developer Guide Information Console Developer Guide Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any

More information

Using Actuate BIRT Java Components

Using Actuate BIRT Java Components Using Actuate BIRT Java Components Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any form,

More information

Installing BIRT iserver for Linux and UNIX

Installing BIRT iserver for Linux and UNIX Installing BIRT iserver for Linux and UNIX Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted

More information

Installing BIRT iserver for Linux and UNIX

Installing BIRT iserver for Linux and UNIX Installing BIRT iserver for Linux and UNIX Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted

More information

Installing BIRT ihub for Linux

Installing BIRT ihub for Linux Installing BIRT ihub for Linux Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any form,

More information

Deploying to a BIRT iserver System

Deploying to a BIRT iserver System Deploying to a BIRT iserver System Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any form,

More information

1995-2015 by Actuate Corporation. All rights reserved. Printed in the United States of America.

1995-2015 by Actuate Corporation. All rights reserved. Printed in the United States of America. Provisioning Data Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any form, or by any means,

More information

Using Information Console

Using Information Console Using Information Console Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any form, or by

More information

Installing Visualization Platform

Installing Visualization Platform Installing Visualization Platform Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any form,

More information

Information Console Developer Guide

Information Console Developer Guide Information Console Developer Guide Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any

More information

Using BIRT Analytics Loader

Using BIRT Analytics Loader Using BIRT Analytics Loader Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any form, or

More information

Building Web Applications Using BIRT APIs

Building Web Applications Using BIRT APIs Building Web Applications Using BIRT APIs Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in

More information

Installing BIRT Analytics

Installing BIRT Analytics Installing BIRT Analytics Information in this document is subject to change without notice. Examples provided are fictitious. No part of this document may be reproduced or transmitted in any form, or by

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

FileMaker 14. ODBC and JDBC Guide

FileMaker 14. ODBC and JDBC Guide FileMaker 14 ODBC and JDBC Guide 2004 2015 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks of FileMaker,

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

Sage Abra SQL HRMS Reports. User Guide

Sage Abra SQL HRMS Reports. User Guide Sage Abra SQL HRMS Reports User Guide 2010 Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service names mentioned herein are registered trademarks or trademarks

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

SAP List Viewer (ALV): Classic

SAP List Viewer (ALV): Classic HELP.CAGTFLV Release 4.6C SAP AG Copyright Copyright 2001 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission

More information

FileMaker 13. ODBC and JDBC Guide

FileMaker 13. ODBC and JDBC Guide FileMaker 13 ODBC and JDBC Guide 2004 2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker, Inc.

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

FileMaker 11. ODBC and JDBC Guide

FileMaker 11. ODBC and JDBC Guide FileMaker 11 ODBC and JDBC Guide 2004 2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc. registered

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

FileMaker 12. ODBC and JDBC Guide

FileMaker 12. ODBC and JDBC Guide FileMaker 12 ODBC and JDBC Guide 2004 2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker, Inc.

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

COGNOS Query Studio Ad Hoc Reporting

COGNOS Query Studio Ad Hoc Reporting COGNOS Query Studio Ad Hoc Reporting Copyright 2008, the California Institute of Technology. All rights reserved. This documentation contains proprietary information of the California Institute of Technology

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

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

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

Novell ZENworks Asset Management 7.5

Novell ZENworks Asset Management 7.5 Novell ZENworks Asset Management 7.5 w w w. n o v e l l. c o m October 2006 USING THE WEB CONSOLE Table Of Contents Getting Started with ZENworks Asset Management Web Console... 1 How to Get Started...

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

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

Legal Information Trademarks Licensing Disclaimer

Legal Information Trademarks Licensing Disclaimer Scribe Insight Tutorials www.scribesoft.com 10/1/2014 Legal Information 1996-2014 Scribe Software Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of

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

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

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

The cloud server setup program installs the cloud server application, Apache Tomcat, Java Runtime Environment, and PostgreSQL.

The cloud server setup program installs the cloud server application, Apache Tomcat, Java Runtime Environment, and PostgreSQL. GO-Global Cloud 4.1 QUICK START SETTING UP A WINDOWS CLOUD SERVER AND HOST This guide provides instructions for setting up a cloud server and configuring a host so it can be accessed from the cloud server.

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

Crystal Reports for Eclipse

Crystal Reports for Eclipse Crystal Reports for Eclipse Table of Contents 1 Creating a Crystal Reports Web Application...2 2 Designing a Report off the Xtreme Embedded Derby Database... 11 3 Running a Crystal Reports Web Application...

More information

ER/Studio Enterprise Portal 1.0.2 User Guide

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

More information

Database Linker Tutorial

Database Linker Tutorial Database Linker Tutorial 1 Overview 1.1 Utility to Connect MindManager 8 to Data Sources MindManager 8 introduces the built-in ability to automatically map data contained in a database, allowing you to

More information

Query 4. Lesson Objectives 4. Review 5. Smart Query 5. Create a Smart Query 6. Create a Smart Query Definition from an Ad-hoc Query 9

Query 4. Lesson Objectives 4. Review 5. Smart Query 5. Create a Smart Query 6. Create a Smart Query Definition from an Ad-hoc Query 9 TABLE OF CONTENTS Query 4 Lesson Objectives 4 Review 5 Smart Query 5 Create a Smart Query 6 Create a Smart Query Definition from an Ad-hoc Query 9 Query Functions and Features 13 Summarize Output Fields

More information

ProgressBook StudentInformation Report Builder User Guide

ProgressBook StudentInformation Report Builder User Guide ProgressBook StudentInformation Report Builder User Guide ProgressBook StudentInformation Report Builder User Guide (This document is current for ProgressBook StudentInformation v13.3.1 or later.) 2013

More information

IBM Configuring Rational Insight 1.0.1.1 and later for Rational Asset Manager

IBM Configuring Rational Insight 1.0.1.1 and later for Rational Asset Manager IBM Configuring Rational Insight 1.0.1.1 and later for Rational Asset Manager Rational Insight and Rational Asset Manager...4 Prerequisites...5 Configuring the XML data configuration for Rational Asset

More information

FileMaker Server 12. FileMaker Server Help

FileMaker Server 12. FileMaker Server Help FileMaker Server 12 FileMaker Server Help 2010-2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc.

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

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

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

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix Jennifer Clegg, SAS Institute Inc., Cary, NC Eric Hill, SAS Institute Inc., Cary, NC ABSTRACT Release 2.1 of SAS

More information

Actuate Business Intelligence and Reporting Tools (BIRT)

Actuate Business Intelligence and Reporting Tools (BIRT) Product Datasheet Actuate Business Intelligence and Reporting Tools (BIRT) Eclipse s BIRT project is a flexible, open source, and 100% pure Java reporting tool for building and publishing reports against

More information

Crystal Reports Installation Guide

Crystal Reports Installation Guide Crystal Reports Installation Guide Version XI Infor Global Solutions, Inc. Copyright 2006 Infor IP Holdings C.V. and/or its affiliates or licensors. All rights reserved. The Infor word and design marks

More information

Business Insight Getting Started Guide

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

More information

Deploying Oracle Business Intelligence Publisher in J2EE Application Servers Release 10.1.3.2.0

Deploying Oracle Business Intelligence Publisher in J2EE Application Servers Release 10.1.3.2.0 Oracle Business Intelligence Publisher Deploying Oracle Business Intelligence Publisher in J2EE Application Servers Release 10.1.3.2.0 Part No. B32481-01 December 2006 Introduction Oracle BI Publisher

More information

HR Data Retrieval in a LDAP- Enabled Directory Service

HR Data Retrieval in a LDAP- Enabled Directory Service HR Data Retrieval in a LDAP- Enabled Directory Service HELP.PORTMANAGER Release 50A Copyright Copyright 2001 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in

More information

MICROSOFT ACCESS 2003 TUTORIAL

MICROSOFT ACCESS 2003 TUTORIAL MICROSOFT ACCESS 2003 TUTORIAL M I C R O S O F T A C C E S S 2 0 0 3 Microsoft Access is powerful software designed for PC. It allows you to create and manage databases. A database is an organized body

More information

Embarcadero DB Change Manager 6.0 and DB Change Manager XE2

Embarcadero DB Change Manager 6.0 and DB Change Manager XE2 Product Documentation Embarcadero DB Change Manager 6.0 and DB Change Manager XE2 User Guide Versions 6.0, XE2 Last Revised April 15, 2011 2011 Embarcadero Technologies, Inc. Embarcadero, the Embarcadero

More information

Rational Team Concert. Quick Start Tutorial

Rational Team Concert. Quick Start Tutorial Rational Team Concert Quick Start Tutorial 1 Contents 1. Introduction... 3 2. Terminology... 4 3. Project Area Preparation... 5 3.1 Defining Timelines and Iterations... 5 3.2 Creating Team Areas... 8 3.3

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

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

Exploring Microsoft Office Access 2007. Chapter 2: Relational Databases and Multi-Table Queries

Exploring Microsoft Office Access 2007. Chapter 2: Relational Databases and Multi-Table Queries Exploring Microsoft Office Access 2007 Chapter 2: Relational Databases and Multi-Table Queries 1 Objectives Design data Create tables Understand table relationships Share data with Excel Establish table

More information

FileMaker Server 10 Help

FileMaker Server 10 Help FileMaker Server 10 Help 2007-2009 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker, the file folder logo, Bento and the Bento logo

More information

In This Issue: Excel Sorting with Text and Numbers

In This Issue: Excel Sorting with Text and Numbers In This Issue: Sorting with Text and Numbers Microsoft allows you to manipulate the data you have in your spreadsheet by using the sort and filter feature. Sorting is performed on a list that contains

More information

Microsoft Access Basics

Microsoft Access Basics Microsoft Access Basics 2006 ipic Development Group, LLC Authored by James D Ballotti Microsoft, Access, Excel, Word, and Office are registered trademarks of the Microsoft Corporation Version 1 - Revision

More information

Administrator Operations Guide

Administrator Operations Guide Administrator Operations Guide 1 What You Can Do with Remote Communication Gate S 2 Login and Logout 3 Settings 4 Printer Management 5 Log Management 6 Firmware Management 7 Installation Support 8 Maintenance

More information

Sisense. Product Highlights. www.sisense.com

Sisense. Product Highlights. www.sisense.com Sisense Product Highlights Introduction Sisense is a business intelligence solution that simplifies analytics for complex data by offering an end-to-end platform that lets users easily prepare and analyze

More information

Work with the MiniBase App

Work with the MiniBase App Work with the MiniBase App Trademark Notice Blackboard, the Blackboard logos, and the unique trade dress of Blackboard are the trademarks, service marks, trade dress and logos of Blackboard, Inc. All other

More information

BLUECIELO MERIDIAN ASSET MANAGEMENT MODULE 2014

BLUECIELO MERIDIAN ASSET MANAGEMENT MODULE 2014 BLUECIELO MERIDIAN ASSET MANAGEMENT MODULE 2014 User's Guide Manual BlueCielo ECM Solutions bluecieloecm.com December 09 2014 LEGAL NOTICE 2014 BlueCielo ECM Solutions B. V. Polarisavenue 1 2132 JH Hoofddorp

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

Sophos Mobile Control Installation guide. Product version: 3

Sophos Mobile Control Installation guide. Product version: 3 Sophos Mobile Control Installation guide Product version: 3 Document date: January 2013 Contents 1 Introduction...3 2 The Sophos Mobile Control server...4 3 Set up Sophos Mobile Control...16 4 External

More information

Master Data Services. SQL Server 2012 Books Online

Master Data Services. SQL Server 2012 Books Online Master Data Services SQL Server 2012 Books Online Summary: Master Data Services (MDS) is the SQL Server solution for master data management. Master data management (MDM) describes the efforts made by an

More information

How to Easily Integrate BIRT Reports into your Web Application

How to Easily Integrate BIRT Reports into your Web Application How to Easily Integrate BIRT Reports into your Web Application Rima Kanguri & Krishna Venkatraman Actuate Corporation BIRT and us Who are we? Who are you? Who are we? Rima Kanguri Actuate Corporation Krishna

More information

BIRT in the Cloud: Deployment Options for ActuateOne

BIRT in the Cloud: Deployment Options for ActuateOne Technical White Paper BIRT in the Cloud: Deployment Options for ActuateOne With the increase in information analysis needs and an explosion of digital information, companies today are faced with the prospect

More information

Oracle Database 10g Express

Oracle Database 10g Express Oracle Database 10g Express This tutorial prepares the Oracle Database 10g Express Edition Developer to perform common development and administrative tasks of Oracle Database 10g Express Edition. Objectives

More information

Mitigation Planning Portal MPP Reporting System

Mitigation Planning Portal MPP Reporting System Mitigation Planning Portal MPP Reporting System Updated: 7/13/2015 Introduction Access the MPP Reporting System by clicking on the Reports tab and clicking the Launch button. Within the system, you can

More information

BIRT Performance Scorecard Root Cause Analysis and Data Visualization The Path to Higher Performance

BIRT Performance Scorecard Root Cause Analysis and Data Visualization The Path to Higher Performance BIRT Performance Scorecard Root Cause Analysis and Data Visualization The Path to Higher Performance Best-in-Class Performance Management powered by Best-in-Class Business Intelligence BIRT Performance

More information

Quick Start SAP Sybase IQ 16.0

Quick Start SAP Sybase IQ 16.0 Quick Start SAP Sybase IQ 16.0 UNIX/Linux DOCUMENT ID: DC01687-01-1600-01 LAST REVISED: February 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication pertains to Sybase software and

More information

Business Interaction Server. Configuration Guide. 10300685-000 Rev A

Business Interaction Server. Configuration Guide. 10300685-000 Rev A Business Interaction Server Configuration Guide 10300685-000 Rev A 2008 Kofax Image Products, Inc., 16245 Laguna Canyon Road, Irvine, California 92618, U.S.A. All rights reserved. Use is subject to license

More information

Using EMC Documentum with Adobe LiveCycle ES

Using EMC Documentum with Adobe LiveCycle ES Technical Guide Using EMC Documentum with Adobe LiveCycle ES Table of contents 1 Deployment 3 Managing LiveCycle ES development assets in Documentum 5 Developing LiveCycle applications with contents in

More information

ADP Workforce Now V3.0

ADP Workforce Now V3.0 ADP Workforce Now V3.0 Manual What s New Checks in and Custom ADP Reporting Grids V12 Instructor Handout Manual Guide V10171180230WFN3 V09171280269ADPR12 2011 2012 ADP, Inc. ADP s Trademarks The ADP Logo

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

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

Crystal Reports Server Quick Installation Guide

Crystal Reports Server Quick Installation Guide Crystal Reports Server Quick Installation Guide Crystal Reports Server Windows Patents Trademarks Copyright Business Objects owns the following U.S. patents, which may cover products that are offered and

More information

Ad-hoc Reporting Report Designer

Ad-hoc Reporting Report Designer Ad-hoc Reporting Report Designer AD- H O C R E P O R T D E S I G N E R M A N U A L 2012 NonProfit Technologies, Inc. All Rights Reserved. This document contains proprietary information which is protected

More information

Presentation Reporting Quick Start

Presentation Reporting Quick Start Presentation Reporting Quick Start Topic 50430 Presentation Reporting Quick Start Websense Web Security Solutions Updated 19-Sep-2013 Applies to: Web Filter, Web Security, Web Security Gateway, and Web

More information

OnCommand Report 1.2. OnCommand Report User Guide. NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S.

OnCommand Report 1.2. OnCommand Report User Guide. NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S. OnCommand Report 1.2 OnCommand Report User Guide NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S. Telephone: +1(408) 822-6000 Fax: +1(408) 822-4501 Support telephone: +1 (888) 463-8277 Web: www.netapp.com

More information

Release Bulletin EAServer 6.3.1 for HP-UX Itanium and IBM AIX

Release Bulletin EAServer 6.3.1 for HP-UX Itanium and IBM AIX Release Bulletin EAServer 6.3.1 for HP-UX Itanium and IBM AIX Document ID: DC01639-01-0631-02 Last revised: July 2011 Copyright 2011 by Sybase, Inc. All rights reserved. Sybase trademarks can be viewed

More information

PowerSchool Student Information System

PowerSchool Student Information System Oracle ODBC Configuration and Client Installation Guide PowerSchool Student Information System Released July 9, 2008 Document Owner: Documentation Services This edition applies to Release 5.2 of the PowerSchool

More information