Splunk Dashboard Framework What s New Nicholas Filippi Product Management, Splunk

Size: px
Start display at page:

Download "Splunk Dashboard Framework What s New Nicholas Filippi Product Management, Splunk"

Transcription

1 Copyright 2014 Splunk Inc. Splunk Dashboard Framework What s New Nicholas Filippi Product Management, Splunk Mathew ElDng Lead Engineer, Splunk

2 Disclaimer During the course of this presentadon, we may make forward- looking statements regarding future events or the expected performance of the company. We caudon you that such statements reflect our current expectadons and esdmates based on factors currently known to us and that actual events or results could differ materially. For important factors that may cause actual results to differ from those contained in our forward- looking statements, please review our filings with the SEC. The forward- looking statements made in the this presentadon are being made as of the Dme and date of its live presentadon. If reviewed aser its live presentadon, this presentadon may not contain current or accurate informadon. We do not assume any obligadon to update any forward- looking statements we may make. In addidon, any informadon about our roadmap outlines our general product direcdon and is subject to change at any Dme without nodce. It is for informadonal purposes only, and shall not be incorporated into any contract or other commitment. Splunk undertakes no obligadon either to develop the features or funcdonality described or to include any such feature or funcdonality in a future release. 2

3 About Us! Nicholas Filippi Sr. Product Manager! Mathew ElDng Engineering Lead, Splunk Core UI Simple XML / HTML Dashboards Splunk Web Splunk Licensing Modular Inputs Alerting Splunk 6.x Dashboard Examples 3

4 About You! Anyone looking to build dashboards on the Splunk playorm! Interested in What you can do within Simple XML What new in the Splunk dashboard framework What tools you have available What is XML? Advanced XML Pro Web Developer Simple XML Dev Hacker 4

5 Agenda! Splunk dashboard/web framework(s)! What s new in Splunk 6.1! What s new in Splunk 6.2! Example walk- throughs Form inputs Search management VisualizaDons Drilldown 5

6 Splunk Dashboards 6

7 Splunk Dashboards A collecdon of searches, visualizadons, and interacdvity designed to tell a story with data Interactivity Layout Visualizations 7

8 Splunk Web Framework Visual Editor Simple XML Custom HTML w/ Splunk JS Stack Advanced XML 100% GUI Driven; drag- and- drop panels. Basic visual edidng XML config driven; constrained, defined object model. Internally supported. Full HTML support. Leverage library of js components. XML config driven; unconstrained; internally/ externally supported When to Use PDF PrinDng (full) Drag- and- Drop (full) Form Inputs Dynamic Drilldown Tokens Layout (row grouping) Add opdons / parameters PDF PrinDng (full) Drag- and- Drop (full) Extensions Custom Layout Custom Form Inputs AddiDonal interacdvity New VisualizaDons Custom javascript Custom Layout Custom Form Inputs AddiDonal interacdvity New VisualizaDons Legacy support Reusable modules 8

9 What s New: Splunk 6.1 9

10 Splunk 6.1 What s New! Form Editor UI UI to add/edit/arrange form inputs MulD- select & checkbox inputs MulDple Dme range picker support! InteracDvity Contextual drilldown (in- page drilldown) Universal dynamic drilldown! Other Panel inputs Panel refresh controls Build more interacdvity into your dashboards 10

11 Form Editor UI Add form inputs and build interacdvity without having to edit xml configuradon! UI to add/edit inputs Full configuradon support Set token namespace Auto- run, searchwhenchanged! Drag- and- drop Arrange within global space Drag to panel for inline! MulD- select/checkbox MulD- value inputs 11

12 MulD- Select & Checkbox Form Inputs Enable muld- value user input selecdon, and translate to search! Build complex query strings with muld- value inputs valueprefix valuesuffix delimiter! Permalink support Pass muld- value form selecdons via URL?form.field=val1&form.field=val2 12

13 MulD- Select & Checkbox Form Inputs <searchstring>index=_internal $sourcetype_token$</searchstring> Result index=_internal (sourcetype= scheduler OR sourcetype= splunkd ) Process <input type="multiselect" token="sourcetype_token" searchwhenchanged="true"> <default>scheduler, splunkd</default> <prefix>(</prefix> <suffix>)</suffix> <valueprefix>sourcetype="</valueprefix> <valuesuffix>"</valuesuffix> <delimiter> OR </delimiter> <populatingsearch earliest="0" latest="" fieldforlabel="sourcetype" fieldforvalue="sourcetype">index=_internal stats count by sourcetype</populatingsearch> </input> 13

14 MulDple Time Range Pickers Compare metrics across muldple Dme windows! 100% UI Driven! Add MulDple Time Pickers Set unique namespace! Explicit binding of search to Dme TRP, explicit inline, advanced <earliesttime>$inpanel2.earliest$</earliesttime> <latesttime>$inpanel2.latest$</latesttime> 14

15 Contextual (in- page) Drilldown Improve user efficiency with interacdve views! Click to see more details without having to leave the page! Allow for other panels and searches to react to user clicks Build complex interacdon between panel elements Leverage token availability everywhere 15

