LEARNING ABOUT MDX HANDOUT 1

Size: px
Start display at page:

Download "LEARNING ABOUT MDX HANDOUT 1"

Transcription

1 Learning about MDX Pako Chan, CPA, CA, CITP Manager, Business Solutions Group Introduction Pako Chan Manager, Business Solutions Group CPA-CA, CITP Auditor Deloitte 5 years Architect Prophix 6 years Agenda What is MDX? Why you should learn about MDX When should you use MDX? Troubleshooting MDX Where can you find more resources? Q&A LEARNING ABOUT MDX HANDOUT 1

2 What is MDX? Multi-Dimensional expressions Retrieve data from a cube MDX Why learn MDX? Complex Easy! Common & Transferrable When to use MDX? Getting specific values Rolling 12 months Same month of last year Top 10 customers Filter customer based on a member property LEARNING ABOUT MDX HANDOUT 2

3 Getting specific values Business scenario: Replicate price for each product across customers Data is stored in a generic customer called Generic Getting specific values Without using MDX: Run an infoflex process to copy the price at Generic customer to all other customers Creates additional records in the database Will have to run a process each time any price is updated Key Concepts Member vs. Tuple Member a specific item in a dimension Tuple an intersection of different dimensions Sales Commission Expenses LEARNING ABOUT MDX HANDOUT 3

4 Getting specific values The following MDX will refer to the price stored in customer Generic: ([Account].[Default].&[Price], [Customer].[Default].&[GEN]) Member Getting specific values The following MDX will refer to the price stored in customer Generic: ([Account].[Default].&[Price], [Customer].[Default].&[GEN]) Dimension Member Name Key Hierarchy Name Getting specific values The following MDX will refer to the price stored in customer Generic: ([Account].[Default].&[Price], [Customer].[Default].&[GEN]) Member Member LEARNING ABOUT MDX HANDOUT 4

5 Getting specific values The following MDX will refer to the price stored in customer Generic: ([Account].[Default].&[Price], [Customer].[Default].&[GEN]) Dimension Member Hierarchy Name Key Name Hierarchy Dimension Member Name Name Key Getting specific values The following MDX will refer to the price stored in customer Generic: ([Account].[Default].&[Price], [Customer].[Default].&[GEN]) Member Member Tuple Getting specific values The following MDX will refer to the price stored in customer Generic: ([Account].[Default].&[Price], [Customer].[Default].&[GEN]) LEARNING ABOUT MDX HANDOUT 5

6 Getting specific values The following MDX will refer to the price stored in customer Generic: ([Account].[Default].&[Price], [Customer].[Default].&[GEN]) To calculate revenue, you will need to use the following formula: ([Account].[Default].&[Price], [Customer].[Default].&[GEN]) * ([Account].[Default].&[Quantity]) Rolling 12 months Business scenario: You want the system to calculate the total of the last 12-month for each account For example, total revenue for the last 12 months Rolling 12 months Without MDX: Create a version called Rolling 12 Month Actual Use an Infoflex process to aggregate the last 12 months data from Actual to a single month in this new version Repeat this process for each month and for each version LEARNING ABOUT MDX HANDOUT 6

7 Key Concepts Sets and Functions Set a collection of members / tuples Sales Commission Expenses Function to perform actions SUM() FILTER() AVG() Rolling 12 months The following custom Time Perspective MDX will sum up the last 12 months of data: SUM( LastPeriods(12, [Time].[Default].CurrentMember), [Time Perspective].[Default].&[Base]) Function Rolling 12 months The following custom Time Perspective MDX will sum up the last 12 months of data: SUM( LastPeriods(12, [Time].[Default].CurrentMember), [Time Perspective].[Default].&[Base]) Function LEARNING ABOUT MDX HANDOUT 7

8 Rolling 12 months The following custom Time Perspective MDX will sum up the last 12 months of data: SUM( LastPeriods(12, [Time].[Default].CurrentMember), [Time Perspective].[Default].&[Base]) Function Summary of Functions CurrentMember returns the current member for a specified dimension LastPeriods - returns a set of members up to and including a specified member Sum aggregate values over a set Same month of last year Business scenario: For a more accurate comparison, you want to see how your company performs this month over last year same month (for actual data) Month over Month Revenue 0 Jan Feb Mar LEARNING ABOUT MDX HANDOUT 8

9 Same month of last year Without MDX: Manually select each month in a data view, or; Use two data views in a template: one for the current year and one for the prior year This will create two drop downs for time, which will allow the user to pick which months they want to look at Same month of last year The following custom Version MDX will return the value from one year ago: (ParallelPeriod( [Time].Default.[Year], 1, [Time].Default.CurrentMember), [Version].Default.&[ACT]) Same month of last year The following custom Version MDX will return the value from one year ago: (ParallelPeriod( [Time].Default.[Year], 1, [Time].Default.CurrentMember), [Version].Default.&[ACT]) Function LEARNING ABOUT MDX HANDOUT 9

10 Same month of last year The following custom Version MDX will return the value from one year ago: (ParallelPeriod( [Time].Default.[Year], 1, [Time].Default.CurrentMember), [Version].Default.&[ACT]) Summary of Functions CurrentMember LastPeriods Sum ParallelPeriod Returns a member from a prior period based on a specified member Top 10 customers Business scenario: You want to obtain a list of top 10 customers based on sales amount LEARNING ABOUT MDX HANDOUT 10

