Managing Smart View Shared Connections

Size: px
Start display at page:

Download "Managing Smart View Shared Connections"

Transcription

1 Managing Smart View Shared Connections If you use Smart View, you are familiar with the Smart View Shared Connection URL, which is unique to the environment that Smart View connects. That property is saved in a file on your computer and has the default URL, as well as all the saves URLs in the drop-down list. There are times users want this drop down cleaned up. If the URL changes due to environment changes, or they enter the wrong URL and it is saved, the need to clean up what is in this setting can reduce confusion and user frustration. Often, IT departments want to deploy these settings and need to understand how to make every user s Smart View configuration the same. Understanding where these settings are stored and how the file that stores them is configured will assistance with either of these requests. The user s computer will hold, or require a file if a new deployment of settings is the path IT takes, in the following folder. <drive>:\users\<username>\appdata\roaming\oracle\smartview The drive is almost always C, and the username is unique to every organization in the naming convention used. If the user already has setup Smart View, a file named properties.xml exists. This file can be edited in any text editor. If you are familiar with XML files, you will see a typical XML structure. The entire file is enclosed in a cfg tag, so it is opened with <cfg> and closed with </cfg>. The current provider URL is within a provider tag. All saves provider URLs are inside a previousurllist tag and separated by a pipe ( ) delimiter. So, the file is laid out like this.

2 <?xml version= 1.0?> <cfg> <provider></provider> <previousurllist>provider 1 provider 2 provider 3 </previousurllist> </cfg> As a consultant, I have many providers saved, so the configuration.xml file on my system looks like a little busy. The file will likely be smashed together and not easily readable. Opened in a text editor: <?xml version= 1.0?><cfg><provider><overrideWorkspaceUrl> anning-testa pbcs.us6.oraclecloud.com/workspace/smartviewproviders< /overrideworkspaceurl><previousurllist> martviewproviders nninga pbcs.us6.oraclecloud.com/workspace/smartviewproviders ce/smartviewproviders raclecloud.com/workspace/smartviewproviders estshiloh.pbcs.us2.oraclecloud.com/workspace/smartviewprovidersx ViewProviders https: //mp1epm01.huronconsultinggroup.com:19000/aps/smartview https: //mp1epm01.huronconsultinggroup.com:13080/smartviewproviders</ previousurllist><overrideurl/></provider></cfg> If this file is opened in an XML editor, or viewed in Internet Explorer, it will be more readable.

3 If old providers need to be removed, they can be deleted from this file and the user will see the change the next time Excel is started. If there is a need to distribute a pre-configured setup, build this file manually, or use an existing user s file, and deploy it to all new users. Using a Shared Connection with HSGetValue/HSSetValue with Planning or PBCS If you are a fan of the HSGetValue and HSSetValue, you probably are using a private connection. As you know, anybody that uses the template has to either change the connection string to their own predefined private connection, or set up a private connection with the same name. When dealing with inexperience users, both methods can be problematic. You may be surprised to know that the Get and Set Value functions can use a shared connection. Rather than using the private connection name, the following can be specified to use a shared connection in place of the private connection name. Private connection syntax: HsGetValue( PrivateConnectionName, POV ) HsSetValue (dollar amount, PrivateConnectionName, POV )

4 Shared connection syntax: HsGetValue( WSFN ProviderType Server Application Database, PO V ) HsSetValue (dollar amount, WSFN ProviderType Server Application Database, POV ) Parameter Summary WSFN is a static string and never changes The provider type for planning is HP regardless of whether the server is a cloud server or on premise server The server specifies the location of the server housing the application. For PBCS, use the URL provided by Oracle (planning-test-domain.pbcs.us2.oraclecloud.com) The application is the application name The database is the plan type, or database name Put that all together and the string looks like this. WSFN HP planning-test- A12345.pbcs.us2.oraclecloud.com Finance Revenue Conclusion Although there are a few drawbacks to using a shared connection (users could use the wrong connection and not get the expected result), my experience has been that the pros (no setup of private connections, can be used in multiple environments without changing anything, etc.) far outweigh the cons.

5 Force Excel to Calculate Dependencies In Order Overview If you have ever used custom functions in Excel, depending on the complexity of them, you have probably run into an issue where the accuracy of the results was sporadic. There is a quick solution. Use CTRL ALT SHIFT F9. The lengthier explanation from Microsoft explains that the calculation of worksheets in Excel can be viewed as a threestage process: Construction of a dependency tree Construction of a calculation chain Recalculation of cell With the introduction of complex VBA functions, the default calculation can produce inaccurate results because it doesn t evaluate the dependency tree and calculation chain correctly. So, if you have this issue, the most complete and thorough (and time consuming) calculation can be initiated by clicking CTRL ALT SHIFT F9. This forces the dependency tree to be rebuilt and recalculates the entire workbook. There are several levels in forcing Excel to calculate. F9 Recalculates all cells that Excel has marked as dirty, that is, dependents of volatile or changed data, and cells programmatically marked as dirty. If the calculation mode is Automatic Except Tables, this calculates those tables that require updating and also all volatile functions and their

6 dependents. VBA: Application.Calculate SHIFT F9 Recalculates the cells marked for calculation in the active worksheet only. VBA: ActiveSheet.Calculate CTRL ALT F9 Recalculates all cells in all open workbooks. If the calculation mode is Automatic Except Tables, it forces the tables to be recalculated. VBA: Application.CalculateFull CTRL ALT SHIFT F9 Causes Excel to rebuild the dependency tree and the calculation chain for a given workbook and forces a recalculation of all cells that contain formulas. VBA: Workbooks(reference).ForceFullCalculation (introduced in Excel 2007) References Microsoft.com Article Microsoft Article (PDF)

7 Why Can t Planners Access Essbase In Hyperion , there is a change in how security is deployed. If you are having an issue deploying Planning security with Essbase adhoc access, and the user can t Access Essbase Adhoc Access FR reports using an Essbase connection Access Essbase directly you are not alone. This is not classified as a bug, but it sure can cause a lot of frustration. If you have a user that needs access to Essbase directly, the user can t be associated to ONLY Planning applications. For them to get access to Essbase, even to access the Planning application, they must have security to a native Essbase application (a NON Planning application). From the Oracle Doc ID SYMPTOMS Trying to add the Essbase application access type to a Planning user in Shared Services so the user can access native Essbase applications using the Excel Add-in. Shared Services confirms the update when saved but when checking the user again, it only has Planning access. This also happens when trying to use the MaxL command to modify the application access type. CAUSE Starting in EPM v11.1.2, a user s type (application access type) cannot be changed by Maxl, the EAS console or manually via Shared services console. The type is automatically assigned based on the roles that the user has.