16 Contextual (in- page) Drilldown! Step 1 Use drilldown click event to set token(s) rather than link to other views Trigger same ac@on for all cell clicks <drilldown> <set token="showtable">true</set> <set token="selected_sourcetype">$row.sourcetype$</set> <set token= sourcetype_query >sourcetype= $row.sourcetype$ </set> </drilldown> Enable different ac@ons for each field click <drilldown> <condition field="sourcetype"> <!-- for the column sourcetype, do the following --> <set token="showtable">true</set> <set token="selected_sourcetype">$click.value2$</set> <unset token="showchart"/> </condition> <condition field="*"> <!-- for all other columns, do the following --> <set token="showchart">true</set> <set token="count">$row.count$</set> <unset token="showtable"/> </condition> </drilldown> 16

17 Contextual (in- page) Drilldown! Step 2 Show/hide dashboard elements based on token existence Show table based on existence of one or more tokens <table depends="$showtable$,$selected_sourcetype$"> <option name= foo >bar</option> </table> Hide table based on the existence of one or more tokens <table rejects="$showchart$"> <option name= foo >bar</option> </table> 17

18 Universal Dynamic Drilldown Build workflow and dashboard linking for any user click event! Dynamic drilldown now available for all dashboard elements Not just table and chart Single, table, chart, event, map! Same syntax, same behavior Click informadon: $click.name$, $click.name2$, $click.value$,$click.value2$, $row.<field_name>$ AddiDonal map- related: $click.lat.name$, $click.lon.name$, $click.lat.value$, $click.lon.value$, $click.bounds.north$, $click.bounds.south$, $click.bounds.east$, $click.bounds.west$ Other: $earliest$, $latest$, any page- level tokens <single> <searchstring>index=sfpd Resolution="NONE" stats count</searchstring> <earliesttime>0</earliesttime> <latesttime>now</latesttime> <option name="afterlabel">unresolved Incidents</option> <drilldown> <link>incident_listing_search?form.s_resolution=none</link> </drilldown> </single> 18

19 Universal Dynamic Drilldown Tips & Tricks: Create a test dashboard that uses the new contextual drilldown to set tokens, and display in an html element <form> <row> <panel> <chart> <searchstring>index=_internal timechart count by sourcetype</searchstring> <earliesttime>$field1.earliest$</earliesttime> <latesttime>$field1.latest$</latesttime> <option name="charting.drilldown">all</option> <drilldown> <set token="table1.click.name">$click.name$</set> <set token="table1.click.name2">$click.name2$</set> <set token="table1.click.value">$click.value$</set> <set token="table1.click.value2">$click.value2$</set> <set token="table1.row.sourcetype">$row.sourcetype$</set> <set token="table1.earliest">$earliest$</set> <set token="table1.latest">$latest$</set> </drilldown> </chart> <html> <ul> <li><code>click.name: $table1.click.name$</code></li> <li><code>click.name2: $table1.click.name2$</code></li> <li><code>click.value: $table1.click.value s$</code></li> <li><code>click.value2: $table1.click.value2 s$</code></li> <li><code>row.sourcetype = $table1.row.sourcetype$</code></li> <li><code>timerange: $table1.earliest$ - $table1.latest$</code></li> </ul> </html> </panel> </row> </form> 19

20 ! Use for comparison dashboards! Use for panel- specific inputs! Drag- and- drop form inputs into panels! New <panel> node Replaces row grouping Default behavior: ê For single, orient horizontally ê For all other, orient verdcal Panel Inputs Create context specific form inputs 20

21 Panel Refresh Controls Manual or automated refresh controls for panel elements! Enable/disable manual refresh link Default: enabled (except for single) <opdon name="refresh.link.visible">false</ opdon>! Set autorefresh Refresh element aser X seconds <opdon name="refresh.auto.interval">30</ opdon>! Control refresh Dme rendering Default: enabled <opdon name="refresh.dme.visible">false</ opdon> 21

22 What s New: Splunk