11 Top 10 customers Without MDX: No functionality to sort or filter in Prophix Will need to export out to Excel and apply sorting Top 10 customers The following custom Named Set MDX (for Customer dimension) will return a list of top 10 customers: TopCount( Descendants([Customer].Default.[All],,Leaves), 10, ([Account].Default.&[4000])) Function Top 10 customers The following custom Named Set MDX (for Customer dimension) will return a list of top 10 customers: TopCount( Descendants([Customer].Default.[All],,Leaves), 10, ([Account].Default.&[4000])) Function LEARNING ABOUT MDX HANDOUT 11

12 Key Concepts Dynamic vs Static Named Set Dynamic evaluated every time a query is run Static evaluated when the cube is updated Summary of Functions CurrentMember LastPeriods Sum ParallelPeriod Descendants returns the set of descendants of a specified members at a specified distance TopCount sort a set in descending order and returns the specified number of members with the highest values Filter customers based on a property Business scenario: You want to get a list of customers in the US Each customer has a member property called Country LEARNING ABOUT MDX HANDOUT 12

13 Filter customers based on a property Without MDX: Set up in the main hierarchy Create unnecessary roll up M ay pollute the structure Set up an alternate hierarchy based on the Country member property Use the alternate hierarchy to return a list of US customers Users won t be able to do data entry under alternate hierarchy Filter customers based on a property The following custom Named Set MDX (for Customer dimension) will return a list of US customers: Filter customers based on a property Filter( Descendants([Customer].Default.[All],,Leaves), ) LEARNING ABOUT MDX HANDOUT 13

14 Filter customers based on a property Filter customers based on a property Filter( Descendants([Customer].Default.[All],,Leaves), [Customer].Default.CurrentMember.PROPERTIES("Country") ="US") Summary of Functions CurrentMember LastPeriods Sum ParallelPeriod Descendants TopCount Filter filters a specified set based on a condition LEARNING ABOUT MDX HANDOUT 14

15 Considerations for using MDX Is it able to accomplish your goal? Meets Requirements Is your template / process performing fast? Performance Ease of use Is it easier to set up? Is it easy to maintain? Troubleshooting MDX Use the Check formula syntax button Missing brackets Parser: The end of the input was reached Missing & for member reference Troubleshooting MDX If you see #Err or #Infinity, check Cell Properties for more information LEARNING ABOUT MDX HANDOUT 15

16 MDX resources MSDN Library ( Google MDX + what you need Sometime you may need to add -acura to remove any result for the car Acura MDX! Ask your Prophix consultants! Review Member > Tuple > Set Review of functions CurrentMember LastPeriods Sum ParallelPeriod Descendants TopCount Filter Where to put MDX Account Time Perspective Version Named Set Dynamic Static Summary MDX can make your life a lot easier Power is at your finger tips Use with caution need to balance between requirements, ease of use, and performance LEARNING ABOUT MDX HANDOUT 16

17 Thank You! Exercises 1. How would you refer to the Sales department (member key is 1000) in the Department dimension? a) [Department].[Default].[Sales] b) [Department].[Default].&[Sales] c) [Department].[Default].[1000] d) [Department].[Default].&[1000] Exercises 2. The function ParallelPeriod will return a: a) Member b) Tuple c) Set d) Value LEARNING ABOUT MDX HANDOUT 17

18 Exercises 3. To create a MDX that sums up all leaf accounts that start with 400 (the account string has 5 digits), which of the following function will you not need? a) Sum b) Filter c) Descendants d) CurrentMember e) All of the above functions are needed Answers 1. D 2. A 3. E Try creating the actual MDX in your model! LEARNING ABOUT MDX HANDOUT 18

IMPLEMENTING RELATIVE TIME. IBM Cognos Business Intelligence

IMPLEMENTING RELATIVE TIME. IBM Cognos Business Intelligence IMPLEMENTING RELATIVE TIME IBM Cognos 10.2.1.1 Business Intelligence GoToWebinar Control Panel Submit questions here Click arrow to restore full control panel Copyright Senturus, Inc. All Rights Reserved

More information

Pentaho Analyzer Cookbook: Calculations and Multidimensional Expressions (MDX)

Pentaho Analyzer Cookbook: Calculations and Multidimensional Expressions (MDX) Pentaho Analyzer Cookbook: Calculations and Multidimensional Expressions (MDX) Change log (if you want to use it): Date Version Author Changes Contents Overview... 1 Core Recipes... 2 Learning MDX... 2

More information

Data Modelling Framework Manager Projects (2 days)

Data Modelling Framework Manager Projects (2 days) Data Modelling Framework Manager Projects (2 days) Provide the background knowledge required to plan, design, build and maintain Projects and Packages that supply the information required by the business.

More information

Pentaho Analyzer Cookbook

Pentaho Analyzer Cookbook Pentaho Analyzer Cookbook This page intentionally left blank. Contents Overview... 1 Core Recipes... 2 Learning MDX... 2 Getting Started with Designing Calculated Measures... 5 Getting All SQL Statements

More information

OLAP Technologies and Applications

OLAP Technologies and Applications OLAP Technologies and Applications James Waite SAS Training Specialist Objectives Define Business Intelligence Identify role of OLAP in the BI Platform Discuss cube structure Demo SAS OLAP Applications

More information

Power BI, BI360 DataWarehouse & Analysis Services

Power BI, BI360 DataWarehouse & Analysis Services Power BI, BI360 DataWarehouse & Analysis ervices Case tudy: Finding Low Margin Clients & Looking for Opportunities to Increase: 1) Customer Margins & 2) Product-Mix Margins By Carlos Lameiro, MBA, MCE-DMA,

More information

AVANTUS TRAINING PTE PTE LTD LTD