8 If a user has a role on a Planning application only, then that user is treated as a Planning user. If the user has a role on a Essbase application only, then the user is treated as an Essbase user. If the user has roles on both Planning and Essbase applications the user is treated as a Planning and Essbase user. SOLUTION In order for a Planning user to access native Essbase applications in the Excel Add-in, the user will need to be given access to a native Essbase application. For example, assign the Planning user Read access to the Demo application. What s New with Smart View The newest release of Smart View (Release ) includes many helpful, long-awaited features sure to both enhance the end-user experience and increase productivity. Many of the new features are examined below while a complete list and their descriptions can be found here. Ad Hoc Operations in Multiple Cells Previous versions of Smart View limited users to cell level ad-hoc operations. For example; say you wanted to Zoom In on a member, Smart View limited this action to a single cell (single member). The newest version allows users to select a range of cells before performing an action allowing for quicker answers. Multi-cell actions such as Zoom In, Zoom Out, Keep Only and Remove Only are now permitted.

9 Member Information End users of Smart View often struggled to find additional information pertaining to members of a dimension from which they queried. This problem has been remedied with the new Member Information button located in the Essbase ribbon. When focused on a single Essbase member, users can click the Member Information button and be presented with multiple member properties such as: Dimension Name Member Level Member Generation Parent/Child Name Consolidation Operator Alias Tables Alias Names Attributes Formulas Comments User Defined Attributes (UDAs)

10 Linked Objects End users with proper access can now add/ access Linked Reporting Objects and Linked Partitions. Having Linked Reporting Object access allows for cells notes, external files and URLs to be linked to Smart View data cells for reference. Access to Linked Partitions enables connection between 2 separate databases. This allows users to navigate database A while connected to database B, opening up additional data analysis opportunities. Displaying Member Names and Aliases Previous versions of Smart View generated a common complaint centered on the display of member names versus aliases. Essbase and Planning users familiar with the Essbase Add-In were accustomed to displaying both member names and aliases in a retrieve. These users had become frustrated by Smart View s inability to function similarly. This problem has been fixed with Oracle s latest release whereas users now have the option to display member names and their aliases, side-by-side, on retrieves.

11 POV Toggle The POV Toggle button allows end-users the ability to move dimensions from the Smart View POV Toolbar to row one, thus placing all dimensions on the grid. Users familiar with the Essbase Add-In will appreciate this functionality, allowing power users quicker retrieve setup times. This can easily be switched back with the click of the POV Toggle button. Sheet Level Options Previously, all Smart View specified Options were global in nature. Options found in the Options dialog box including Member Options, Data Options and Formatting Options are now sheet specific, allowing for multiple sheets to function with their own definitions. This means Sheet 1 could drill to the bottom level and display only member names while Sheet 2 could drill to the next level and display the combination of member name and alias. Note that options found in Advanced Options, Cell Styles and Extensions remain global in nature. Butterfly Reporting One of the commonly used features of Financial Reporting involves the use of Butterfly reporting. Butterfly reports display a column of dimensional members between two columns of data.

12 New Zoom Options Users now have additional Zoom options including: Same Level Sibling Level Same Generation Formulas (retrieve data for all members that are defined by the formula of the selected member) Submit Data without Refreshing Gone is the requirement to refresh a grid prior to submitting data while in Free-Form mode. As noted above, this review includes many, but not all new features released with Smart View Please visit Oracle for a complete list and description of each new feature.

13 What s New in Hyperion Essbase ? Working with people new to Essbase every three to six months, I am always looking for ways to show users their hierarchies effectively. Many of them don t have access to Essbase administration services or EPMA. So, I always fall back to excel as a distribution method, as well as documentation, to show hierarchies. Expanding hierarchies to all descendants is a great way to show small hierarchies, but, I am always asked to make it a collapsible hierarchy using the Excel grouping feature. The challenge of doing this manually to a hierarchy with thousands of members is that it is extremely time consuming and very error prone. The following script can be added to any workbook to automate this effort. [crayon-5bc65a76bfcc /] Setup First, this sub routine has to be added to a workbook. Open up the visual basic editor. Right click on the workbook in the project explorer window and add a new module. Paste the code above in the new module. The editor is in different places in different version. In Excel 2007 and 2010, the Developer ribbon is not visible by default. To make it visible, go to the navigator wheel and click Excel Options. There is a checkbox named Show Developer Ribbon that will make this developer ribbon viewable. How To Use First, open the member selection option in the Essbase add-in

14 or smart view and select the parent. Add all its descendants. Alternately, change the drill type to all descendants and zoom in on the member of the hierarchy. Retrieve, or refresh, the data, and make sure the indent is set so the children are indented. Now, highlight the range of cells that has the hierarchy/dimension that the grouping should be applied. This should include cells in one column of the worksheet. Open the code editor and place the cursor inside the sub routine you added from above and click the green play triangle in the toolbar to execute the script. When this is finished, go back to the worksheet with the hierarchy and it will have the hierarchy grouped. Excel limits the level of groupings to eight. If the hierarchy has more than eight levels, they will be ignored. Now, the hierarchy can be expanded and collapsed for viewing. Shortcut keys or toolbar buttons can be assigned to execute this function if it is used frequently. If you are interested in doing this, there are a plethora of how-to articles on this topic. This Google search will get you started if you choose to go down that path. So, the next time you need to explain a hierarchy in Essbase, or distribute it in a common format, hopefully this script will help. Empower Users To Improve Calculation Times As an Essbase user, you have more power to improve performance than you think. How many times do you lock and send data