23 Splunk 6.2 What s New! Key Features Prebuilt Panels MulD- Search Management Input MulD- token Se{er Dropdown/MulDselect Custom Values support Dashboard Display Controls 23

24 Prebuilt Panels Build custom dashboards faster using prebuilt panels packaged within apps! Packaged within apps and add- ons! Purpose- built for dashboard re- use No further configuradon required by users! Panel objects may include MulDple searches MulDple visualizadons Full drilldown (including in- page, contextual) Form inputs! New add workflow Browse, discover, search, and preview Browse reports, other dashboards, and prebuilt panels 24

25 Prebuilt Panels Technical Details! Panels are new knowledge objects in Splunk Included in dashboard by reference! Management/Permissions UI: Se ngs > User interface > Prebuilt panels FS: $SPLUNK_HOME/etc/apps/<app_name>/default/ data/ui/panels Syntax for default.meta is [panels]! Building panels Via dashboard editor (recommended) ê Build panel > convert to prebuilt panel Via manager page ê Required for edidng! Convert to Inline For any customizadon Note: Panels do not support custom js/css extensions 25

26 MulD- Search Management Improve search efficiency in your dashboards with muldple background searches! Run muldple background searches Locate within global space, or within panels! Post- process search binding! Re- use search results to drive visualizadons, form inputs, and more! Normalized search syntax Replaces current, confusing search syntax <searchtemplate>, <searchstring>, <searchpostprocess>, <populadngsearch>, <populadngsavedsearch>! Splunk 6.2 is fully backward compadble 26

27 MulD- Search Management! ExisDng scenarios (using new search syntax): Inline search that drives a single visualizadon Report- based search that drives a single visualizadon Inline search that populates available choices in a form input Report- based search that populates available choices in a form input Single global search to drive muldple visualizadons w/ and w/o post process! Newly Enabled Scenarios: MulDple background searches that can be referenced directly for visualizadons, or post processes Binding form input to a global search both directly, and using post process filtering Nested post process Performance opdmizadons for token subsdtudon- based searches 27

28 Form Input MulD- token Se{er! Key use cases: Se ng tokens for labels Simple Dme range pickers Cascading form input controls Complex token se ng w/ search HiddenSearchSwapper! On <change> event OpDonally use <condidon> logic ê For value or label Then use standard <set token= ></set> Integrate more logic into form inputs 28

29 Free- Form Text Support for Dropdown/MulD- Select! Operates similar to text input w/ auto- complete assistance! Key use cases: Best for hostname- type inputs Inputs where you may want to use * wildcards! Enable via XML <allowcustomvalues>true</ allowcustomvalues> Default is false Integrate more logic into form inputs 29

30 Dashboard Display Controls Enable/disable dashboard chrome and controls! Enhanced OEM and/or embed capabilides! 2 IntegraDon points As h{p get param As form/dashboard a{ribute! New a{ributes/parameters available hidesplunkbar - Hides just the splunkbar hideappbar - Hides just the appbar hidefooter - Hides just the footer hidechrome - Shortcut to hide splunkbar, appbar, and footer hidetitle - Hides Dtle and descripdon hideedit - Hides all the dashboard controls 30

31 Walk- Through Demos 31

32 Summary 32

33 Wrap- Up! Leverage the newest dashboard funcdonality Form inputs for greater dashboard authoring efficiency ê MulD- select inputs, advanced token logic, Dme picker binding Drilldown & interacdvity ê Dynamic drilldown to link pages, contextual drilldown for in- page interacdvity Prebuilt panels ê Enable content sharing, leverage prebuilt content within apps! Use Splunk 6.x Dashboard Examples App 33

34 Come Visit Ask the Dashboard For assistance with troublesome dashboards! For migradon Dps! To brag about something cool you built! To ask quesdons! Or, just to say hi! 34

35 THANK YOU

PaDent Privacy Monitoring with Splunk

PaDent Privacy Monitoring with Splunk Copyright 2015 Splunk Inc. PaDent Privacy Monitoring with Splunk Davin Studer Systems Analyst, The Vancouver Clinic Disclaimer During the course of this presentadon, we may make forward looking statements

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

Predict, Alert, Manage, and OpDmize an Ecosystem with Splunk

Predict, Alert, Manage, and OpDmize an Ecosystem with Splunk Copyright 2015 Splunk Inc. Predict, Alert, Manage, and OpDmize an Ecosystem with Splunk Tom Twait & Chris Hogan Cerner EDI Manager, Sr. EDI SoluDon Architect Disclaimer During the course of this presentadon,

More information

Embedded BI made easy

Embedded BI made easy June, 2015 1 Embedded BI made easy DashXML makes it easy for developers to embed highly customized reports and analytics into applications. DashXML is a fast and flexible framework that exposes Yellowfin

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

Workflow ProducCvity in Splunk Enterprise

Workflow ProducCvity in Splunk Enterprise Copyright 2013 Splunk Inc. Workflow ProducCvity in Splunk Enterprise Carl Yestrau Sr. So

More information

IBM Unica emessage Version 8 Release 6 February 13, 2015. User's Guide

IBM Unica emessage Version 8 Release 6 February 13, 2015. User's Guide IBM Unica emessage Version 8 Release 6 February 13, 2015 User's Guide Note Before using this information and the product it supports, read the information in Notices on page 403. This edition applies to

More information

ANGULAR JS SOFTWARE ENGINEERING FOR WEB SERVICES HASAN FAIZAL K APRIL,2014

ANGULAR JS SOFTWARE ENGINEERING FOR WEB SERVICES HASAN FAIZAL K APRIL,2014 ANGULAR JS SOFTWARE ENGINEERING FOR WEB SERVICES HASAN FAIZAL K APRIL,2014 What is Angular Js? Open Source JavaScript framework for dynamic web apps. Developed in 2009 by Miško Hevery and Adam Abrons.

More information

Nintex Forms 2013 Help

Nintex Forms 2013 Help Nintex Forms 2013 Help Last updated: Friday, April 17, 2015 1 Administration and Configuration 1.1 Licensing settings 1.2 Activating Nintex Forms 1.3 Web Application activation settings 1.4 Manage device

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

CRM Global Search: Installation & Configuration

CRM Global Search: Installation & Configuration Installation ***Important: It is highly recommended that you first take a backup of your current CRM Application Ribbons prior to importing this solution. Please do so by navigating to Settings > Solutions

More information

The Smart Forms Web Part allows you to quickly add new forms to SharePoint pages, here s how:

The Smart Forms Web Part allows you to quickly add new forms to SharePoint pages, here s how: User Manual First of all, congratulations on being a person of high standards and fine tastes! The Kintivo Forms web part is loaded with features which provide you with a super easy to use, yet very powerful

More information

Top 10 Oracle SQL Developer Tips and Tricks

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

More information

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

Site Configuration Mobile Entrée 4

Site Configuration Mobile Entrée 4 Table of Contents Table of Contents... 1 SharePoint Content Installed by ME... 3 Mobile Entrée Base Feature... 3 Mobile PerformancePoint Application Feature... 3 Mobile Entrée My Sites Feature... 3 Site

More information

from Microsoft Office

from Microsoft Office OOoCon 2003 Migrating from Microsoft Office to OpenOffice.org/StarOffice by Frank Gamerdinger frank.gamerdinger@sun.com 1 Who needs migration? OpenOffice.org & StarOffice - only the brave!(?) 2 Agenda

More information

TIBCO JASPERREPORTS SERVER USER GUIDE

TIBCO JASPERREPORTS SERVER USER GUIDE TIBCO JASPERREPORTS SERVER USER GUIDE RELEASE 6.1 http://www.jaspersoft.com Copyright 2005-2015, TIBCO Software Inc. All rights reserved. Printed in the U.S.A. TIBCO, the TIBCO logo, TIBCO Jaspersoft,

More information

Application for Splunk Enterprise

Application for Splunk Enterprise Application for Splunk Enterprise User Guide Document Version 1.77 28 October 2015 10004-01 EN Rev. A 2015 ThreatConnect, Inc. ThreatConnect is a registered trademark of ThreatConnect, Inc. UNIX is a registered

More information

Excel 2003 Tutorials - Video File Attributes

Excel 2003 Tutorials - Video File Attributes Using Excel Files 18.00 2.73 The Excel Environment 3.20 0.14 Opening Microsoft Excel 2.00 0.12 Opening a new workbook 1.40 0.26 Opening an existing workbook 1.50 0.37 Save a workbook 1.40 0.28 Copy a workbook

More information

Sitecore Dashboard User Guide

Sitecore Dashboard User Guide Sitecore Dashboard User Guide Contents Overview... 2 Installation... 2 Getting Started... 3 Sample Widgets... 3 Logged In... 3 Job Viewer... 3 Workflow State... 3 Publish Queue Viewer... 4 Quick Links...

More information

J j enterpririse. Oracle Application Express 3. Develop Native Oracle database-centric web applications quickly and easily with Oracle APEX

J j enterpririse. Oracle Application Express 3. Develop Native Oracle database-centric web applications quickly and easily with Oracle APEX Oracle Application Express 3 The Essentials and More Develop Native Oracle database-centric web applications quickly and easily with Oracle APEX Arie Geller Matthew Lyon J j enterpririse PUBLISHING BIRMINGHAM

More information

3 What s New in Excel 2007

3 What s New in Excel 2007 3 What s New in Excel 2007 3.1 Overview of Excel 2007 Microsoft Office Excel 2007 is a spreadsheet program that enables you to enter, manipulate, calculate, and chart data. An Excel file is referred to

More information

Microsoft Office System Tip Sheet

Microsoft Office System Tip Sheet The 2007 Microsoft Office System The 2007 Microsoft Office system is a complete set of desktop and server software that can help streamline the way you and your people do business. This latest release

More information

Custom Reporting System User Guide

Custom Reporting System User Guide Citibank Custom Reporting System User Guide April 2012 Version 8.1.1 Transaction Services Citibank Custom Reporting System User Guide Table of Contents Table of Contents User Guide Overview...2 Subscribe

More information

Accelera'ng Your Solu'on Development with Splunk Reference Apps

Accelera'ng Your Solu'on Development with Splunk Reference Apps Copyright 2015 Splunk Inc. Accelera'ng Your Solu'on Development with Splunk Reference Apps Grigori Melnik Principal Product Manager Developer PlaAorm, Splunk @gmelnik Disclaimer During the course of this

More information

Lead Management in Sugar 7

Lead Management in Sugar 7 Attract. Convert. Retain. Lead Management in Sugar 7 Written by: Josh Sweeney and Briana Gross www.atcoresystems.com Atcore Systems, LLC 2014 All rights reserved. No part of this publication may be reproduced

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

Creating Basic Custom Monitoring Dashboards Antonio Mangiacotti, Stefania Oliverio & Randy Allen

Creating Basic Custom Monitoring Dashboards Antonio Mangiacotti, Stefania Oliverio & Randy Allen Creating Basic Custom Monitoring Dashboards by Antonio Mangiacotti, Stefania Oliverio & Randy Allen v1.1 Introduction With the release of IBM Tivoli Monitoring 6.3 and IBM Dashboard Application Services

More information

Developing a highly dynamic web application for a large bank using rules-based technology

Developing a highly dynamic web application for a large bank using rules-based technology Developing a highly dynamic web application for a large bank using rules-based technology Part 1: Requirements and zooming in on a solution Part 2: Design and development Part 3: Conclusion and lessons

More information

Excel 2007 Tutorials - Video File Attributes

Excel 2007 Tutorials - Video File Attributes Get Familiar with Excel 2007 42.40 3.02 The Excel 2007 Environment 4.10 0.19 Office Button 3.10 0.31 Quick Access Toolbar 3.10 0.33 Excel 2007 Ribbon 3.10 0.26 Home Tab 5.10 0.19 Insert Tab 3.10 0.19 Page

More information

Create Analysis, Interactive Reports, and Dashboards

Create Analysis, Interactive Reports, and Dashboards Create Analysis, Interactive Reports, and Dashboards This document supports Pentaho Business Analytics Suite 5.0 GA and Pentaho Data Integration 5.0 GA, documentation revision February 3, 2014, copyright

More information

SAP BusinessObjects Dashboards

SAP BusinessObjects Dashboards SAP BusinessObjects Dashboards Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase decision. This presentation is not subject to your license

More information

DNNCentric Custom Form Creator. User Manual

DNNCentric Custom Form Creator. User Manual DNNCentric Custom Form Creator User Manual Table of contents Introduction of the module... 3 Prerequisites... 3 Configure SMTP Server... 3 Installation procedure... 3 Creating Your First form... 4 Adding

More information

Vulnerability Management with the Splunk App for Enterprise Security

Vulnerability Management with the Splunk App for Enterprise Security Copyright 2014 Splunk Inc. Vulnerability Management with the Splunk App for Enterprise Security Randal T. Rioux Principal Security Strategist and Minister of Offense Splunk Inc. Disclaimer During the course

More information

Intellect Platform - Tables and Templates Basic Document Management System - A101

Intellect Platform - Tables and Templates Basic Document Management System - A101 Intellect Platform - Tables and Templates Basic Document Management System - A101 Interneer, Inc. 4/12/2010 Created by Erika Keresztyen 2 Tables and Templates - A101 - Basic Document Management System

More information

Course Descriptions for Focused Learning Classes

Course Descriptions for Focused Learning Classes Course Descriptions for Focused Learning Classes Excel Word PowerPoint Access Outlook Adobe Visio Publisher FrontPage Dreamweaver EXCEL Classes Excel Pivot Tables 2 hours Understanding Pivot Tables Examining

More information

SAP Dashboard. Mohammed Wahaj

SAP Dashboard. Mohammed Wahaj SAP Dashboard Mohammed Wahaj Interactive analytics is an analytic capability and Dashboard is an information delivery capability. Gatner SAP Dashboard is one of the products which is offered under the

More information

Building Rich Internet Applications with PHP and Zend Framework

Building Rich Internet Applications with PHP and Zend Framework Building Rich Internet Applications with PHP and Zend Framework Stanislav Malyshev Software Architect, Zend Technologies IDG: RIAs offer the potential for a fundamental shift in the experience of Internet

More information

Splunk Enterprise 6.2.3

Splunk Enterprise 6.2.3 Splunk Enterprise 6.2.3 Data Model and Pivot Tutorial Generated: 6/07/2015 11:12 pm Copyright (c) 2015 Splunk Inc. All Rights Reserved Table of Contents Introduction...1 About the Data Model and Pivot

More information

MAX 2006 Beyond Boundaries

MAX 2006 Beyond Boundaries MAX 2006 Beyond Boundaries Matthew Boles Adobe Customer Training Technical Lead RI101H: Your First RIA with Flex 2 October 24-26, 2006 1 What You Will Learn Functionality of the Flex product family The

More information

TIBCO Spotfire Business Author Essentials Quick Reference Guide. Table of contents:

TIBCO Spotfire Business Author Essentials Quick Reference Guide. Table of contents: Table of contents: Access Data for Analysis Data file types Format assumptions Data from Excel Information links Add multiple data tables Create & Interpret Visualizations Table Pie Chart Cross Table Treemap

More information

Umbraco v4 Editors Manual

Umbraco v4 Editors Manual Umbraco v4 Editors Manual Produced by the Umbraco Community Umbraco // The Friendly CMS Contents 1 Introduction... 3 2 Getting Started with Umbraco... 4 2.1 Logging On... 4 2.2 The Edit Mode Interface...

More information

How to Work with SAP Crystal Reports in SAP Business One

How to Work with SAP Crystal Reports in SAP Business One l How-To Guide SAP Business One 9.0, 9.1 Document Version: 1.5 2014-09-22 How to Work with SAP Crystal Reports in SAP Business One All Countries Typographic Conventions Type Style Example Description Words

More information

OpenText Information Hub (ihub) 3.1 and 3.1.1

OpenText Information Hub (ihub) 3.1 and 3.1.1 OpenText Information Hub (ihub) 3.1 and 3.1.1 OpenText Information Hub (ihub) 3.1.1 meets the growing demand for analytics-powered applications that deliver data and empower employees and customers to

More information

Chapter 19: XML. Working with XML. About XML

Chapter 19: XML. Working with XML. About XML 504 Chapter 19: XML Adobe InDesign CS3 is one of many applications that can produce and use XML. After you tag content in an InDesign file, you save and export the file as XML so that it can be repurposed

More information

How To Convert A Lead In Sugarcrm

How To Convert A Lead In Sugarcrm Attract. Convert. Retain. Lead Management in SugarCRM Written by: Josh Sweeney and Matthew Poer www.atcoresystems.com Atcore Systems, LLC 2010 All rights reserved. No part of this publication may be reproduced

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

IBM BPM V8.5 Standard Consistent Document Managment

IBM BPM V8.5 Standard Consistent Document Managment IBM Software An IBM Proof of Technology IBM BPM V8.5 Standard Consistent Document Managment Lab Exercises Version 1.0 Author: Sebastian Carbajales An IBM Proof of Technology Catalog Number Copyright IBM

More information

Dashboard Builder TM for Access

Dashboard Builder TM for Access Dashboard Builder TM for Access Professional Edition Application Guide Version 5 8/8/15 This document is copyright 2007-2015 OpenGate Software. The information contained in this document is subject to

More information

This guide provides additional information about topics covered in the webinar

This guide provides additional information about topics covered in the webinar This guide provides additional information about topics covered in the webinar Scan to go there now! Copyright 2012 X.commerce, Inc. All rights reserved. Contents CHAPTER 1: Leveraging Store Content 1

More information

How to Work with Crystal Reports in SAP Business One

How to Work with Crystal Reports in SAP Business One SAP Business One How-To Guide PUBLIC How to Work with Crystal Reports in SAP Business One Applicable Release: SAP Business One 8.8 All Countries English January 2010 Table of Contents Introduction... 4

More information

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1 Migrating to Excel 2010 - Excel - Microsoft Office 1 of 1 In This Guide Microsoft Excel 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key

More information

Trial version of GADD Dashboards Builder

Trial version of GADD Dashboards Builder Trial version of GADD Dashboards Builder Published 2014-02 gaddsoftware.com Table of content 1. Introduction... 3 2. Getting started... 3 2.1. Start the GADD Dashboard Builder... 3 2.2. Example 1... 3

More information

<Insert Picture Here>

<Insert Picture Here> פורום BI 21.5.2013 מה בתוכנית? בוריס דהב Embedded BI Column Level,ROW LEVEL SECURITY,VPD Application Role,security טובית לייבה הפסקה OBIEE באקסליבריס נפתלי ליברמן - לימור פלדל Actionable

More information

2/24/2010 ClassApps.com

2/24/2010 ClassApps.com SelectSurvey.NET Training Manual This document is intended to be a simple visual guide for non technical users to help with basic survey creation, management and deployment. 2/24/2010 ClassApps.com Getting

More information

IBM Information Server

IBM Information Server IBM Information Server Version 8 Release 1 IBM Information Server Administration Guide SC18-9929-01 IBM Information Server Version 8 Release 1 IBM Information Server Administration Guide SC18-9929-01

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

Reporting Services. White Paper. Published: August 2007 Updated: July 2008

Reporting Services. White Paper. Published: August 2007 Updated: July 2008 Reporting Services White Paper Published: August 2007 Updated: July 2008 Summary: Microsoft SQL Server 2008 Reporting Services provides a complete server-based platform that is designed to support a wide

More information

Copyright 2013 Splunk Inc. Introducing Splunk 6

Copyright 2013 Splunk Inc. Introducing Splunk 6 Copyright 2013 Splunk Inc. Introducing Splunk 6 Safe Harbor Statement During the course of this presentation, we may make forward looking statements regarding future events or the expected performance

More information

Welcome to the topic on approval procedures in SAP Business One.

Welcome to the topic on approval procedures in SAP Business One. Welcome to the topic on approval procedures in SAP Business One. 1 After completing this topic, you will be able describe the business process flow when an approval procedure is used, and set up a new

More information

DataPA OpenAnalytics End User Training

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

More information

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1

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

More information

Ernesto Ongaro BI Consultant February 19, 2013. The 5 Levels of Embedded BI

Ernesto Ongaro BI Consultant February 19, 2013. The 5 Levels of Embedded BI Ernesto Ongaro BI Consultant February 19, 2013 The 5 Levels of Embedded BI Saleforce.com CRM 2013 Jaspersoft Corporation. 2 Blogger 2013 Jaspersoft Corporation. 3 Linked In 2013 Jaspersoft Corporation.

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

Sample- for evaluation purposes only. Advanced Crystal Reports. TeachUcomp, Inc.

Sample- for evaluation purposes only. Advanced Crystal Reports. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2011 Advanced Crystal Reports TeachUcomp, Inc. it s all about you Copyright: Copyright 2011 by TeachUcomp, Inc. All rights reserved.

More information

EMAIL CAMPAIGNS...5 LIST BUILDER FORMS...

EMAIL CAMPAIGNS...5 LIST BUILDER FORMS... Basic User Guide Table of Contents INTRODUCTION...1 CAMPAIGNER FEATURES...1 WHO SHOULD READ THIS GUIDE?...1 GETTING STARTED...2 LOGGING IN TO CAMPAIGNER...2 DASHBOARD...3 Modify Your Dashboard...4 EMAIL

More information

Spotfire v6 New Features. TIBCO Spotfire Delta Training Jumpstart

Spotfire v6 New Features. TIBCO Spotfire Delta Training Jumpstart Spotfire v6 New Features TIBCO Spotfire Delta Training Jumpstart Map charts New map chart Layers control Navigation control Interaction mode control Scale Web map Creating a map chart Layers are added

More information

Ad Hoc Analysis of Big Data Visualization

Ad Hoc Analysis of Big Data Visualization Ad Hoc Analysis of Big Data Visualization Dean Yao Director of Marketing Greg Harris Systems Engineer Follow us @Jinfonet #BigDataWebinar JReport Highlights Advanced, Embedded Data Visualization Platform:

More information

QAD Business Intelligence Dashboards Demonstration Guide. May 2015 BI 3.11

QAD Business Intelligence Dashboards Demonstration Guide. May 2015 BI 3.11 QAD Business Intelligence Dashboards Demonstration Guide May 2015 BI 3.11 Overview This demonstration focuses on one aspect of QAD Business Intelligence Business Intelligence Dashboards and shows how this

More information

Sage CRM. 7.2 Mobile Guide

Sage CRM. 7.2 Mobile Guide Sage CRM 7.2 Mobile Guide Copyright 2013 Sage Technologies Limited, publisher of this work. All rights reserved. No part of this documentation may be copied, photocopied, reproduced, translated, microfilmed,

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

Big Data Visualization and Dashboards

Big Data Visualization and Dashboards Big Data Visualization and Dashboards Boney Pandya Marketing Manager Greg Harris Systems Engineer Follow us @Jinfonet #BigDataWebinar JReport Highlights Advanced, Embedded Data Visualization Platform:

More information

1 2 3 4 5 It s more than a buzz word there are people making lots of money and highly sought a?er by businesses BI allows companies to track employees how long they ve been with the company, when are they

More information

Cal Answers Analysis Training Part III. Advanced OBIEE - Dashboard Reports

Cal Answers Analysis Training Part III. Advanced OBIEE - Dashboard Reports Cal Answers Analysis Training Part III Advanced OBIEE - Dashboard Reports University of California, Berkeley March 2012 Table of Contents Table of Contents... 1 Overview... 2 Remember How to Create a Query?...

More information

Salient Dashboard Designer 5.75. Training Guide

Salient Dashboard Designer 5.75. Training Guide Salient Dashboard Designer 5.75 Training Guide Salient Dashboard Designer Salient Dashboard Designer enables your team to create interactive consolidated visualizations of decision support intelligence,

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

Filtered Views for Microsoft Dynamics CRM

Filtered Views for Microsoft Dynamics CRM Filtered Views for Microsoft Dynamics CRM Version 4.2.13, March 5, 2010 Copyright 2009-2010 Stunnware GmbH - 1 of 32 - Contents Overview... 3 How it works... 4 Setup... 5 Contents of the download package...

More information

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1

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

More information

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

Consider the possible problems with storing the following data in a spreadsheet:

Consider the possible problems with storing the following data in a spreadsheet: Microsoft Access 2010 Part 1: Introduction to Database Design What is a database? Identifying entities and attributes Understanding relationships and keys Developing tables and other objects Planning a

More information

7.0 BW Budget Formulation Report Tips and Tricks

7.0 BW Budget Formulation Report Tips and Tricks 7.0 BW Budget Formulation Report Tips and Tricks Sections: A. Variables Entry Options for Entering Selections B. Variables Entry Screen Personalization and Screen Variants C. Bookmarks D. Print in PDF

More information

Sage CRM. Sage CRM 7.3 Mobile Guide

Sage CRM. Sage CRM 7.3 Mobile Guide Sage CRM Sage CRM 7.3 Mobile Guide Copyright 2014 Sage Technologies Limited, publisher of this work. All rights reserved. No part of this documentation may be copied, photocopied, reproduced, translated,

More information

How to Quickly Create Custom Applications in SharePoint 2010 or 2013 without Custom Code

How to Quickly Create Custom Applications in SharePoint 2010 or 2013 without Custom Code How to Quickly Create Custom Applications in SharePoint 2010 or 2013 without Custom Code A Guide through Web Parts in Quick Apps for SharePoint By Dan Barker, product manager, Dell Software Table of Contents

More information

Sage CRM 2015 R1 Release Preview

Sage CRM 2015 R1 Release Preview Sage CRM 2015 R1 Release Preview Introduction This Release Preview provides information about new Sage CRM 2015 R1 features, and enhancements to existing features. We ve included a description of each

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

mframe Software Development Platform KEY FEATURES

mframe Software Development Platform KEY FEATURES mframe Software Development Platform mframe is a comprehensive software development platform for building modern modular WEB and B2B applications. It consists of basic core modules as well as other delevoped

More information

CUSTOMER SAP Cloud for Analytics User Guide User Guide

CUSTOMER SAP Cloud for Analytics User Guide User Guide SAP Cloud for Analytics CUSTOMER User Guide Content 1 Welcome to SAP Cloud for Analytics!.... 7 1.1 User Assistance.... 8 1.2 Additional Help Resources....9 2 Home....10 2.1 Creating a Note....10 2.2 Working

More information

Microsoft Excel Basics

Microsoft Excel Basics COMMUNITY TECHNICAL SUPPORT Microsoft Excel Basics Introduction to Excel Click on the program icon in Launcher or the Microsoft Office Shortcut Bar. A worksheet is a grid, made up of columns, which are

More information

SQL Server 2005 Reporting Services (SSRS)

SQL Server 2005 Reporting Services (SSRS) SQL Server 2005 Reporting Services (SSRS) Author: Alex Payne and Brian Welcker Published: May 2005 Summary: SQL Server 2005 Reporting Services is a key component of SQL Server 2005. Reporting Services

More information

Cognos Event Studio. Deliver By : Amit Sharma Presented By : Amit Sharma

Cognos Event Studio. Deliver By : Amit Sharma Presented By : Amit Sharma Cognos Event Studio Deliver By : Amit Sharma Presented By : Amit Sharma An Introduction Cognos Event Studio to notify decision-makers of events as they happen, so that they can make timely and effective

More information

E-Mail Campaign Manager 2.0 for Sitecore CMS 6.6

E-Mail Campaign Manager 2.0 for Sitecore CMS 6.6 E-Mail Campaign Manager 2.0 Marketer's Guide Rev: 2014-06-11 E-Mail Campaign Manager 2.0 for Sitecore CMS 6.6 Marketer's Guide User guide for marketing analysts and business users Table of Contents Chapter

More information

Making Content Editable. Create re-usable email templates with total control over the sections you can (and more importantly can't) change.

Making Content Editable. Create re-usable email templates with total control over the sections you can (and more importantly can't) change. Making Content Editable Create re-usable email templates with total control over the sections you can (and more importantly can't) change. Single Line Outputs a string you can modify in the

More information

Session 3119 Mobilizing Your Dashboards Best Tips for the Mobile Market. Scott Leaver, SAP and Matt Lloyd, SAP

Session 3119 Mobilizing Your Dashboards Best Tips for the Mobile Market. Scott Leaver, SAP and Matt Lloyd, SAP Session 3119 Mobilizing Your Dashboards Best Tips for the Mobile Market Scott Leaver, SAP and Matt Lloyd, SAP Legal Disclaimer The information in this presentation is confidential and proprietary to SAP

More information

Getting Started with SurveyGizmo Stage 1: Creating Your First Survey

Getting Started with SurveyGizmo Stage 1: Creating Your First Survey Getting Started with SurveyGizmo Stage 1: Creating Your First Survey 1. Open SurveyGizmo site (http://www.surveygizmo.com) Log in 2. Click on Create Survey (see screen shot below) 3. Create Your Survey

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

Microsoft' Excel & Access Integration

Microsoft' Excel & Access Integration Microsoft' Excel & Access Integration with Office 2007 Michael Alexander and Geoffrey Clark J1807 ; pwiueyb Wiley Publishing, Inc. Contents About the Authors Acknowledgments Introduction Part I: Basic

More information

Create a PivotTable or PivotChart report

Create a PivotTable or PivotChart report Page 1 of 5 Excel Home > PivotTable reports and PivotChart reports > Basics Create or delete a PivotTable or PivotChart report Show All To analyze numerical data in depth and to answer unanticipated questions

More information

Portals and Hosted Files

Portals and Hosted Files 12 Portals and Hosted Files This chapter introduces Progress Rollbase Portals, portal pages, portal visitors setup and management, portal access control and login/authentication and recommended guidelines

More information

NINTEX WORKFLOW TIPS AND TRICKS. Eric Rhodes

NINTEX WORKFLOW TIPS AND TRICKS. Eric Rhodes NINTEX WORKFLOW TIPS AND TRICKS Eric Rhodes Table of Contents Eric Rhodes 1 Label It 2 Document Your Workflows with Action Labels Going Way Back 3 Backup Workflows with the Export Feature Name That Variable

More information

isupport 15 Release Notes

isupport 15 Release Notes isupport 15 Release Notes This document includes new features, changes, and fixes in isupport v15. The Readme.txt file included with the download includes a list of known issues. New Features in isupport

More information