AVANTUS TRAINING PTE PTE LTD LTD [MS20466]: Implementing Data Models and Reports with SQL Server 2014 Length : 5 Days Audience(s) : IT Professionals Level : 300 Technology : Microsoft SQL Server Delivery Method : Instructor-led (Classroom)

More information

Raintree Live! Reports Edition. January 26, :00am PT Raintree Systems, Incorporated

Raintree Live! Reports Edition. January 26, :00am PT Raintree Systems, Incorporated Raintree Live! Reports Edition January 26, 2018 8:00am PT Today s Webinar Presenter(s): Lorraine Welty, Richard Welty Moderator: Lorraine Welty Recording will be available on User Group website. Ask questions

More information

20466: Implementing Data Models and Reports with Microsoft SQL Server 2014

20466: Implementing Data Models and Reports with Microsoft SQL Server 2014 20466: Implementing Data Models and Reports with Microsoft SQL Server 2014 Course Outline Module 1: Introduction to Business Intelligence and Data Modeling As a SQL Server database professional, you may

More information

MS-20466: Implementing Data Models and Reports with Microsoft SQL Server

MS-20466: Implementing Data Models and Reports with Microsoft SQL Server MS-20466: Implementing Data Models and Reports with Microsoft SQL Server Description The focus of this five-day instructor-led course is on creating managed enterprise BI solutions. It describes how to

More information

In this article, we are covering following broad sections on financial consolidation process:

In this article, we are covering following broad sections on financial consolidation process: Financial Consolidation Processing Operational visibility and risk management are key considerations for any business with multiple operational units. The corporate financial controller needs an accurate

More information

Torben Noer WW Business Analytics Tech Sales manager Addedo TM1 und BI User Group Zürich, 28 th Nov 2017

Torben Noer WW Business Analytics Tech Sales manager Addedo TM1 und BI User Group Zürich, 28 th Nov 2017 Got Cognos Analytics and IBM Planning Analytics? Tips for Improving Your ROI Torben Noer WW Business Analytics Tech Sales manager Torben.Noer@dk.ibm.com Addedo TM1 und BI User Group Zürich, 28 th Nov 2017

More information

Oracle HRMS Functional Document

Oracle HRMS Functional Document Menu, Functions and Security Profile Oracle HRMS Functional Document Car Loan Installment Calculation Using Fast Formula Part 6 Note: This Document is created only for Class Room Training Purpose By Regintala

More information

Implementing Data Models and Reports with Microsoft SQL Server

Implementing Data Models and Reports with Microsoft SQL Server 20466 - Implementing Data Models and Reports with Microsoft SQL Server Duration: 5 Days Course Price: $2,975 Software Assurance Eligible Course Description Note: This course is designed for customers who

More information

Deltek Models Overview 1. 5 Report and Dashboard Templates. Begin

Deltek Models Overview 1. 5 Report and Dashboard Templates. Begin This click-thru introduces the Deltek provided framework models in Costpoint Enterprise Reporting. Click or tap each step on the screen or use the button to advance. Use the navigation buttons on the left

More information

Scott Lowden SAP America Technical Solution Architect

Scott Lowden SAP America Technical Solution Architect SAP NetWeaver Training Overview - SAP Business Intelligence Scott Lowden SAP America Technical Solution Architect NetWeaver Components Detail Business Intelligence SAP AG 2003, Title of Presentation, Speaker

More information

Product comparison: Prophix Enterprise vs. PROPHIX 10 R3

Product comparison: Prophix Enterprise vs. PROPHIX 10 R3 Product comparison: vs. Prepared by Software Purpose This document is intended for current customers who are considering migrating to. Introduction is an integrated application that is built on an open

More information

IBM Solutions ecapital University 2017 Training Course Catalog

IBM Solutions ecapital University 2017 Training Course Catalog IBM Solutions ecapital University 2017 Training Course Catalog 1/23/2017 2017 ecapital Advisors, LLC. Training with ecapital ecapital s Training Philosophy Effective training is a critical part of any

More information

Oracle Hyperion Planning for Interactive Users

Oracle Hyperion Planning for Interactive Users Oracle University Contact Us: 1.800.529.0165 Oracle Hyperion Planning 11.1.2 for Interactive Users Duration: 0 Days What you will learn This course is designed to teach you how to use Planning. It includes

More information

BI202. Best Practices and Tips for Best Performance of SAP BusinessObjects XI 3.1 on SAP NetWeaver BW. The Good, Bad and the Ugly

BI202. Best Practices and Tips for Best Performance of SAP BusinessObjects XI 3.1 on SAP NetWeaver BW. The Good, Bad and the Ugly BI202 Best Practices and Tips for Best Performance of SAP BusinessObjects XI 3.1 on SAP NetWeaver BW The Good, Bad and the Ugly Tom Turchioe, Product Management Ashish Gupta, AGS Business User Ingo Hilgefort,

More information

The 5 Levels of Corporate Performance Management (CPM) Maturity: Climbing to the Top Floor

The 5 Levels of Corporate Performance Management (CPM) Maturity: Climbing to the Top Floor Sponsor Ask, Share, Learn Within the Largest Community of Corporate Finance Professionals The 5 Levels of Corporate Performance Management (CPM) Maturity: Climbing to the Top Floor Learning Objectives

More information

Cut Your PPC Campaigns Down To Size

Cut Your PPC Campaigns Down To Size Cut Your PPC Campaigns Down To Size What if you could learn to trim your PPC campaigns down to a more manageable and efficient size? While simultaneously raising your conversion rates? Well, guess what?

More information