15 through Excel, SmartView, or web forms, that include zeros? How many times do you allocate data to a finite level out of convenience? Understanding what this does to Essbase is critical to understanding how a user can negatively impact performance without adding any value to the analysis or the results the database produces. I analyzed a planning database used in one of the largest financial institutions in the world. Over 60% of the values entered were zero. Another 20% of the values were less than 1 dollar. By eliminating the zeros, the total calculation time of the planning application was under 20 minutes. With the zeros, it was nearly 2 hours. There are two reasons for this. First, there is a different between empty and zero. Empty consumes no space to store whereas a zero consumes the same space as 1 billion. Think of this as a grocery bag. If you fill a grocery bag with nothing, it takes up no space. If you fill it with empty cans (a zero), it consumes the same amount of space as if those cans were full (1 billion). The example below is very common. Assume that a forecast needs to be done for the last 3 months of the year. Frequently, a spreadsheet would hold zeros for the first 9 months. 18 cells have zero and 6 cells have a positive value. That means that 75% of your data could be eliminated by not loading zeros. The same load with #Missing is more effective. I highly recommend reading the article explaining dense and

16 sparse to understand what a block is and what it represents before you continue this article. There is also another very significant factor in loading zeros. Loading a zero that creates a block just to hold a value of zero can explode the size of the database, as well as the time it takes to consolidate and execute business rules. The more blocks that have to be loaded and consolidated, the longer it takes to finish. If each block was a spreadsheet and you had to do this manually, you would have to open each spreadsheet and enter the number into a calculator to consolidate. If 75% of the blocks you opened were zero, it wouldn t change your total, but it would drastically increase the time it takes because you still have to open each spreadsheet. If an Essbase database has 1,000 blocks, and 75% of them only hold zeros, it will likely take 2 or 3 times longer to calc the zeros because it still has to open the block and add the zero. Remember, a zero acts no differently than a value of 100. As an example to the above, the following example would create a block for South and West, inflating the database size. Users can significantly reduce this unnecessary explosion in size by loading a blank as apposed to a zero. If zeros are already in the database, leaving the cell blank will NOT overwrite the zeros. If zeros are loaded inadvertently, a #Missing has to be used to remove them. For all you users loading data, it can be a hassle removing the zeros. Being responsible can significantly improve your experience with Essbase. To make it easier, take a look at

17 the function in the In2Hyperion Excel Ribbon that replaces all zeros with #Missing. Why is the maximum number of returnable rows in SmartView only 5,000? Regardless of whether the perception of using SmartView for large queries is good or bad, the reality is that finance and accounting users require the ability to pull large volumes of information out of Essbase. The only limit that I am aware of in the days of the Excel Add-In was the maximum number of rows Excel would allow (assuming the Essbase application cache settings were high enough to support it). With SmartView, there is a limit. The limit is controllable very easily, however. The error that users may question an administrator follows. Cannot perform cube view operation. OLAP error ( ): Maximum number of rows [5000] exceeded. To increase the maximum number of rows a user can retrieve, or submit, edit the service.olap.dataquery.grid.maxrows property in the essbase.properties file. The default is While editing this property, it may be benefitial to evaluate the size if the columns (.olap.dataquery.grid.maxcolumns), which is set to 255 by default. Once this is updated, restart the Hyperion services. The location of the essbase.properties file is dependent on the version of Essbase installed. Start by going to the

18 server with APS installed. Location for version 9.3 %HYPERION_HOME%\AnalyticProviderServices\bin directory Location for version 11 %HYPERION_HOME%\products\Essbase\aps\bin\

Force Excel to Calculate Dependencies In Order

Force Excel to Calculate Dependencies In Order Force Excel to Calculate Dependencies In Order Overview If you have ever used custom functions in Excel, depending on the complexity of them, you have probably run into an issue where the accuracy of the

More information

Hyperion Essbase Audit Logs Turning Off Without Notification

Hyperion Essbase Audit Logs Turning Off Without Notification Hyperion Essbase Audit Logs Turning Off Without Notification Audit logs, or SSAUDIT, are a crucial component of backing up Hyperion Essbase applications in many environments. It is the equivalent of a

More information

Oracle Planning and Budgeting Cloud (PBCS)

Oracle Planning and Budgeting Cloud (PBCS) Updated 03/22/17 Oracle Planning and Budgeting Cloud (PBCS) Smart View for Office 1 P a g e Table of Contents What is Smart View?... 3 PBCS Web Forms... 3 Ad Hoc Analysis Queries... 3 Installing Smart

More information

Recovering An Essbase Application From a Corrupt Data File

Recovering An Essbase Application From a Corrupt Data File Recovering An Essbase Application From a Corrupt Data File It is possible for a database in Essbase to become corrupt. This can be caused by server hangs, software glitches, and a variety of other reasons.

More information

Oracle Hyperion Tips and Tricks. NEOAUG Eric Sanders, Gordon Strodel Monday, October 22, 2012

Oracle Hyperion Tips and Tricks. NEOAUG Eric Sanders, Gordon Strodel Monday, October 22, 2012 Oracle Hyperion 11.1.2.2 Tips and Tricks NEOAUG Eric Sanders, Gordon Strodel Monday, October 22, 2012 Agenda About Archetype What s New in 11.1.2.2: New User Interface Calculation Manager Manage Substitution

More information

Budget Process Tools: Smart View Ad Hoc Basics

Budget Process Tools: Smart View Ad Hoc Basics Budget Process Tools: Smart View Ad Hoc Basics 2 6.21.17 CalPlan HCP (Human Capital Planning) CalRptg HCPRptg Smart View 1 Agenda 1 2 3 4 5 6 Smart View Ad Hoc Basics 1 Homework Review Creating Multiple

More information

Budget Process Tools: Smart View Ad Hoc Basics 1

Budget Process Tools: Smart View Ad Hoc Basics 1 Budget Process Tools: Smart View Ad Hoc Basics 1 01.12.17 CalPlan HCP (Human Capital Planning) CalRptg HCPRptg Smart View 1 An ad hoc committee What is your particular purpose for querying into your CalPlanning

More information

Budget Process Tools: Smart View Ad Hoc Basics 1

Budget Process Tools: Smart View Ad Hoc Basics 1 Budget Process Tools: Smart View Ad Hoc Basics 1 10.27.16 CalPlan HCP (Human Capital Planning) CalRptg HCPRptg Smart View 1 An ad hoc committee What is your particular purpose for querying into your CalPlanning

More information

Verify that your system configuration (product version and release level, platform) exactly matches what is specified in the Readme.

Verify that your system configuration (product version and release level, platform) exactly matches what is specified in the Readme. Oracle Hyperion Provider Services Release 9.3.3.0.00 Readme To view the most recent version of this Readme, see the 9.3.x documentation library on Oracle Technology Network (OTN) at http://www.oracle.com/technology/documentation/epm.html.