SAS Human Capital Management 5.1. Administrator s Guide

SAS Human Capital Management 5.1. Administrator s Guide SAS Human Capital Management 5.1 Administrator s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2009. SAS Human Capital Management 5.1: Administrator s Guide.

More information

18 Ranking Data within Reports

18 Ranking Data within Reports 18 Ranking Data within Reports This session describes ranking data in a Web Intelligence report. Ranking allows you to isolate the top and bottom records in a data set based on a variety of criteria. For

More information

Solution Training. Compliance & Fraud Management, Financial Performance Management, and Financial Risk Management

Solution Training. Compliance & Fraud Management, Financial Performance Management, and Financial Risk Management Solution Training Compliance & Fraud Management, Financial Performance Management, and Financial Risk Management January June 2015 Solution Training Five Ways to Take Advantage of Training from Fiserv:

More information

Using the Inventory Transactions Report to Reconcile Inventory Variances

Using the Inventory Transactions Report to Reconcile Inventory Variances Using the Inventory Transactions Report to Reconcile Inventory Variances 1 Inventory Accuracy Liquor Agencies are responsible for maintaining inventory accuracy. This is accomplished by doing the following:

More information

Ultimate Study Guide: Foundations Microsoft Project Dale A. Howard Gary L. Chefetz

Ultimate Study Guide: Foundations Microsoft Project Dale A. Howard Gary L. Chefetz Ultimate Study Guide: Foundations Microsoft Project 2010 Dale A. Howard Gary L. Chefetz Ultimate Study Guide: Foundations Microsoft Project 2010 Copyright 2010 Chefetz LLC dba MSProjectExperts Publisher:

More information

Realizing the Power of Microsoft Reporting

Realizing the Power of Microsoft Reporting Realizing the Power of Microsoft Reporting SQL Saturday #187 - Richmond 1118 West Main Street Richmond, Virginia 23230 804.355.0511 2012 CapTech Ventures, Inc. IT Management Consulting Systems Integration

More information

Vendor: IBM. Exam Code: C Exam Name: IBM Cognos TM Analyst. Version: Demo

Vendor: IBM. Exam Code: C Exam Name: IBM Cognos TM Analyst. Version: Demo Vendor: IBM Exam Code: C2020-701 Exam Name: IBM Cognos TM1 10.1 Analyst Version: Demo Question No : 1 How do you configure a TM1 Web application so that users are not prompted for the TM1 Admin Host every

More information

Performance Measure 73: State/Territory Quality Assessment

Performance Measure 73: State/Territory Quality Assessment Performance Measure 73: State/Territory Quality Assessment The numbers needed for the Performance Measure 73 EHB entries have been calculated, but you may want to do some quality assessment to better understand

More information

User s Guide for the Discharge Monitoring Report (DMR) Pollutant Loading Tool. EZ Search, Facility Search, and Advanced Search

User s Guide for the Discharge Monitoring Report (DMR) Pollutant Loading Tool. EZ Search, Facility Search, and Advanced Search User s Guide for the Discharge Monitoring Report (DMR) Pollutant Loading Tool EZ Search, Facility Search, and Advanced Search [DRAFT FOR BETA RELEASE] November 2010 EPA-XXX-XXX-XXX Table of Contents TABLE

More information

Oracle Hyperion Planning : Create & Manage Applications

Oracle Hyperion Planning : Create & Manage Applications Oracle University Contact Us: 0845 777 7711 Oracle Hyperion Planning 11.1.1: Create & Manage Applications Duration: 0 Days What you will learn This course is designed to teach you how to create and administer

More information

Content: The Missing Ingredient in the Recipe for Producing Great Asset Information

Content: The Missing Ingredient in the Recipe for Producing Great Asset Information Content: The Missing Ingredient in the Recipe for Producing Great Asset Information SwainSmith is a leading asset management consulting firm. We have been helping organizations develop asset management

More information

Printed in U.S.A. Oros 5.2 July 2001 Part Number ABC520 MGl

Printed in U.S.A. Oros 5.2 July 2001 Part Number ABC520 MGl Oros Glossary Copyright 1990 2001 ABC Technologies, Inc. All rights reserved. ABC Technologies, Inc. 16100 N. W. Cornell Road Suite 200 Beaverton, OR 97006 Phone: 503/617 7100 Fax: 503/617 7200 Website:

More information

University Finance IBM Cognos 10 Planning Financial Performance Management Solution

University Finance IBM Cognos 10 Planning Financial Performance Management Solution University Finance IBM Cognos 10 Planning Financial Performance Management Solution User Guide CONTENTS 1 Introduction... 3 What is Cognos?... 3 Why Cognos?... 3 Benefits of Cognos... 3 2 Logging into

More information

Lanteria HR Report Center

Lanteria HR Report Center User Guide for version 4.2.0 Copyright 2015 Lanteria Table of Contents 1 Introduction... 3 1.1 Report Center Overview... 3 1.2 Terminology List... 3 2 General Reports... 4 2.1 Run General Reports... 4

More information

Oracle Sales and Operations Planning (S&OP) Cloud - Revenue and Cost Calculations

Oracle Sales and Operations Planning (S&OP) Cloud - Revenue and Cost Calculations Oracle Sales and Operations Planning (S&OP) Cloud - Revenue and Cost Calculations This document provides some details on how the aggregate planning engine in S&OP Cloud calculates data for revenue and

More information

Self Service Banner Requisition Training June 2012

Self Service Banner Requisition Training June 2012 Self Service Banner Requisition Training June 2012 Process overview Chart of Accounts Accessing Banner Requisitions Break Budget Queries Other Resources Q&A Agenda 2 1 Process Requestor generates requisition