More information

CalPlan. Creating a Unit Plan Navigating CalPlan Workbook 1/25/18

CalPlan. Creating a Unit Plan Navigating CalPlan Workbook 1/25/18 CalPlan Creating a Unit Plan Workbook 1/25/18 Table of Contents Exercise 1: Log into the Workspace & Run a CalPlan Report... 3 Exercise 2: Launching CalPlan and Setting Your Entity... 10 Exercise 3: Actualized

More information

Oracle 1Z0-272 Exam Questions & Answers

Oracle 1Z0-272 Exam Questions & Answers Oracle 1Z0-272 Exam Questions & Answers Number: 1Z0-272 Passing Score: 800 Time Limit: 120 min File Version: 28.8 http://www.gratisexam.com/ Oracle 1Z0-272 Exam Questions & Answers Exam Name: Hyperion

More information

This Readme file describes the defects fixed in this patch and the requirements and instructions for applying this patch.

This Readme file describes the defects fixed in this patch and the requirements and instructions for applying this patch. Oracle Hyperion Smart View for Office, Fusion Edition Release 11.1.2.0.000 Patch Set 1 (PS1): 11.1.2.1.102 Readme [Skip Navigation Links] About This Release... 1 New Features... 2 Installation Information...

More information

Drillbridge: Easy Hyperion Drill-through with No Redevelopment

Drillbridge: Easy Hyperion Drill-through with No Redevelopment A Saxifrage Systems LLC White Paper by Jason Jones February 2015 Drillbridge: Easy Hyperion Drill-through with No Redevelopment Table of Contents Summary... 3 The Problem... 3 The Solution... 3 The Design

More information

NC User Conference Tips and Tricks for SAS FM June 16, 2009

NC User Conference Tips and Tricks for SAS FM June 16, 2009 NC User Conference Tips and Tricks for SAS FM June 16, 2009 Reporting 1. CDA Formula (Formatted Statement): To switch out the cell reference for the hardcoded member or dim name, you can go into the formula

More information

USING ODBC COMPLIANT SOFTWARE MINTRAC PLUS CONTENTS:

USING ODBC COMPLIANT SOFTWARE MINTRAC PLUS CONTENTS: CONTENTS: Summary... 2 Microsoft Excel... 2 Creating a New Spreadsheet With ODBC Data... 2 Editing a Query in Microsoft Excel... 9 Quattro Pro... 12 Creating a New Spreadsheet with ODBC Data... 13 Editing

More information

Hyperion course offered -

Hyperion course offered - Hyperion course offered - 1. HYPERION ESSBASE 2. Hyperion Financial Data Quality management 3. Hyperion Financial Reporting 4. Hyperion Planning 1.HYPERION ESSBASE course content Essbase Overview - Multidimensional

More information

Table of Contents. User Manual

Table of Contents. User Manual USER MANUAL 5.0 Table of Contents Introduction... 2 Features and Benefits... 2 Overview... 3 Standard User... 3 Administrator... 3 Unconnected... 3 Connect or Connected... 4 Configuration... 5 Settings...

More information

Purpose... 1 New Features... 1 Known Issues... 2 Defects Fixed in this Release... 9 Documentation Updates... 11

Purpose... 1 New Features... 1 Known Issues... 2 Defects Fixed in this Release... 9 Documentation Updates... 11 Oracle Enterprise Performance Management Architect, Fusion Edition Release 11.1.1.3.00 Readme [Skip Navigation Links] Purpose... 1 New Features... 1 Known Issues... 2 Defects Fixed in this Release... 9

More information

EXCEL BASICS: MICROSOFT OFFICE 2007

EXCEL BASICS: MICROSOFT OFFICE 2007 EXCEL BASICS: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

Editing XML Data in Microsoft Office Word 2003

Editing XML Data in Microsoft Office Word 2003 Page 1 of 8 Notice: The file does not open properly in Excel 2002 for the State of Michigan. Therefore Excel 2003 should be used instead. 2009 Microsoft Corporation. All rights reserved. Microsoft Office

More information

Rutgers University. Smart View Training Guide

Rutgers University. Smart View Training Guide Rutgers University Smart View Training Guide Contents What is Smart View?... 2 Installing Smart View... 2 Establishing a Connection... 3 Ad-Hoc Analysis... 5 Creating an Ad-Hoc Analysis... 5 Dimensions

More information

INTRODUCTION BACKGROUND DISCOVERER. Dan Vlamis, Vlamis Software Solutions, Inc. DISCOVERER PORTLET

INTRODUCTION BACKGROUND DISCOVERER. Dan Vlamis, Vlamis Software Solutions, Inc. DISCOVERER PORTLET FRONT-END TOOLS TO VIEW OLAP DATA Dan Vlamis, Vlamis Software Solutions, Inc. dvlamis@vlamis.com INTRODUCTION Discoverer release 10g uses BI Beans to present Oracle OLAP data. It gets its power from BI

More information

Full file at Excel Chapter 2 - Formulas, Functions, Formatting, and Web Queries

Full file at   Excel Chapter 2 - Formulas, Functions, Formatting, and Web Queries Excel Chapter 2 - Formulas, Functions, Formatting, and Web Queries MULTIPLE CHOICE 1. To start a new line in a cell, press after each line, except for the last line, which is completed by clicking the

More information

Seagate Crystal Reports 8 and Hyperion Essbase

Seagate Crystal Reports 8 and Hyperion Essbase Seagate Crystal Reports 8 and Hyperion Essbase Seagate Crystal Reports 8 provides dramatic improvements in OLAP reporting for users of Hyperion Essbase and all other supported OLAP systems. Now more than

More information

Q&As. Excel 2010 Expert. Pass Microsoft Exam with 100% Guarantee. Free Download Real Questions & Answers PDF and VCE file from:

Q&As. Excel 2010 Expert. Pass Microsoft Exam with 100% Guarantee. Free Download Real Questions & Answers PDF and VCE file from: 77-888 Q&As Excel 2010 Expert Pass Microsoft 77-888 Exam with 100% Guarantee Free Download Real Questions & Answers PDF and VCE file from: https://www.pass4lead.com/77-888.html 100% Passing Guarantee 100%

More information