More information

Workshop Description. Application Workshops

Workshop Description. Application Workshops Application s ACA 101: Setup Description This workshop will walk you through ACA set up including company information, HR status, earnings codes and benefits. You will hire a full time employee and a variable

More information

Hyperion Financial Management Course Details

Hyperion Financial Management Course Details Hyperion Financial Management Course Details By Besant Technologies Course Name Category Venue Hyperion Financial Management Oracle Fusion Middleware Besant Technologies No.24, Nagendra Nagar, Velachery

More information

Getting the Most out of Statistical Forecasting!

Getting the Most out of Statistical Forecasting! Getting the Most out of Statistical Forecasting! Author: Ryan Rickard, Senior Consultant Published: June 2017 About SCMO 2 Founded in 2001, SCMO2 Specializes in High-End Supply Chain Consulting Work Focused

More information

Application Performance Monitoring Dashboard 7.2

Application Performance Monitoring Dashboard 7.2 User Guide Focused Insights for SAP Solution Manager Document Version: 1.1 2017-07-31 ST-OST 200 SP 1 Typographic Conventions Type Style Example Example EXAMPLE Example Example EXAMPLE Description

More information

Efficiency, through elegant solutions

Efficiency, through elegant solutions Efficiency, through elegant solutions Company presentation featuring Arbutus, Pentana Vision & Retain 27/01/2014 Sepia Solutions 1 Agenda Introduction Overview software portfolio Arbutus Pentana Vision

More information

IT117: Microsoft Power Business Intelligence

IT117: Microsoft Power Business Intelligence IT117: Microsoft Power Business Intelligence IT117 Rev.001 CMCT COURSE OUTLINE Page 1 of 9 Training Description: This five-day instructor-led course is a complete high-level tour of the Microsoft Business

More information

Data Analysis and Reporting Techniques Using Excel. Contents are subject to change. For the latest updates visit

Data Analysis and Reporting Techniques Using Excel. Contents are subject to change. For the latest updates visit Data Analysis and Reporting Techniques Using Excel Page 1 of 8 Why Attend It is a fact, Excel is the accountant's, finance and business professional's best friend! You and I know how overwhelmed we are

More information

Infor LN Financials User Guide for Financial Statements

Infor LN Financials User Guide for Financial Statements Infor LN Financials User Guide for Financial Statements Copyright 2018 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains

More information

Product Training. Risk & Compliance: Financial Risk Management and Financial Performance Management Solutions

Product Training. Risk & Compliance: Financial Risk Management and Financial Performance Management Solutions Product Training Risk & Compliance: Financial Risk Management and Financial Performance Management Solutions January - June 2011 Three Ways to Take Advantage of Training from Fiserv: Classroom Training

More information

Track 1: Sage 300 CRE Financials

Track 1: Sage 300 CRE Financials **Note on session numbering: Sessions are numbered with the track number timeslot. Track Numbers follow the top of the session grid, while the Timeslot numbers follow the left side of the grid. Please

More information

IntelliMarket Getting Started Manual

IntelliMarket Getting Started Manual IntelliMarket Getting Started Manual IntelliMarket - IM Getting Started Guide System Overview Data Modules and Reports Logging In Website, Credentials Contents System Functionality Building & Running Reports

More information

"Charting the Course... MOC B PerformancePoint 2010 Designing and Implementing Scorecards and Dashboards Course Summary

Charting the Course... MOC B PerformancePoint 2010 Designing and Implementing Scorecards and Dashboards Course Summary Course Summary Description This instructor-led course provides students with the necessary knowledge to develop Scorecards and Dashboards using PerformancePoint 2010 in their own work environment. The

More information

data sheet ORACLE ENTERPRISE PLANNING AND BUDGETING 11i

data sheet ORACLE ENTERPRISE PLANNING AND BUDGETING 11i data sheet ORACLE ENTERPRISE PLANNING AND BUDGETING 11i Oracle Enterprise Planning and Budgeting provides finance and business managers with the right information and self-service tools to help them understand

More information

Trusted Experts in Analytics. Business Analytics Training Catalog

Trusted Experts in Analytics. Business Analytics Training Catalog Trusted Experts in Analytics Business Analytics Training Catalog Why use QueBIT for training? QueBIT aims to make it easy to help you find the right information. Our mission is to empower you with the

More information

IBM Cognos Business Intelligence Extreme Performance with IBM Cognos Dynamic Query

IBM Cognos Business Intelligence Extreme Performance with IBM Cognos Dynamic Query IBM Cognos Business Intelligence Extreme Performance with IBM Cognos Dynamic Query Overview With the release of IBM Cognos Business Intelligence V10.1, the IBM Cognos Platform delivered a new 64-bit, in-memory

More information

COURSE LISTING. Courses Listed. Training for Analytics with Business Warehouse (BW) in SAP BW on any Database. 26 November 2017 (06:48 GMT) Advanced

COURSE LISTING. Courses Listed. Training for Analytics with Business Warehouse (BW) in SAP BW on any Database. 26 November 2017 (06:48 GMT) Advanced Training for Analytics with Business Warehouse (BW) in SAP BW on any Database Courses Listed Advanced BW310 - SAP BW - BW330 - SAP BW Modeling & Implementation BW350 - SAP BW BW360 - BW: TBW10 - BW Enterprise

More information

PerformanceG2 Letter...1 PerformanceG2 IBM Cognos Training Services...2

PerformanceG2 Letter...1 PerformanceG2 IBM Cognos Training Services...2 IBM Cognos 2014 Training Catalogue Table of Contents INTRODUCTION PerformanceG2 Letter........1 PerformanceG2 IBM Cognos Training Services.........2 DEVELOPER COURSES Cognos TM1 for Developers...........3

More information

Converting a Hyperion Enterprise Application to a Hyperion Financial Management Application. Design Considerations and Best Practices

Converting a Hyperion Enterprise Application to a Hyperion Financial Management Application. Design Considerations and Best Practices Converting a Hyperion Enterprise Application to a Hyperion Financial Management Application Design Considerations and Best Practices About Finit Solutions About Finit Solutions FINance-IT Hyperion Preferred

More information

Session Objectives. The RGA Story. BCM Software Acquisition, Deployment & Data Management. What we had. What we wanted

Session Objectives. The RGA Story. BCM Software Acquisition, Deployment & Data Management. What we had. What we wanted BCM Software Acquisition, Deployment & Data Management Michael Keating, VP BCM, Reinsurance Group of America Steve Richardson, VP, Product Management, Fusion Risk Management @steve_fusionrm Session Objectives

More information

Quick Start Guide. Universal Traffic Service, Inc. Universal Solutions for Supply Chain Management Service Control Solutions

Quick Start Guide. Universal Traffic Service, Inc. Universal Solutions for Supply Chain Management Service Control Solutions Quick Start Guide for myuts, our suite of online supply chain management tools Version 02-21-2018 Universal Traffic Service, Inc. Universal Solutions for Supply Chain Management Service Control Solutions

More information

audit software the enterprise edition

audit software the enterprise edition audit software the enterprise edition ProducT information www.audimex.com audimexee Content 1 Executive Summary 2 1.1 Improving efficiency 2 1.1.1 Work reduction 2 1.1.2 Time saving 2 1.2 Quality assurance

More information

Oracle Analytics Cloud for the Finance Analyst

Oracle Analytics Cloud for the Finance Analyst Oracle Analytics Cloud for the Finance Analyst Tim German, Qubix MAY 16 & 17, 2018 CLEVELAND PUBLIC AUDITORIUM, CLEVELAND, OHIO WWW.NEOOUG.ORG/GLOC Agenda What is OAC? Understand how to build Essbase Cloud

More information

Sage ERP Intelligence December 13, Debbie Hill Sage Software Denise Austin DM2 Software, Inc. & Tom Lane DM2 Software, Inc.

Sage ERP Intelligence December 13, Debbie Hill Sage Software Denise Austin DM2 Software, Inc. & Tom Lane DM2 Software, Inc. December 13, 2012 Debbie Hill Sage Software Denise Austin DM2 Software, Inc. & Tom Lane DM2 Software, Inc. Agenda What Is Sage Intelligence Sage Intelligence Components Standard Reports New Report Designer

More information

THE CFO S GUIDE TO BUDGETING IN EXCEL

THE CFO S GUIDE TO BUDGETING IN EXCEL THE CFO S GUIDE TO BUDGETING IN EXCEL GETTING IT DONE RIGHT ON TIME! Presented by Rishi Grover President, Vena Solutions August 4, 2016 Copyright Vena TM 1 RISHI GROVER President & SVP Solutions Engineering

More information

GYANVRIKSH INTERACTIVE PVT LTD III Foor, QZ Plaza, Opp Haveli Restaurant, Kothaguda, Kondapur Hyderabad , &

GYANVRIKSH INTERACTIVE PVT LTD III Foor, QZ Plaza, Opp Haveli Restaurant, Kothaguda, Kondapur Hyderabad , & Introduction and Getting Started (Desktop & Server) Why Tableau? History of Tableau Products of Tableau Tableau Desktop Tableau Server Tableau Public Tableau Online Tableau Reader Architecture of Tableau

More information

UC Any and All Regular Payroll History

UC Any and All Regular Payroll History Finance Systems HCM Data Mart User-guide UC Any and All Regular Payroll History Purpose The purpose of the UC Any and All Dashboard, is to provide a complete in-depth view of an employee s overall job

More information

Selecting an FRx replacement

Selecting an FRx replacement Selecting an FRx replacement See why Prophix is the CPM vendor of choice Don t get overwhelmed by the options available when looking for an FRx replacement. This comparison guide provides a detailed assessment

More information

5 steps to achieving integrated financial planning for your company

5 steps to achieving integrated financial planning for your company Today s Webcast Presentation 5 steps to achieving integrated financial planning for your company Presented by Financial Executives International (FEI) Sponsored by Prophix Software will begin shortly Learning

More information

All New Account View Form

All New Account View Form This upgrade for SalesChain continues our user interface redevelopment project. We are in fact ahead of schedule and are very excited to introduce a number of newly developed features that include: All

More information

Proliance Analytics. Brant Carter Director Product Management, Meridian Systems

Proliance Analytics. Brant Carter Director Product Management, Meridian Systems Brant Carter Director Product Management, Meridian Systems Agenda 1. Introductions 2. Content Strategies 3. Delivery Strategies 4. Hands On: Contract Dashboard Content vs. Access: Content Access Reports

More information

Hospital Resource Vulnerability Assessment (RVA) Implementation Guide

Hospital Resource Vulnerability Assessment (RVA) Implementation Guide Quick tips to get started Optimized for Excel 2013 and Windows 8 environment (though should work on recent versions of Excel for Mac) Save the document to your desktop select a name that s appropriate

More information

HOW YOUR CONTENT QUALITY IMPACTS YOUR SOCIAL MEDIA ROI