This chapter is intended to take you through the basic steps of using the Visual Basic

This chapter is intended to take you through the basic steps of using the Visual Basic CHAPTER 1 The Basics This chapter is intended to take you through the basic steps of using the Visual Basic Editor window and writing a simple piece of VBA code. It will show you how to use the Visual

More information

Excel Tables & PivotTables

Excel Tables & PivotTables Excel Tables & PivotTables A PivotTable is a tool that is used to summarize and reorganize data from an Excel spreadsheet. PivotTables are very useful where there is a lot of data that to analyze. PivotTables

More information

EXCEL BASICS: MICROSOFT OFFICE 2010

EXCEL BASICS: MICROSOFT OFFICE 2010 EXCEL BASICS: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Files in Microsoft Excel are referred to as Workbooks. This is because they can contain more than one sheet. The number of sheets a workbook can contain is only limited by your computer

More information

Business Insight Authoring

Business Insight Authoring Business Insight Authoring Getting Started Guide ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: August 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

User Manual instantolap

User Manual instantolap User Manual instantolap Version 2.7.0 15.12.2010 Page 2 / 213 instantolap User Manual 2.7.0 instantolap User Manual 2.7.0 Page 3 / 213 Copyright Copyright (C) 2002-2010 Thomas Behrends Softwareentwicklung

More information

EFIS 2.0 Training Materials Child Care User

EFIS 2.0 Training Materials Child Care User EFIS 2.0 Training Materials Child Care User Contents Module 1 Basic Planning... 3 Module 2 Basic Planning Through Smart View... 17 Module 3 Advanced Smart View... 29 Module 4 Data Entry Validation... 40

More information

MICROSOFT OFFICE. Courseware: Exam: Sample Only EXCEL 2016 CORE. Certification Guide

MICROSOFT OFFICE. Courseware: Exam: Sample Only EXCEL 2016 CORE. Certification Guide MICROSOFT OFFICE Courseware: 3263 2 Exam: 77 727 EXCEL 2016 CORE Certification Guide Microsoft Office Specialist 2016 Series Microsoft Excel 2016 Core Certification Guide Lesson 1: Introducing Excel Lesson

More information

1. About AP Invoice Wizard

1. About AP Invoice Wizard 1. About AP Invoice Wizard Welcome to AP Invoice Wizard. We have developed this tool in response to demand from Oracle Payables users for a user friendly and robust spreadsheet tool to load AP Invoices

More information

Excel Select a template category in the Office.com Templates section. 5. Click the Download button.

Excel Select a template category in the Office.com Templates section. 5. Click the Download button. Microsoft QUICK Excel 2010 Source Getting Started The Excel Window u v w z Creating a New Blank Workbook 2. Select New in the left pane. 3. Select the Blank workbook template in the Available Templates

More information

TABLE OF CONTENTS. TECHNICAL SUPPORT APPENDIX Appendix A Formulas And Cell Links Appendix B Version 1.1 Formula Revisions...

TABLE OF CONTENTS. TECHNICAL SUPPORT APPENDIX Appendix A Formulas And Cell Links Appendix B Version 1.1 Formula Revisions... SPARC S INSTRUCTIONS For Version 1.1 UNITED STATES DEPARTMENT OF AGRICULTURE Forest Service By Todd Rivas December 29, 1999 TABLE OF CONTENTS WHAT IS SPARC S?... 1 Definition And History... 1 Features...

More information

Excel Part 3 Textbook Addendum

Excel Part 3 Textbook Addendum Excel Part 3 Textbook Addendum 1. Lesson 1 Activity 1-1 Creating Links Data Alert and Alternatives After completing Activity 1-1, you will have created links in individual cells that point to data on other

More information

If An Excel Worksheet Is In Manual Calculation Mode Press F9 To Recalculate

If An Excel Worksheet Is In Manual Calculation Mode Press F9 To Recalculate If An Excel Worksheet Is In Manual Calculation Mode Press F9 To Recalculate If you want to recalculate only the current worksheet, then press Shift+F9. The following macro sets the calculation mode to

More information

5. Excel Fundamentals

5. Excel Fundamentals 5. Excel Fundamentals Excel is a software product that falls into the general category of spreadsheets. Excel is one of several spreadsheet products that you can run on your PC. Others include 1-2-3 and

More information

Microsoft Excel XP. Intermediate

Microsoft Excel XP. Intermediate Microsoft Excel XP Intermediate Jonathan Thomas March 2006 Contents Lesson 1: Headers and Footers...1 Lesson 2: Inserting, Viewing and Deleting Cell Comments...2 Options...2 Lesson 3: Printing Comments...3

More information

Style Report Enterprise Edition

Style Report Enterprise Edition INTRODUCTION Style Report Enterprise Edition Welcome to Style Report Enterprise Edition! Style Report is a report design and interactive analysis package that allows you to explore, analyze, monitor, report,

More information

CREATING ACCESSIBLE SPREADSHEETS IN MICROSOFT EXCEL 2010/13 (WINDOWS) & 2011 (MAC)

CREATING ACCESSIBLE SPREADSHEETS IN MICROSOFT EXCEL 2010/13 (WINDOWS) & 2011 (MAC) CREATING ACCESSIBLE SPREADSHEETS IN MICROSOFT EXCEL 2010/13 (WINDOWS) & 2011 (MAC) Screen readers and Excel Users who are blind rely on software called a screen reader to interact with spreadsheets. Screen

More information

2. create the workbook file

2. create the workbook file 2. create the workbook file Excel documents are called workbook files. A workbook can include multiple sheets of information. Excel supports two kinds of sheets for working with data: Worksheets, which

More information

Introducing Microsoft Office Specialist Excel Module 1. Adobe Captivate Wednesday, May 11, 2016

Introducing Microsoft Office Specialist Excel Module 1. Adobe Captivate Wednesday, May 11, 2016 Slide 1 - Introducing Microsoft Office Specialist Excel 2013 Introducing Microsoft Office Specialist Excel 2013 Module 1 Page 1 of 25 Slide 2 - Lesson Objectives Lesson Objectives Understand what Microsoft

More information

OSR Composer 3.7 User Guide. Updated:

OSR Composer 3.7 User Guide. Updated: OSR Composer 3.7 User Guide Updated: 2013-01-31 Copyright OneStop Reporting AS www.onestopreporting.com Table of Contents Introduction... 1 Who should read this manual... 1 What s included in this manual...