HOW YOUR CONTENT QUALITY IMPACTS YOUR SOCIAL MEDIA ROI HOW YOUR CONTENT QUALITY IMPACTS YOUR SOCIAL MEDIA ROI AGENDA Common challenges Facebook Algorithm and Socialbakers Research Little Fun Ad Benchmarks START PRESENTATION Conversions Q&A INDUSTRY CHALLENGES

More information

ACHIEVING OPTIMAL IFRS9 COMPLIANCE

ACHIEVING OPTIMAL IFRS9 COMPLIANCE ACHIEVING OPTIMAL IFRS9 COMPLIANCE MARTIM ROCHA SEPTEMBER 2015 Copyright 2013, SAS Institute Inc. All rights reserved. Agenda IFRS9 background SAS solution for IFRS9 Monthly run, consolidation, reporting

More information

IBM Cognos What s New? Webinar. December 12,

IBM Cognos What s New? Webinar. December 12, IBM Cognos 10.2 What s New? Webinar December 12, 2012 www.senturus.com 1 Helping Companies Learn From the Past, Manage the Present and Shape the Future GoToWebinar Control Panel Submit questions here Click

More information

Planning Bootcamp (formerly Applied Planning with Essbase Essentials )

Planning Bootcamp (formerly Applied Planning with Essbase Essentials ) Planning Bootcamp (formerly Applied Planning with Essbase Essentials ) Summary: The 5-day Planning Bootcamp course is designed to take students through the stepby-step process of developing and implementing

More information

Manage Forecasting in NUPlans

Manage Forecasting in NUPlans Manual for Prep File Users Course Number: FMS717 Subject Area: Budgeting Creation Date: February 12, 2014 Last Updated: October 8, 2015 Last Updated By: MAC Copyright 2014 Northwestern University Table

More information

COURSE LISTING. Courses Listed. with Business Intelligence (BI) Crystal Reports. 26 December 2017 (18:02 GMT)

COURSE LISTING. Courses Listed. with Business Intelligence (BI) Crystal Reports. 26 December 2017 (18:02 GMT) with Business Intelligence (BI) Crystal Reports Courses Listed BOC345 - SAP Crystal Reports 2011: Optimizing Report Data Processing BOC320 - SAP Crystal Reports: - BOCE10 - SAP Crystal Reports for Enterprise:

More information

HSP PARTNER PORTAL USER MANUAL

HSP PARTNER PORTAL USER MANUAL HSP PARTNER PORTAL USER MANUAL TABLE OF CONTENTS 1. HOW TO REGISTER ON HSP PARTNER SITE... 3 1.1 STEP 1... 3 1.2 STEP2... 4 1.3 STEP3... 4 1.4 STEP4... 5 1.5 STEP5... 6 1.6 STEP6... 8 2 ACCESS THE ORDER

More information

Visual BI Value Driver Tree for SAP Lumira Designer - User Guide -

Visual BI Value Driver Tree for SAP Lumira Designer - User Guide - Visual BI Value Driver Tree for SAP Lumira Designer - User Guide - 1 Copyright 3 1.1 Trademark Information 3 1.2 Patent Information 3 1.3 SAP Trademarks 3 2 Definitions 4 3 Introduction 5 3.1 Document

More information

INSIGHTS. Demand Planner for Microsoft Dynamics. Product Overview. Date: November,

INSIGHTS. Demand Planner for Microsoft Dynamics. Product Overview. Date: November, INSIGHTS Demand Planner for Microsoft Dynamics Product Overview Date: November, 2007 www.microsoft.com/dynamics Contents Demand Planning for Business... 1 Product Overview... 3 Multi-dimensional Data Visibility...

More information

Art. Science MARKET PRICING 101. The. and the. Whether you are a seasoned veteran who market prices 200

Art. Science MARKET PRICING 101. The. and the. Whether you are a seasoned veteran who market prices 200 Contents 2004 WorldatWork.The content is licensed for use by purchasers solely for their own use and not for resale or redistribution. No part of this article may be reproduced, excerpted or redistributed

More information

Using Enterprise etime

Using Enterprise etime Using Enterprise etime Handout Manual Appendix Automatic Data Processing, Inc. Roseland V11090972216ET61 2009 ADP, Inc. Appendix Using Hyperfind Queries with QuickNavs When your ADP representative sets

More information

Essbase in the Cloud an introduction to OAC. Serge Kpossou (AMOSCA) & Guy Bellucci (Oracle)

Essbase in the Cloud an introduction to OAC. Serge Kpossou (AMOSCA) & Guy Bellucci (Oracle) Essbase in the Cloud an introduction to OAC Serge Kpossou (AMOSCA) & Guy Bellucci (Oracle) What is Essbase Agenda Essbase s journey from IT owned analytics software to business analytics platform Oracle

More information

Reviewing ACA Annual Reporting Data that Needs Attention

Reviewing ACA Annual Reporting Data that Needs Attention Reviewing ACA Annual Reporting Data that Needs Attention Handout Manual Need support after training? To exchange tips and best practices with fellow users, get on The Bridge an online community built exclusively

More information

Smart Playbook Team Views

Smart Playbook Team Views Smart Playbook Dealmaker Smart Playbook puts you in control of the buying process, increases sales velocity through the sales cycle and delivers objective and accurate sales forecasts. It connects the

More information

Using OpenAir as a Crystal Ball (aka Forecasting in OpenAir)

Using OpenAir as a Crystal Ball (aka Forecasting in OpenAir) Using OpenAir as a Crystal Ball (aka Forecasting in OpenAir) Jodi Cicci, TOP Step Consulting, LLC V1.0 10/14/10 Agenda Overview Configuring Forecasting Charge Projection Methods (Pros/Cons) Forecasting