More information

Managing Your Website with Convert Community. My MU Health and My MU Health Nursing

Managing Your Website with Convert Community. My MU Health and My MU Health Nursing Managing Your Website with Convert Community My MU Health and My MU Health Nursing Managing Your Website with Convert Community LOGGING IN... 4 LOG IN TO CONVERT COMMUNITY... 4 LOG OFF CORRECTLY... 4 GETTING

More information

Quick Reference Guide 8 Excel 2013 for Windows Keyboard Shortcut Keys

Quick Reference Guide 8 Excel 2013 for Windows Keyboard Shortcut Keys Quick Reference Guide 8 Excel 2013 for Windows Keyboard Shortcut Keys Control Shortcut s Ctrl + PgDn Ctrl + PgUp Ctrl + Shift + & Ctrl + Shift_ Ctrl + Shift + ~ Ctrl + Shift + $ Ctrl + Shift + % Ctrl +

More information

SAS Data Explorer 2.1: User s Guide

SAS Data Explorer 2.1: User s Guide SAS Data Explorer 2.1: User s Guide Working with SAS Data Explorer Understanding SAS Data Explorer SAS Data Explorer and the Choose Data Window SAS Data Explorer enables you to copy data to memory on SAS

More information

XLCubed Version 9 QuickStart

XLCubed Version 9 QuickStart XLCubed Version 9 QuickStart 1 P a g e Contents Welcome... 3 Connecting to your data... 3 XLCubed for Pivot Table users... 3 Adding a Grid, and the Report Designer... 5 Working with Grids... 7 Grid Components...

More information

Support for Oracle General Ledger Essbase applications in Calculation Manager

Support for Oracle General Ledger Essbase applications in Calculation Manager Oracle Hyperion Calculation Manager Release 11.1.2.0.000 Patch Set 1 (PS1): 11.1.2.1.000 Readme [Skip Navigation Links] Purpose... 1 New Features... 1 Release 11.1.2.1 New Features... 1 Release 11.1.2

More information

Using Microsoft Excel

Using Microsoft Excel About Excel Using Microsoft Excel What is a Spreadsheet? Microsoft Excel is a program that s used for creating spreadsheets. So what is a spreadsheet? Before personal computers were common, spreadsheet

More information

Chapter11 practice file folder. For more information, see Download the practice files in this book s Introduction.

Chapter11 practice file folder. For more information, see Download the practice files in this book s Introduction. Make databases user friendly 11 IN THIS CHAPTER, YOU WILL LEARN HOW TO Design navigation forms. Create custom categories. Control which features are available. A Microsoft Access 2013 database can be a

More information

Interactive Reporting & Essbase. interrel Consulting

Interactive Reporting & Essbase. interrel Consulting Interactive Reporting & Essbase interrel Consulting interrel - Founded in 1997 2008 Oracle Titan Award winner for EPM Solution of the year 2008 Oracle Excellence Award winner with Pearson Education One

More information

Call: Hyperion Planning Course Content:35-40hours Course Outline Planning Overview

Call: Hyperion Planning Course Content:35-40hours Course Outline Planning Overview Hyperion Planning Course Content:35-40hours Course Outline Planning Overview Oracle's Enterprise Performance Management Planning Architecture Planning and Essbase Navigating Workspace Launching Workspace

More information

Manual Calculation Definition Excel Shortcut Keyboard

Manual Calculation Definition Excel Shortcut Keyboard Manual Calculation Definition Excel Shortcut Keyboard Pressing Esc on your keyboard will allow you to exit Excel formula editing. If you have set your Excel formulas to calculate manually, and want to

More information

Excel 2007/2010. Don t be afraid of PivotTables. Prepared by: Tina Purtee Information Technology (818)