More information

Workshop: Fundamentals of Ad Hoc Reporting

Workshop: Fundamentals of Ad Hoc Reporting Workshop: Fundamentals of Ad Hoc Reporting Session D7: May 25, 2017 9:45 10:45 a.m. Samantha Lopeman, Manager of Client Services Bill Drotos, Relationship Manager, Large Market Michael Adamack, Relationship

More information

THE FSSC STEERING TEAM

THE FSSC STEERING TEAM THE FSSC 22000 STEERING TEAM Once the Gap Analysis has been completed, start your FSSC 22000 Steering team meetings. During the first team meeting discuss the responsibilities of the Steering team. If

More information

TRUST. Technology Reporting Using Structured Templates for the FCH JU. User Manual for data providers. Version 1.00

TRUST. Technology Reporting Using Structured Templates for the FCH JU. User Manual for data providers. Version 1.00 TRUST Technology Reporting Using Structured Templates for the FCH JU User Manual for data providers Version 1.00 Table of contents TRUST ----------------------------------------------------------------------------------------------------------------------------

More information

QuickBooks MeetUp Groups

QuickBooks MeetUp Groups QuickBooks MeetUp Groups Bellevue Seattle Skagit-Whatcom proudly present What s New in QuickBooks 2012 for You and Your Clients Intuit Academy 1st Annual QuickBooks "Talk and Swap" Greater Puget Sound

More information

What's New in AiM 4.0

What's New in AiM 4.0 What's New in AiM 4.0 January, 2010 Page 1 Table of Contents AIM 4.0 LOOK, FEEL AND NAVIGATION... 3 WORKDESK NEW LOOK AND NEW CHANNELS... 6 MOTOR POOL MODULE... 9 KPI REPORTS AND ENHANCEMENTS... 10 GREEN

More information

Using Sage Timberline Estimating with Workflow Management Suite

Using Sage Timberline Estimating with Workflow Management Suite Using Sage Timberline Estimating with Workflow Management Suite INTRODUCTION AND COURSE OVERVIEW I. Class objectives Menus and toolbars I Help file overview and context sensitive help (F1 key) Three parts

More information

Connecting the data islands

Connecting the data islands Data integration made easier with IBM Planning Analytics Extracting data from multiple data sources to speed and simplify your planning Highlights Enables users to populate applications with data from

More information

Canopy Labs Funnel Guide

Canopy Labs Funnel Guide Canopy Labs Funnel Guide Table of Contents Slide Deck Directory SLIDE 2 INTRO GUIDE TO CANOPY LABS FUNNELS The first guide in our introductory series to the Canopy Labs Platform, this deck delves into

More information

Selecting the Right SAP BusinessObjects BI Client Product Based on Your Business Requirements for SAP BW Customers

Selecting the Right SAP BusinessObjects BI Client Product Based on Your Business Requirements for SAP BW Customers Product Based on Your Business Requirements for SAP BW Customers Ingo Hilgefort Director Solution Management Disclaimer This presentation outlines our general product direction and should not be relied

More information

2010 ACEIT User Workshop

2010 ACEIT User Workshop 2010 ACEIT User Workshop 25 27 Jan 10 Using SumIf and Category Features to Create Estimate Summary Sections John D. Bryant USMC, Program Executive Office, Land Systems Page 1 of 36 This paper describes

More information

Exam Questions C

Exam Questions C Exam Questions C2020-701 IBM Cognos TM1 10.1 Analyst https://www.2passeasy.com/dumps/c2020-701/ 1.How do you configure a TM1 Web application so that users are not prompted for the TM1 Admin Host every

More information

Success with DRM at General Dynamics

Success with DRM at General Dynamics Success with DRM at General Dynamics Edward J. Cody Michelle Pham Introduction General Dynamics Corporation General Dynamics has four main business segments: Aerospace - designs, develops, manufacturers

More information

Supply Chain MICROSOFT BUSINESS SOLUTIONS DEMAND PLANNER

Supply Chain MICROSOFT BUSINESS SOLUTIONS DEMAND PLANNER Supply Chain MICROSOFT BUSINESS SOLUTIONS DEMAND PLANNER DEMAND PLANNING FOR BUSINESSES Demand planning is the first step towards business planning. As businesses are moving towards a demand-centric environment

More information

Workflow: A Foundation for Today s Emerging Firms. Cathleen F Foley, CPA, MST Director of Client Development

Workflow: A Foundation for Today s Emerging Firms. Cathleen F Foley, CPA, MST Director of Client Development Workflow: A Foundation for Today s Emerging Firms Cathleen F Foley, CPA, MST Director of Client Development Presenter Cathy is the Director of Technical Sales for XCM Solutions. She has over 25 years of

More information

Report Studio Fundamentals for eschoolplus Custom Training Guide

Report Studio Fundamentals for eschoolplus Custom Training Guide Report Studio Fundamentals for eschoolplus Custom Training Guide Capitalize Analytics 320 Decker Drive, Suite 100 Irving, TX 75062 214.531.3904 info@capitalizeconsulting.com 1 Table of Contents Course

More information

CREATE INSTANT VISIBILITY INTO KEY MANUFACTURING METRICS

CREATE INSTANT VISIBILITY INTO KEY MANUFACTURING METRICS CREATE INSTANT VISIBILITY INTO KEY MANUFACTURING METRICS The QualityWorX Dashboard provides the most comprehensive, easy-to-use reporting platform for production and quality management in the industry.

More information