Excel 2007/2010. Don t be afraid of PivotTables. Prepared by: Tina Purtee Information Technology (818) Information Technology MS Office 2007/10 Users Guide Excel 2007/2010 Don t be afraid of PivotTables Prepared by: Tina Purtee Information Technology (818) 677-2090 tpurtee@csun.edu [ DON T BE AFRAID OF

More information

Getting started 7. Writing macros 23

Getting started 7. Writing macros 23 Contents 1 2 3 Getting started 7 Introducing Excel VBA 8 Recording a macro 10 Viewing macro code 12 Testing a macro 14 Editing macro code 15 Referencing relatives 16 Saving macros 18 Trusting macros 20

More information

Excel Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. 6. You can use a table s sizing handle to add columns or rows to a table.

Excel Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. 6. You can use a table s sizing handle to add columns or rows to a table. Excel Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts TRUE/FALSE 1. The header row must be row 1. ANS: F PTS: 1 REF: EX 234 2. If you freeze the top row in a worksheet and press Ctrl+Home,

More information

COPYRIGHTED MATERIAL. Making Excel More Efficient

COPYRIGHTED MATERIAL. Making Excel More Efficient Making Excel More Efficient If you find yourself spending a major part of your day working with Excel, you can make those chores go faster and so make your overall work life more productive by making Excel

More information

Welcome to Introduction to Microsoft Excel 2010

Welcome to Introduction to Microsoft Excel 2010 Welcome to Introduction to Microsoft Excel 2010 2 Introduction to Excel 2010 What is Microsoft Office Excel 2010? Microsoft Office Excel is a powerful and easy-to-use spreadsheet application. If you are

More information

CALCULATE NPV USING EXCEL

CALCULATE NPV USING EXCEL CALCULATE NPV USING EXCEL Identify major components of the Excel window Excel is a computerized spreadsheet, which is an important business tool that helps you report and analyze information. Excel stores

More information

Question No : 2 Identify four disadvantages / considerations when using a transparent partition.

Question No : 2 Identify four disadvantages / considerations when using a transparent partition. Volume: 69 Questions Question No : 1 Which two are Essbase components? A. Essbase server B. Administration services C. C API D. Web Analysis E. Financial reporting Answer: A,B Question No : 2 Identify

More information

New Perspectives on Microsoft Excel Module 1: Getting Started with Excel

New Perspectives on Microsoft Excel Module 1: Getting Started with Excel New Perspectives on Microsoft Excel 2016 Module 1: Getting Started with Excel 1 Objectives, Part 1 Open and close a workbook Navigate through a workbook and worksheet Select cells and ranges Plan and create

More information

MICROSOFT EXCEL KEYBOARD SHORCUTS

MICROSOFT EXCEL KEYBOARD SHORCUTS MICROSOFT EXCEL KEYBOARD SHORCUTS F1 Displays the Office Assistant or (Help > Microsoft Excel Help) F2 Edits the active cell, putting the cursor at the end F3 Displays the (Insert > Name > Paste) dialog

More information

Oracle Hyperion Strategic Finance, Fusion Edition. Readme File. Purpose. Release This file contains these sections:

Oracle Hyperion Strategic Finance, Fusion Edition. Readme File. Purpose. Release This file contains these sections: Oracle Hyperion Strategic Finance, Fusion Edition Release 11.1.2.0.0 Readme File This file contains these sections: Purpose... 1 New Features...... 2 Translation Support....2 System Requirements Documentation...

More information

Oracle Crystal Ball, Fusion Edition. Readme. Purpose. New Features. Installation Information. Release Patch Set 1 (PS1):

Oracle Crystal Ball, Fusion Edition. Readme. Purpose. New Features. Installation Information. Release Patch Set 1 (PS1): Oracle Crystal Ball, Fusion Edition Release 11.1.2.0.000 Patch Set 1 (PS1): 11.1.2.1.000 Readme [Skip Navigation Links] Purpose... 1 New Features... 1 Installation Information... 1 Supported Platforms...

More information

Office 2016 Excel Basics 25 Video/Class Project #37 Excel Basics 25: Power Query (Get & Transform Data) to Convert Bad Data into Proper Data Set

Office 2016 Excel Basics 25 Video/Class Project #37 Excel Basics 25: Power Query (Get & Transform Data) to Convert Bad Data into Proper Data Set Office 2016 Excel Basics 25 Video/Class Project #37 Excel Basics 25: Power Query (Get & Transform Data) to Convert Bad Data into Proper Data Set Goal in video # 25: Learn about how to use the Get & Transform

More information

Oracle Planning and Budgeting Cloud

Oracle Planning and Budgeting Cloud Oracle Planning and Budgeting Cloud July Update (16.07) Release Content Document July 2016 TABLE OF CONTENTS ORACLE PLANNING AND BUDGETING CLOUD, JULY UPDATE... 3 ANNOUNCEMENTS... 3 New User Interface...

More information

Tips & Tricks: MS Excel

Tips & Tricks: MS Excel Tips & Tricks: MS Excel 080501.2319 Table of Contents Navigation and References... 3 Layout... 3 Working with Numbers... 5 Power Features... 7 From ACS to Excel and Back... 8 Teacher Notes: Test examples

More information

Oracle Financial Consolidation and Close Cloud. October 2017 Update (17.10) What s New

Oracle Financial Consolidation and Close Cloud. October 2017 Update (17.10) What s New Oracle Financial Consolidation and Close Cloud October 2017 Update (17.10) What s New TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE FINANCIAL CONSOLIDATION AND CLOSE CLOUD, OCTOBER UPDATE... 4 ANNOUNCEMENTS

More information

Chapter 10 Linking Calc Data

Chapter 10 Linking Calc Data Calc Guide Chapter 10 Linking Calc Data Sharing data in and out of Calc This PDF is designed to be read onscreen, two pages at a time. If you want to print a copy, your PDF viewer should have an option

More information

Microsoft Excel 2007 Macros and VBA

Microsoft Excel 2007 Macros and VBA Microsoft Excel 2007 Macros and VBA With the introduction of Excel 2007 Microsoft made a number of changes to the way macros and VBA are approached. This document outlines these special features of Excel

More information

Cloud CFO Trial: Step by Step Guide

Cloud CFO Trial: Step by Step Guide Cloud CFO Trial: Step by Step Guide Index Introduction to Cloud CFO... 3 Register and Download... 4 Getting Started... 6 Data Overview... 11 Reports... 14 2 01. Introduction: Cloud CFO Cloud CFO automates

More information

Specification Manager

Specification Manager Enterprise Architect User Guide Series Specification Manager Author: Sparx Systems Date: 30/06/2017 Version: 1.0 CREATED WITH Table of Contents The Specification Manager 3 Specification Manager - Overview

More information

EDITING AN EXISTING REPORT

EDITING AN EXISTING REPORT Report Writing in NMU Cognos Administrative Reporting 1 This guide assumes that you have had basic report writing training for Cognos. It is simple guide for the new upgrade. Basic usage of report running

More information

MODULE III: NAVIGATING AND FORMULAS

MODULE III: NAVIGATING AND FORMULAS MODULE III: NAVIGATING AND FORMULAS Copyright 2012, National Seminars Training Navigating and Formulas Using Grouped Worksheets When multiple worksheets are selected, the worksheets are grouped. If you

More information

Microsoft How to Series

Microsoft How to Series Microsoft How to Series Getting Started with EXCEL 2007 A B C D E F Tabs Introduction to the Excel 2007 Interface The Excel 2007 Interface is comprised of several elements, with four main parts: Office

More information

HYPERION ESSBASE INITIAL EXERCISE

HYPERION ESSBASE INITIAL EXERCISE DSV, KTH / SU PETIA WOHED IS5/2I1224 HYPERION ESSBASE 020417 HYPERION ESSBASE INITIAL EXERCISE In this exercise, you will learn the basic navigation in MS Excel as an interface tool to DB2 OLAP server.

More information

Excel 2007 New Features Table of Contents

Excel 2007 New Features Table of Contents Table of Contents Excel 2007 New Interface... 1 Quick Access Toolbar... 1 Minimizing the Ribbon... 1 The Office Button... 2 Format as Table Filters and Sorting... 2 Table Tools... 4 Filtering Data... 4

More information

Advanced Excel Macros : Data Validation/Analysis : OneDrive

Advanced Excel Macros : Data Validation/Analysis : OneDrive Advanced Excel Macros : Data Validation/Analysis : OneDrive Macros Macros in Excel are in short, a recording of keystrokes. Beyond simple recording, you can use macros to automate tasks that you will use

More information

Copyright 2018 MakeUseOf. All Rights Reserved.

Copyright 2018 MakeUseOf. All Rights Reserved. The Beginner s Guide to Microsoft Excel Written by Sandy Stachowiak Published April 2018. Read the original article here: https://www.makeuseof.com/tag/beginners-guide-microsoftexcel/ This ebook is the

More information

» How do I Integrate Excel information and objects in Word documents? How Do I... Page 2 of 10 How do I Integrate Excel information and objects in Word documents? Date: July 16th, 2007 Blogger: Scott Lowe

More information

Oracle Essbase & Oracle OLAP: The Guide to Oracle's Multidimensional Solution by Michael Schrader et al. Oracle Press. (c) Copying Prohibited.

Oracle Essbase & Oracle OLAP: The Guide to Oracle's Multidimensional Solution by Michael Schrader et al. Oracle Press. (c) Copying Prohibited. Oracle Essbase & Oracle OLAP: The Guide to Oracle's Multidimensional Solution by Michael Schrader et al. Oracle Press. (c) 2010. Copying Prohibited. Reprinted for Swapnil Ramkrishna Khirade, Accenture

More information

Microsoft Excel 2010

Microsoft Excel 2010 Microsoft Excel 2010 omar 2013-2014 First Semester 1. Exploring and Setting Up Your Excel Environment Microsoft Excel 2010 2013-2014 The Ribbon contains multiple tabs, each with several groups of commands.

More information

Computer Shortcuts. Files menu options in current program. Edits options in current program Universal Help in almost every Windows program.

Computer Shortcuts. Files menu options in current program. Edits options in current program Universal Help in almost every Windows program. www.bankjobszone.com Computer Shortcuts Shortcut keys Concept: Shortcuts keys help provide an easier and usually quicker method of navigating and using computer software programs. Shortcut keys are commonly

More information

Doc. Version 1.0 Updated:

Doc. Version 1.0 Updated: OneStop Reporting Report Composer 3.5 User Guide Doc. Version 1.0 Updated: 2012-01-02 Table of Contents Introduction... 2 Who should read this manual... 2 What s included in this manual... 2 Symbols and

More information

23 - Report & Export

23 - Report & Export 23 - Report & Export Contents 23 - REPORT & EXPORT... 1 SMART PUBLISHER... 1 Opening Smart Publisher... 1 Smart Publisher Settings... 2 The Finished Report... 5 Alias Names for Codes... 6 The Word Template

More information

Microsoft Excel 2010 Training. Excel 2010 Basics

Microsoft Excel 2010 Training. Excel 2010 Basics Microsoft Excel 2010 Training Excel 2010 Basics Overview Excel is a spreadsheet, a grid made from columns and rows. It is a software program that can make number manipulation easy and somewhat painless.

More information

UAccess ANALYTICS Next Steps: Working with Bins, Groups, and Calculated Items: Combining Data Your Way

UAccess ANALYTICS Next Steps: Working with Bins, Groups, and Calculated Items: Combining Data Your Way UAccess ANALYTICS Next Steps: Working with Bins, Groups, and Calculated Items: Arizona Board of Regents, 2014 THE UNIVERSITY OF ARIZONA created 02.07.2014 v.1.00 For information and permission to use our

More information

Excel & Business Math Video/Class Project #01 Introduction to Excel. Why We Use Excel for Math. First Formula.

Excel & Business Math Video/Class Project #01 Introduction to Excel. Why We Use Excel for Math. First Formula. Excel & Business Math Video/Class Project #01 Introduction to Excel. Why We Use Excel for Math. First Formula. Topics Covered in Video: 1) USB Drive to store files from class... 2 2) Save As to Download

More information

Hyperion Financial Management Course Content:35-40hours

Hyperion Financial Management Course Content:35-40hours Hyperion Financial Management Course Content:35-40hours Course Outline Introduction to Financial Management About Enterprise Performance Management Financial Management Solution Financial Consolidation,

More information

1. Introduction to Microsoft Excel

1. Introduction to Microsoft Excel 1. Introduction to Microsoft Excel A spreadsheet is an online version of an accountant's worksheet, which can automatically do most of the calculating for you. You can do budgets, analyze data, or generate

More information

WEEK NO. 12 MICROSOFT EXCEL 2007

WEEK NO. 12 MICROSOFT EXCEL 2007 WEEK NO. 12 MICROSOFT EXCEL 2007 LESSONS OVERVIEW: GOODBYE CALCULATORS, HELLO SPREADSHEET! 1. The Excel Environment 2. Starting A Workbook 3. Modifying Columns, Rows, & Cells 4. Working with Worksheets

More information

Excel 2016 Basics for Windows

Excel 2016 Basics for Windows Excel 2016 Basics for Windows Excel 2016 Basics for Windows Training Objective To learn the tools and features to get started using Excel 2016 more efficiently and effectively. What you can expect to learn

More information

EXCEL CONNECT USER GUIDE

EXCEL CONNECT USER GUIDE USER GUIDE Developed and published by Expedience Software Copyright 2012-2017 Expedience Software Excel Connect Contents About this Guide... 1 The Style Palette User Guide 1 Excel Connect Overview... 2

More information

Rev. C 11/09/2010 Downers Grove Public Library Page 1 of 41

Rev. C 11/09/2010 Downers Grove Public Library Page 1 of 41 Table of Contents Objectives... 3 Introduction... 3 Excel Ribbon Components... 3 Office Button... 4 Quick Access Toolbar... 5 Excel Worksheet Components... 8 Navigating Through a Worksheet... 8 Making

More information

CA Productivity Accelerator 12.1 and Later

CA Productivity Accelerator 12.1 and Later CA Productivity Accelerator 12.1 and Later Localize Content Localize Content Once you have created content in one language, you might want to translate it into one or more different languages. The Developer

More information

Microsoft Office Excel 2003

Microsoft Office Excel 2003 Microsoft Office Excel 2003 Tutorial 1 Using Excel To Manage Data 1 Identify major components of the Excel window Excel is a computerized spreadsheet, which is an important business tool that helps you

More information

Planning User Manual

Planning User Manual Planning 11.1.2 User Manual Budget Office May 2011 Hyperion Planning/Workspace/Reports Hyperion Planning Overview.... 3 Logging In.... 3 Setting User Preferences.... 3 Workspace Logging In..4 Navigating

More information

Specification Manager

Specification Manager Enterprise Architect User Guide Series Specification Manager How to define model elements simply? In Sparx Systems Enterprise Architect, use the document-based Specification Manager to create elements

More information