31 st January Author: Saravanan Singaravadivelan

Size: px
Start display at page:

Download "31 st January Author: Saravanan Singaravadivelan"

Transcription

1

2 31 st January 2013 Author: Saravanan Singaravadivelan Qubix International Limited Highclere House 5 High Street, Knaphill Surrey, GU21 2PG Tel: +44 (0) Qubix International Limited Hyperion HFM Bootcamp Page 2

3 CONTENTS 6 RULES SECTION OBJECTIVES CREATING A RULES FILE Creating a Simple Rules file Creating Subroutines Creating Functions Creating Variables Applying Restrictions on Rules Adding Functions to Rules Common Calculations LOADING AND EXTRACTING RULES Qubix International Limited Hyperion HFM Bootcamp Page 3

4 6 RULES 6.1 SECTION OBJECTIVES The focus of this Chapter is to review how calculations are created and maintained in HFM. Rules are written in Visual Basic script to create calculations in HFM. Referring to the HFM Admin guide chapter for the rule functions and their use as well as looking through the sample rule files for examples is very useful. At the end of this section, you will be able to: Create a Rules file using Rules Editor Modify/Update existing Rules file Load and Extract Rules File 6.2 CREATING A RULES FILE CREATING A SIMPLE RULES FILE 1. Launch Textpad. 2. Open a blank new file and save it with a file name under D:\1HFMBootcamp\Rules\. 3. We will now add some comments/explanation at the beginning of the file by using an apostrophe in front of the comment. Comment can/will be added throughout the exercise to help understanding the calculation/sections within the Rules file. Please add the comments as shown in the window below. Qubix International Limited Hyperion HFM Bootcamp Page 4

5 4. Save the file again with the same file name or open the already created file D:\1HFMBootcamp\Rules\QBCConsol Rules First Section.rle to check the correct syntax CREATING SUBROUTINES 5. Add the two subroutines displayed below in the Second Section, one routine for Calculate and one for Dynamic. 6. For more detail and explanation on Subroutines, please refer to page 225 of the hfm_admin.pdf guide saved under D:\1HFMBootCamp\ Guides\ folder. Qubix International Limited Hyperion HFM Bootcamp Page 5

6 6.2.3 CREATING FUNCTIONS 7. Within the Sub Calculate routine, now add the 4 lines (2 comments, 2 calculation lines) below to calculate Retained Earnings account BS5101 in the Balance Sheet. 8. HS.Clear and HS.Exp are Rules functions that allow clearing and calculation of members in HFM. 9. BS5101 is the Account (A#) for Retained Earnings, Profit is the Custom1 member (C1#) for the Profit movement line, STATRETAINEDPL is the Account (A#) for Retained Profit & Loss, AllCustom1 is the top aggregated member for Custom1 dimension. Qubix International Limited Hyperion HFM Bootcamp Page 6

7 10. Still within the Sub Calculate routine, now add the following 4 lines (2 comments, 2 calculation lines) below to calculate Retained Earnings Opening Balance line, which needs to pull from the Closing Balance line of the prior year. Qubix International Limited Hyperion HFM Bootcamp Page 7

8 11. Within the Sub Dynamic routine, now add the 2 lines below to calculate Gross Profit Margin (%) account KPI HS.Dynamic is the Rule function that allows dynamic calculation of members in HFM. To be able to run this calculation the metadata member needs to be flagged as Dynamic in the Account Type box. 13. Save the file with a file name or open the already created file D:\1HFMBootcamp\Rules\QBCConsol Rules Second Section.rle to check the correct syntax. Qubix International Limited Hyperion HFM Bootcamp Page 8

9 14. Within the Sub Calculate routine, now add calculation of validation account USHV00100 Balanced Balance Sheet Check as a difference between Total Assets and Total Liability & Equity accounts. 15. Within the Sub Dynamic routine, add calculation of account KPI2103 Return on Equity (%) as Profit / (Loss) After Tax on Equity as a percentage. 16. Save the file with a file name or open the already created file D:\1HFMBootcamp\Rules\QBCConsol Rules Second Section v2.rle to check the correct syntax. 17. For more detail and explanation on Functions, please refer to page 231 of the hfm_admin.pdf guide saved under D:\1HFMBootCamp\ Guides\ folder CREATING VARIABLES 18. We now add a Third Section (between First and Second) where we will create a constant (which is a type of variables) that we can then use to store a notchanging string that can be used through all rules. These constants are used to specify full cross dimensional member names. 19. Add now the two constants below. Qubix International Limited Hyperion HFM Bootcamp Page 9

10 20. The first one, ALLTOPS, applies all top members of Custom1 4 and ICP dimension. The second one, ALLNONESXC1, applies [None] member for Custom2 4 and ICP dimensions, but excludes Custom We can now apply these constants to some of the calculation lines we built earlier, i.e. calculation of Retained Earnings. 22. Copy the HS.Exp expression down one line and comment out the original line, so to keep it in case we need to get back to the original script. 23. Modify the copied line to include the two constants we created just before. Add ALLNONESXC1 to the left part of the equation, as we want to store the amount into a base member of all/partial dimensions. Add ALLTOPS to the right part of the equation, as we want to pull Total members of all/partial dimension. Qubix International Limited Hyperion HFM Bootcamp Page 10

11 24. As you can see from above, the constant needs to be concatenated to the dimension member using a & character. 25. Add now all the constants shown below, which represents all the possible combination of dimension members for Custom1 4 and ICP. You can copy this from the Third Section of the file D:\1HFMBootcamp\Rules\QBCConsol Rules Third Section.rle. 26. Now modify the calculation of the Sub Calculate routine to include the new constants. 27. Save the file with a file name or open the already created file D:\1HFMBootcamp\Rules\QBCConsol Rules Third Section.rle to check the correct syntax. Qubix International Limited Hyperion HFM Bootcamp Page 11

12 6.2.5 APPLYING RESTRICTIONS ON RULES 28. We will now apply If/Then restriction to the Rules file. Using the D:\1HFMBootcamp\Rules\QBCConsol Rules Third Section.rle, add the If/Then and End If strings shown below in Second Section of the file. 29. The If opens the restriction and the End If closes it, the calculation included between these will only run if the condition in the If statement (entity is a base entity) has been met. Move all the calculation lines to the right, so that it will make it easier to read the script. 30. Save the file with a file name or open the already created file D:\1HFMBootcamp\Rules\QBCConsol Rules If Then.rle to check the correct syntax. 31. We will now apply Select Case restriction to the Rules file. Using the D:\1HFMBootcamp\Rules\QBCConsol Rules If Then.rle, move the strings highlighted below out of the If/Then End If statement. Qubix International Limited Hyperion HFM Bootcamp Page 12

13 32. Add the Select Case strings shown below. 33. Create Case for Actual scenario, where Closing Actual = Opening Actual prior year, last period. Remove any reference to BS5101, so that the rule runs for all accounts. 34. Create Case for Forecast scenario, where Closing Forecast = Opening Actual prior year, last period. Qubix International Limited Hyperion HFM Bootcamp Page 13

14 35. Create Case for Budget scenario, where Closing Budget = Opening Forecast prior year, last period. 36. Save the file with a file name or open the already created file D:\1HFMBootcamp\Rules\QBCConsol Rules Select Case.rle to check the correct syntax. 37. We will now apply For/Next restriction to the Rules file. 38. First of all, let s create a new subroutine for Consolidation, as shown in the Fourth Section of the rules file below. 39. Within the Sub Consolidate routine we have inserted various variables, which are used to define the type of consolidation required, depending on the consolidation method in use. 40. Let s now add the For/Next restriction, as shown below. Qubix International Limited Hyperion HFM Bootcamp Page 14

15 41. The restriction above is used to loop through a list of items and will only return accounts with IsConsolidate status and with data. We now add the consolidation rule within this looping function. 42. The statement above means that for those account with data and with IsConsolidate status, the system checks if the entity uses an Equity method or not and it applies the respective Consolidation rule. 43. Save the file with a file name or open the already created file D:\1HFMBootcamp\Rules\QBCConsol Rules For Next.rle to check the correct syntax. 44. Let s now go back to the Select Case statement, where we calculated the Opening Balance for BS5101. This itself is a restriction as we only want to calculate the Opening for account BS5101. We are using Account and Custom dimension to restrict when Rules run. Qubix International Limited Hyperion HFM Bootcamp Page 15

16 45. Change this restriction to apply to all accounts, not only BS Save the file with a file name or open the already created file D:\1HFMBootcamp\Rules\QBCConsol Rules Custom Restriction.rle to check the correct syntax. 47. For more detail and explanation on Conditional Rules, please refer to page 221 of the hfm_admin.pdf guide saved under D:\1HFMBootCamp\ Guides\ folder ADDING FUNCTIONS TO RULES 48. Add the syntax shown in the Fifth Section of the Rules below, at the bottom of the file. 49. First we declare some variables and constants. 50. The function AllTopExp is then used to concatenate the Account dimension to the other dimension defined with ALLTOPS constant, that we created earlier on in the course. 51. Add the function GetCFMove, below function AllTopExp previously created. Qubix International Limited Hyperion HFM Bootcamp Page 16

17 52. SAllTop is another variable which takes the function AllTopExp previously created. 53. Add now an If/Then restriction to calculate the scenario source, depending on the scenario in the Point of View. If scenario is ACTUAL or FORECAST, the source scenario needs to be ACTUAL, otherwise if scenario is BUDGET, then the source scenario needs to be FORECAST. 54. Add now the GetCFMove calculation, which needs to be a difference between the account selected at the current POV and the same account at source scenario (defined with If/Then above) and previous year and last period (December). Qubix International Limited Hyperion HFM Bootcamp Page 17

18 55. Save the file with a file name or open the already created file D:\1HFMBootcamp\Rules\QBCConsol Rules Function.rle to check the correct syntax COMMON CALCULATIONS 56. Using the function GetCFMove we just created above, we create Cash Flow calculation for account CF3750 Retained Earnings Movements. This will compare the current balance of account BS5101 to the last year s ending balance and will do the math one way or the other based on the account type. 57. The statement uses the GetCFMove function on account BS5101 and places the amount into account CF3750 and uses a specific C4 Syscalc, which can be used for calculations like this one, to separate what s input and what s calculated. Qubix International Limited Hyperion HFM Bootcamp Page 18

19 Note: There are several moving parts to cash flow. Start with EBIT pre Exceptionals (ie, CF1000 = EBITPRE) and then calc line items to back out non cash P&L items like depreciation. For changes in the balance sheet, one approach is to simply list the accounts within the rule for each cash flow line item. Another approach is to use a user defined field on the balance sheet accounts to indicate which line item they impact and then use a for/next loop to cycle through them and calculate the change. Some cashflow details will need to come from movement detail, like capital expenditures a change in fixed assets does not adequately capture capital expenditures vs. disposals, retirements, etc. The net increase in cash is then added to the opening balance. At the end is a comparison to cash on the balance sheet. Lastly is a calculation to calculate the currency translation effect within cash flow, as the ending balance will translate at the end of month rate and the cash flow line items translate at the average rate. 58. Create a Foreign Exchange Difference calculation within the Sub Calculate section. FX Difference needs to run at translated parent levels; therefore we will use an If/Then statement to restrict when this rule needs to run. 59. First we add calculation of C1 Stored member, which equals C1 member TotalMvt. 60. Then we need to set some Variables. 61. Then we insert the If/Then Statement. 62. Finally we add the calculation of Custom1 member FXDiff. Qubix International Limited Hyperion HFM Bootcamp Page 19

20 63. Create an Impact Status calculation within the Sub Calculate section. This needs to run when the period selected is the last period (I.e. Dec) and it will impact the first period of the following year. 64. First we set the If/Then statement. 65. Then we add the Impact Status calculation within the If/Then statement, so that it only runs if the condition is met. 66. Create a Write to File calculation within the First Section of the Rules file. This will allow debug of new codes. Qubix International Limited Hyperion HFM Bootcamp Page 20

21 67. First create some variables for the debug. 68. Create now a new section, Sixth Section, where to insert the Debug Subroutine. Write To File can also be used to extract data into a file or create s by writing the text file of an into the drop box of a mail server. 69. Create a NoInput calculation within the Seventh Section of the Rules file. This will prevent data input for certain members specified in this part of the Rules file. 70. First we create a new subroutine called NoInput. 71. Add now the NoInput calculation to prevent data input into C4 member [None], for all accounts for value <Entity Curr Adj>. Qubix International Limited Hyperion HFM Bootcamp Page 21

22 72. Save the file with a file name or open the already created file D:\1HFMBootcamp\Rules\QBCConsol Rules Common Calc.rle to check the correct syntax. 6.3 LOADING AND EXTRACTING RULES 73. Within the HFM Web, select Consolidation Load Application Elements and Load Rules frame. 74. Click on the search icon, browse to D:\1HFMBootcamp\Rules\, select file QBCConsol Rules Final.rle and click on Open 75. Click on Scan and if no errors proceed to next step. 76. Click on Load. 77. We now need to load some data so that we can check the Rules we have just uploaded onto the system. Load the two data files that have already been prepared for you under folder D:\1HFMBootcamp\Data\ToLoad. 78. Select Documents and Choose the Grid QBCConsol Rules Check Grid. Qubix International Limited Hyperion HFM Bootcamp Page 22

23 79. Select any of the cells for Jan, right click and select Calculate. This will calculate all the Rules applied in the Rules file. 80. You can then cross check the data to make sure the calculation defined in the Rules file provides the correct result in the grid. 81. To extract Rules, select Rules from the Consolidation Extract Appliation Elements and follow same procedure as per member lists. Please note that you can save the file with various extensions. Please use.rle file and open it using Textpad, as this will make it easier to read the file. Qubix International Limited Hyperion HFM Bootcamp Page 23

31 st January Author: Saravanan Singaravadivelan

31 st January Author: Saravanan Singaravadivelan 31 st January 2013 Author: Saravanan Singaravadivelan Qubix International Limited Highclere House 5 High Street, Knaphill Surrey, GU21 2PG Tel: +44 (0) 1483 480222 Qubix International Limited Hyperion

More information

31 st January Author: Saravanan Singaravadivelan

31 st January Author: Saravanan Singaravadivelan 31 st January 2013 Author: Saravanan Singaravadivelan Qubix International Limited Highclere House 5 High Street, Knaphill Surrey, GU21 2PG Tel: +44 (0) 1483 480222 Qubix International Limited Hyperion

More information

PassCollection. IT certification exam collections provider, High pass rate

PassCollection.   IT certification exam collections provider, High pass rate PassCollection http://www.passcollection.com IT certification exam collections provider, High pass rate Exam : 1z0-532 Title : Oracle Hyperion Financial Management 11 Essentials Vendor : Oracle Version

More information

SelfTestEngine.1z0-532,64questions&A

SelfTestEngine.1z0-532,64questions&A SelfTestEngine.1z0-532,64questions&A Number: 1z0-532 Passing Score: 800 Time Limit: 120 min File Version: 4.6 http://www.gratisexam.com/ 1z0-532 Oracle Hyperion Financial Management 11 Essentials This

More information

Hyperion 4H Hyperion Financial Management v

Hyperion 4H Hyperion Financial Management v Hyperion 4H0-435 Hyperion Financial Management v3.51 http://killexams.com/exam-detail/4h0-435 Answer: B QUESTION: 167 A client has a dynamic process of adding new accounts and products every month. They

More information

Introduction and Organization of Reports

Introduction and Organization of Reports Chapter 7 Management Reports 1. Introduction and Organization of Reports Introduction and Organization of Reports In order to run the Management Reports, starting from the Hyperion workspace and its Explore

More information

MYOB Exo InterCompany. User Guide

MYOB Exo InterCompany. User Guide MYOB Exo InterCompany User Guide 2017.3 Table of Contents Features of the System... 1 Setup Overview... 2 Installing InterCompany... 2 Defining the Group Consolidation... 5 Defining Companies... 6 Defining

More information

Hyperion Solutions Exam 4H0-435 hyperion financial management v3.51 exam Version: 5.0 [ Total Questions: 184 ]

Hyperion Solutions Exam 4H0-435 hyperion financial management v3.51 exam Version: 5.0 [ Total Questions: 184 ] s@lm@n Hyperion Solutions Exam 4H0-435 hyperion financial management v3.51 exam Version: 5.0 [ Total Questions: 184 ] Topic 0, A A Question No : 1 - (Topic 0) In a Web Data Entry Form script, what is the

More information

1Z

1Z 1Z0-257 Passing Score: 800 Time Limit: 4 min Exam A QUESTION 1 Which two statements are true about HFM Security? (Choose two.) A. Lightweight Directory Access Protocol (LDAP) groups can be added to HFM

More information

February 2, Q presentation. Claus Hougesen, CEO

February 2, Q presentation. Claus Hougesen, CEO February 2, 2012 Q4 2011 presentation Claus Hougesen, CEO Group Q4 2011 highlights Revenue of MNOK 6,519.2, up 12.0% in constant currency Organic growth of 5.1% in constant currency EBITDA of MNOK 374.9,

More information

Visit our Web site at or call to learn about training classes that are added throughout the year.

Visit our Web site at   or call to learn about training classes that are added throughout the year. S a gee RPAc c pa ci nt e l l i ge nc e Re por t De s i gne r ST UDE NTWORKBOOK Notice This document and the Sage ERP Accpac software may be used only in accordance with the accompanying Sage ERP Accpac

More information

Copyright...7. Overview of General Ledger Processes Configuration...11

Copyright...7. Overview of General Ledger Processes Configuration...11 Contents 2 Contents Copyright...7 Overview of General Ledger Processes... 8 Configuration...11 Preparation...11 Recommended Initial Configuration of the General Ledger Module... 11 Advanced Configuration...12

More information

Oracle 1Z0-257 Exam Questions & Answers

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

More information

AIMS. Statement Formatter Version 6.3 May 1, 2006

AIMS. Statement Formatter Version 6.3 May 1, 2006 AIMS Statement Formatter Version 6.3 May 1, 2006 Copyright Western Canadian Software, 2006 - TABLE OF CONTENTS What About Statement Formatter?... 1 Statement Formatter Menu Options... 2 Format Maintenance...3

More information

For personal use only

For personal use only FY 2014 Half-Year Results 27 February 2014 NEXTDC LIMITED ACN 143 582 521 H1 FY14 highlights for the half-year ended 31 December 2013 National network nearing completion Strong functional sales channel

More information

Interim Report on the First Half of /01/ 2017

Interim Report on the First Half of /01/ 2017 Interim Report on the First Half of 2017 01/01/ 2017 30/06/ 06/30/ 2 ITELLIGENCE KEY FIGURES MEUR Jan 1 June 30, 2017 Jan 1 June 30, 2016 Apr 1 June 30, 2017 Apr 1 June 30, 2016 Total revenues 416.2 357.7

More information

Sony Ericsson reports second quarter 2010 results

Sony Ericsson reports second quarter 2010 results PRESS RELEASE July 16, 2010 Sony Ericsson reports second quarter 2010 results Q2 Highlights: Income before taxes excl. restructuring charges increases to Euro 63 million Positive cash flow generated from

More information

2 New Company Setup OBJECTIVES:

2 New Company Setup OBJECTIVES: 2 New Company Setup In Chapter 2 of Accounting Fundamentals with QuickBooks Online Essentials Edition, you will learn how to use the software to set up your business. New Company Setup includes selecting

More information

Consolidated Financial Results for the Second Quarter, Fiscal 2018

Consolidated Financial Results for the Second Quarter, Fiscal 2018 Consolidated Financial Results for the Second Quarter, Fiscal 2018 Ⅰ. Consolidated Financial Results for the First Half, Fiscal 2018 Consolidated Financial Results for Fiscal 2018 Ⅱ. Supplementary Data

More information

Academies budget forecast return 2015 to Guide to completing the online form for all academies

Academies budget forecast return 2015 to Guide to completing the online form for all academies Academies budget forecast return 2015 to 2016 Guide to completing the online form for all academies June 2015 Contents 1 Introduction 3 2 The online return 5 Updating your browser 5 Accessing online returns

More information

Report Designer for Sage MAS Intelligence 90/200

Report Designer for Sage MAS Intelligence 90/200 Report Designer for Sage MAS Intelligence 90/200 Table of Contents What is the Report Designer?... 1 Installing the Report Designer... 2 Pre-installation requirements... 2 The Interface... 3 Accessing

More information

Table Of Contents. Falcon Consolidation and Group Reporting Set Up Parameters Users Menu Restrictions Currency...

Table Of Contents. Falcon Consolidation and Group Reporting Set Up Parameters Users Menu Restrictions Currency... Falcon User Guide Table Of Contents Falcon Consolidation and Group Reporting... 1 Set Up... 3 Parameters... 3 Users... 10 Menu Restrictions... 12 Currency... 14 Account... 20 Company... 24 Company Restrictions...

More information

PRESS RELEASE January 16, 2009 Sony Ericsson reports results for fourth quarter and full year 2008

PRESS RELEASE January 16, 2009 Sony Ericsson reports results for fourth quarter and full year 2008 PRESS RELEASE January 16, 2009 Sony Ericsson reports results for fourth quarter and full year 2008 Highlights: Global economic slowdown leads to contracting consumer demand Previously announced annual

More information

Oracle Enterprise Performance Management Cloud

Oracle Enterprise Performance Management Cloud An Oracle White Paper January 2018 Oracle Enterprise Performance Management Cloud Extracting YTD Balances from FCCS using Data Management Disclaimer This document is provided for information purposes and

More information

Case study Business start-up Budget versus actual

Case study Business start-up Budget versus actual Catherine Gowthorpe 00 Case study Business start-up Budget versus actual This is the solution to the case study found at the end of: Chapter 8 Budgeting Part Working Sales receipts can be estimated as

More information

System Configuration Document SAP Business Planning and Consolidation NW10.0

System Configuration Document SAP Business Planning and Consolidation NW10.0 System Configuration Document SAP Business Planning and Consolidation Version : Netweaver 10.0. Page 1 of 23 TABLE OF CONTENTS 1 INTRODUCTION... 4 1.1 Purpose of Document... 4 2 DESIGN PROCESS COMPONENT...

More information

Cincinnati Bell Inc. March 4, 2013

Cincinnati Bell Inc. March 4, 2013 Cincinnati Bell Inc. March 4, 2013 Safe Harbor This presentation and the documents incorporated by reference herein contain forwardlooking statements regarding future events and our future results that

More information

Sony Ericsson sells over 100 million handsets in 2007

Sony Ericsson sells over 100 million handsets in 2007 PRESS RELEASE January 16, 2008 Sony Ericsson sells over 100 million handsets in 2007 Q4 Highlights: 2007 Highlights: 18% increase in volume year-on-year Continued market share gains and profitable growth

More information

Henrik Tjärnström CEO

Henrik Tjärnström CEO Henrik Tjärnström CEO Q4 2018 13 February 2019 1 Outline Highlights Financial results Business overview Summary 2 3 Q4 2018 Key Report Highlights Gross winnings revenue GWR from mobile EBITDA Earnings

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

2016 Fourth Quarter Earnings. March 2017

2016 Fourth Quarter Earnings. March 2017 2016 Fourth Quarter Earnings March 2017 Disclaimer The information is provided for informational purposes only, and is not an offer to buy or sell or a solicitation of an offer to buy or sell any security

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

Financial Statement Generator Script

Financial Statement Generator Script Financial Statement Generator Script Clip Link: http://www.eshbel.com/movie_search/financial_statement_generator.htm. instructions Note: Yellow highlights indicate action Introduction (00:00-01:12) This

More information

Hyperion Financial Management. Developed in Partnership with and based on work by Eric Erikson, 123OLAP

Hyperion Financial Management. Developed in Partnership with and based on work by Eric Erikson, 123OLAP Hyperion Financial Management Hyperion Financial Management Developed in Partnership with and based on work by Eric Erikson, 123OLAP HYPERION FINANCIAL MANAGEMENT 11.1.1 IMPLEMENTATION BOOT CAMP Copyright

More information

Opera - Simply The Best Internet Experience. 4Q05 Results. February 20, 2006

Opera - Simply The Best Internet Experience. 4Q05 Results. February 20, 2006 4Q05 Results February 20, 2006 Profit and loss account 4Q05 PROFIT AND LOSS ACCOUNT (Figures in TNOK) Fourth Quarter 2004 2005 Revenues, PC/Desktop 9 757 6 396 Revenues, Internet Devices 20 078 41 669

More information

PRESS RELEASE October 17, 2008

PRESS RELEASE October 17, 2008 PRESS RELEASE October 17, 2008 Sony Ericsson reports third quarter results Q3 highlights: Break even results, excluding restructuring charges, as challenging business conditions continued C902 Cyber-shot

More information

Oracle Financial Consolidation and Close Cloud. What s New in the August Update (17.08)

Oracle Financial Consolidation and Close Cloud. What s New in the August Update (17.08) Oracle Financial Consolidation and Close Cloud What s New in the August Update (17.08) July 2017 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE FINANCIAL CONSOLIDATION AND CLOSE CLOUD, AUGUST UPDATE...

More information

QUALCOMM Reports First Quarter Results Revenues $941 Million, $.65 EPS

QUALCOMM Reports First Quarter Results Revenues $941 Million, $.65 EPS Contact: Julie Cunningham Vice President, Investor Relations Ph 619-658-4224 Fax 619-651-9303 E-mail: juliec@qualcomm.com QUALCOMM Reports First Quarter Results Revenues $941 Million, $.65 EPS SAN DIEGO

More information

3. FY2014 Earnings Projections

3. FY2014 Earnings Projections 3. FY2014 Earnings Projections Fujitsu s financial performance in the third quarter exceeded the company s projections owing to the contributions made by improved profitability in the company s Services

More information

Spreadsheet File Transfer User Guide. FR 2248 Domestic Finance Company Report of Consolidated Assets and Liabilities

Spreadsheet File Transfer User Guide. FR 2248 Domestic Finance Company Report of Consolidated Assets and Liabilities Spreadsheet File Transfer User Guide FR 2248 Domestic Finance Company Report of Consolidated Assets and Liabilities STATISTICS FUNCTION August 10, 2017 Overview The Federal Reserve System s Reporting Central

More information

Nominal Ledger Training Material

Nominal Ledger Training Material HansaWorld University Nominal Ledger Training Material HansaWorld Ltd. September 2007 Version 5.3 TABLE OF CONTENTS: TABLE OF CONTENTS:...2 INTRODUCTION...3 IMPORTANT SETTINGS...4 Autotransactions...4

More information

Taiwan Semiconductor Manufacturing Company Ltd. Announces First Quarter Results for the Period Ended March 31, 2000

Taiwan Semiconductor Manufacturing Company Ltd. Announces First Quarter Results for the Period Ended March 31, 2000 Page 1 FOR IMMEDIATE RELEASE CONTACT IN TAIWAN CONTACT IN NEW YORK Derek Tien or Julie Chan Mami Ogawa Finance Division TSMC Thomson Financial Investor Relations invest@tsmc.com.tw mami.ogawa@thomsonir.com

More information

Probe MMX Compilation

Probe MMX Compilation Probe MMX Compilation 2011.00 What s New Overview Probe MMX Compilations Probe MMX uses the latest CaseWare and Template Technology, creating a way to conduct Compilation engagements using the latest International

More information

DynacViews. User Guide. Version 2.0 May 1, 2009

DynacViews. User Guide. Version 2.0 May 1, 2009 DynacViews User Guide Version 2.0 May 1, 2009 Copyright 2003 by Dynac, Inc. All rights reserved. No part of this publication may be reproduced or used in any form without the express written permission

More information

fourth QUARTER 2017 Jan 31, 2018

fourth QUARTER 2017 Jan 31, 2018 fourth QUARTER 2017 Jan 31, 2018 Peter Nyquist Vice President Investor Relations fourth QUARTER 2017 Jan 31, 2018 This presentation contains forward-looking statements. Such statements are based on our

More information

Sony Ericsson continues to invest for future growth

Sony Ericsson continues to invest for future growth PRESS RELEASE April 23, 2008 Sony Ericsson continues to invest for future growth Q1 Highlights: Year-on-year volume growth of 2% Income before taxes at higher end of forecast R&D investment continues to

More information

FY18 FULL-YEAR RESULTS 31 AUGUST 2018 NEXTDC LIMITED ACN

FY18 FULL-YEAR RESULTS 31 AUGUST 2018 NEXTDC LIMITED ACN FY18 FULL-YEAR RESULTS 31 AUGUST 2018 NEXTDC LIMITED ACN 143 582 521 FY18 HIGHLIGHTS REVENUE $161.5m +31% UNDERLYING EBITDA 1 $62.6m +28% UTILISATION 40MW +28% CUSTOMERS 972 +26% PARTNERS 470+ 60+ NETWORKS

More information

CORPORATE PRESENTATION 2014

CORPORATE PRESENTATION 2014 CORPORATE PRESENTATION 2014 ABOUT DIGITAL GAMING Digital gaming is everywhere Smartphones & Tablets Feature phones TVs & STBs Smartphones, tablets, smart TVs, STBs, smart watches Installed base of 2 billion

More information

User Guide support.keytime.co.uk

User Guide support.keytime.co.uk User Guide Contents Introduction... 4 Starting Personal Tax... 4 Sorting and Filtering Clients... 5 Print Summary and Print Proforma Letters... 5 Converting Returns from Previous Years... 6 Storing Client

More information

User Guide support.keytime.co.uk

User Guide support.keytime.co.uk 1 User Guide 2 Table of Contents Introduction... 4 Starting Corporation Tax... 4 Sorting Returns... 4 Deleting Multiple Returns... 5 Creating a New Company... 5 Navigating Corporation Tax... 6 Navigation

More information

Dimensionality & Dimensions of Hyperion Planning

Dimensionality & Dimensions of Hyperion Planning Dimensionality & Dimensions of Hyperion Planning This tutorial will take you through the dimensionality concepts of Hyperion Planning. Dimensions are the basic foundation of the Hyperion Planning application

More information

THOMSON ONE BANKER ANALYTICS

THOMSON ONE BANKER ANALYTICS THOMSON ONE BANKER ANALYTICS Browser User Guide Thomson ONE Banker Analytics 1.0 getting started using the Analytics Website CONTENTS Introduction Data Coverage Basic Layout Company Information Index Information

More information

Tabs3, PracticeMaster, and the pinwheel symbol ( trademarks of Software Technology, Inc. Portions copyright Microsoft Corporation

Tabs3, PracticeMaster, and the pinwheel symbol ( trademarks of Software Technology, Inc. Portions copyright Microsoft Corporation Tabs3 General Ledger Software Reseller/User Tutorial Version 16.1 for November 2011 Sample Data Copyright 1983-2013 Software Technology, Inc. 1621 Cushman Drive Lincoln, NE 68512 (402) 423-1440 http://www.tabs3.com

More information

Fingerprint Cards Q Results

Fingerprint Cards Q Results Fingerprint Cards Q4 2014 Results February 26, 2015 Q4 Summary Key numbers from Q4 2014 results Revenue Margins & profitability Market development Revenue of SEK 105 million, an increase of 59% q o q and

More information

Report Designer. Sage Business Intelligence 2013

Report Designer. Sage Business Intelligence 2013 Report Designer Sage Business Intelligence 2013 Reports Designer This guide will provide you with an understanding of the Reports Designer and how it is used in Sage 50 Intelligence. In this lesson, you

More information

HYPERION ENTERPRISE ROLLOVER GUIDE

HYPERION ENTERPRISE ROLLOVER GUIDE HYPERION ENTERPRISE ROLLOVER GUIDE Rollovers move information from a source category to a destination category and clear data from the source category. DISCLAIMER: Your company s specific business requirements,

More information

Business Report for H1 FY ending March 31, 2019 (April-September 2018)

Business Report for H1 FY ending March 31, 2019 (April-September 2018) Business Report for H1 FY ending March 31, 2019 (April-September 2018) Wacom Chapter 2 Wacom Co., Ltd. (TSE 1st Sec. Code: 6727) Contents Index 3 H1 FY 03/19 (April-September 2018) Results Overview 4-5

More information

COMPUSTAT Additional Files

COMPUSTAT Additional Files COMPUSTAT Additional Files 10 COMPUSTAT Additional Files i Business Descriptions File 1 Economic & Industry Sector File 1 Value/Growth File 1 Trends & Projections 1 Index Fundamentals File 1 File Structure

More information

Sage General Ledger User's Guide. May 2017

Sage General Ledger User's Guide. May 2017 Sage 300 2018 General Ledger User's Guide May 2017 This is a publication of Sage Software, Inc. 2017 The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product and service

More information

92% Industry-leading 4G LTE population coverage with consistent 4G download speeds

92% Industry-leading 4G LTE population coverage with consistent 4G download speeds Solid financial performance in a challenging environment; with key differentiating factors of delivering unmatched customer experience and superior network quality fuelling growth. Financial Review We

More information

CXO-Cockpit Hands-On MDX Workshop. Marcel Legerstee Jeroen de Soeten

CXO-Cockpit Hands-On MDX Workshop. Marcel Legerstee Jeroen de Soeten CXO-Cockpit Hands-On MDX Workshop Marcel Legerstee Jeroen de Soeten Agenda o MDX Query basics: structure & concepts o CXO-Cockpit Cube Calculations o Basic calculations o Using MDX functions o CXO-Cockpit

More information

HALF YEAR RESULTS For the six months ended 31 December 2016

HALF YEAR RESULTS For the six months ended 31 December 2016 HALF YEAR RESULTS For the six months ended 31 December 2016 Our vision A fuel cell in every home and business 2 SteelCell Market Opportunities Commercial Data Centres Electric Vehicles Residential 3 Commercial

More information

Readme File. Purpose. Hyperion Financial Data Quality Management for Enterprise Release Readme

Readme File. Purpose. Hyperion Financial Data Quality Management for Enterprise Release Readme Hyperion Financial Data Quality Management for Enterprise Release 7.2.1 Readme Readme File This file contains the following sections: Purpose... 1 Restrictions... 2 New Features... 2 Multi-Language Support...

More information

PT EXCELCOMINDO PRATAMA Tbk. (XL)

PT EXCELCOMINDO PRATAMA Tbk. (XL) PT EXCELCOMINDO PRATAMA Tbk. (XL) 1H Q1 2007 Performance Results Presentation Results July April 2007 1 Operating & Financial Results Key Drivers Product, Network & Distribution Market Updates 2007 Outlook

More information

GENERAL LEDGER USER'S GUIDE

GENERAL LEDGER USER'S GUIDE GENERAL LEDGER USER'S GUIDE This document is non-technical and explains the operation of the General Ledger programs. It is intended for both accounting staff and operators. COPYRIGHT 2017 AgTrax Copyright

More information

User Guide support.keytime.co.uk

User Guide support.keytime.co.uk 1 User Guide 2 Table of Contents Introduction... 4 Starting Corporation Tax... 4 Sorting Returns... 4 Deleting Multiple Returns... Error! Bookmark not defined. Creating a New Company... 5 Navigating Corporation

More information

XYZ Model Financial Accounts Generator Plus User Guide Page 1 of 14. XYZ Model Financial Accounts Generator Plus User Guide

XYZ Model Financial Accounts Generator Plus User Guide Page 1 of 14. XYZ Model Financial Accounts Generator Plus User Guide User Guide Page 1 of 14 XYZ Model Financial Accounts Generator Plus User Guide Contents Introduction... 2 Preparing the Trial Balance... 2 Getting Started... 3 Loading Your Trial Balance File... 4 Mapping

More information

Year-end closing procedures for General Ledger in

Year-end closing procedures for General Ledger in Page 1 of 18 Year-end closing procedures for General Ledger in Microsoft Dynamics GP Summary This article outlines the recommended year-end closing procedures for Microsoft Dynamics GP. This article contains

More information

IAS 01 Presentation of Financial Statements

IAS 01 Presentation of Financial Statements IAS 01 Presentation of Financial Statements GCA Consultants 1 GCA Consultants 2 GCA Consultants 3 GCA Consultants 4 GCA Consultants 5 GCA Consultants 6 GCA Consultants 7 GCA Consultants 8 GCA Consultants

More information

Absolute Software Topup Tax - Getting started on doing your own Personal and / or Partnership return

Absolute Software Topup Tax - Getting started on doing your own Personal and / or Partnership return Absolute Software Topup Tax - Getting started on doing your own Personal and / or Partnership return Please note a full video on how to use the software can be found by clicking HERE All support for this

More information

BENEVOLENT AND PROTECTIVE ORDER OF ELKS COMPLETING THE ANNUAL FINANCIAL REPORT EXCEL FILE REPORT PREPARER S GUIDE

BENEVOLENT AND PROTECTIVE ORDER OF ELKS COMPLETING THE ANNUAL FINANCIAL REPORT EXCEL FILE REPORT PREPARER S GUIDE BENEVOLENT AND PROTECTIVE ORDER OF ELKS COMPLETING THE ANNUAL FINANCIAL REPORT EXCEL FILE REPORT PREPARER S GUIDE 2018 2019 REPORTING CYCLE INTRODUCTION The Annual Financial Report (AFR) has been updated

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

Columbus delivers 52% growth in revenue

Columbus delivers 52% growth in revenue Release no. 20, 2018 Interim Management Statement for Q3 YTD 2018 November 7th, 2018 Release no. 20/2018 Interim Management Statement Q3 YTD 2018 Columbus delivers 52% growth in revenue In the first three

More information

RJO Armor Quick Start Guide. Armor Customer Role User Guide

RJO Armor Quick Start Guide. Armor Customer Role User Guide RJO Armor Quick Start Guide Armor Customer Role User Guide OCTOBER 2015 Contents I IIQ v1 vs. Armor... 2 II Armor Screen Details... 4 To View Account Balances and Positions:... 4 To Monitor Accounts Risk:...

More information

LESSON 10 Accounts Payable Setup

LESSON 10 Accounts Payable Setup LESSON 10 Learning Objectives In this lesson you will: 1. activate the module 2. access the A/P Transactions Visual Process Flow 3. set up the Options 4. enter account sets 5. enter distribution codes

More information

NOTE: You may see an Adjusting Period 998. It is not used in Local Council Systems. Fiscal Software User s Guide, BSA

NOTE: You may see an Adjusting Period 998. It is not used in Local Council Systems. Fiscal Software User s Guide, BSA Section 5 General Ledger This Section Includes: 5.1 Accounting Periods 5.2 Ledgers 5.3 Open and Closed Periods 5.3.1 Processing a Period Close or Opening a Period 5.4 Creating Journals 5.4.1 General Journals

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

Sage 300 ERP Report Designer

Sage 300 ERP Report Designer Report Designer The software described in this document is protected by copyright, and may not be copied on any medium except as specifically authorized in the license or non disclosure agreement. This

More information

QUALCOMM Reports Third Fiscal Quarter Revenues of $1 Billion - Operating Earnings Per Share of $.75, Excluding Non-Recurring Charges -

QUALCOMM Reports Third Fiscal Quarter Revenues of $1 Billion - Operating Earnings Per Share of $.75, Excluding Non-Recurring Charges - FOR IMMEDIATE RELEASE QUALCOMM Contact: Julie Cunningham Vice President, Investor Relations 1-(858) 658-4224 (ph) 1-(858) 651-9303 (fax) e-mail: juliec@qualcomm.com QUALCOMM Reports Third Fiscal Quarter

More information

TABLE OF CONTENTS DOCUMENT HISTORY

TABLE OF CONTENTS DOCUMENT HISTORY TABLE OF CONTENTS DOCUMENT HISTORY 6 MAY 2018 UPDATE 6 Revision History 6 Oracle Financial Consolidation and Close Cloud, May Update 6 Monthly Update Schedule 6 Please Join Oracle Cloud Customer Connect

More information

O2 compensated pressure on traditional services profitability and European roaming regulation impact by proposition of new services

O2 compensated pressure on traditional services profitability and European roaming regulation impact by proposition of new services Press release O2 compensated pressure on traditional services profitability and European roaming regulation impact by proposition of new services 30 January 2018 The number of new customers of O2 Home

More information

First Quarter 2018 Earnings Presentation. May 8, 2018

First Quarter 2018 Earnings Presentation. May 8, 2018 First Quarter 2018 Earnings Presentation May 8, 2018 1 Safe Harbor Caution Concerning Forward-Looking Statements Various remarks that the Company makes contain forward-looking statements regarding acquisitions,

More information

Taiwan Mobile Co., Ltd.

Taiwan Mobile Co., Ltd. Taiwan Mobile Co., Ltd. 3Q13 Results Summary October 31, 2013 1 Disclaimer The information contained in this presentation, including all forwardlooking information, is subject to change without notice,

More information

Asset Liability Management

Asset Liability Management Asset Liability Management INDEX OVERVIEW 3 REPORTS 11 USER 102 PROGRAM OPERATION 282 APPENDIX 368 2005 Information Technology, Inc. All rights reserved. Premier is a registered trademark of Information

More information

DASHBOARD. User Guide. CIVIC Systems, LLC

DASHBOARD. User Guide. CIVIC Systems, LLC CIVIC Systems, LLC DASHBOARD User Guide After you install the software, store this CD-ROM in a safe place for future use. Follow the installation instructions carefully. If you need more assistance, please

More information

USER S GUIDE Version 1.0

USER S GUIDE Version 1.0 USER S GUIDE Version 1.0 Contents 1. Introduction to ifile Web 3 1.1 Features 3 1.2 Benefits 3 1.3 ifile Web Quick Start 3 2 Step 1 - Set-up Details 4 2.1 Logging in 4 2.2 Browser Requirements 4 3 Company

More information

Using the IFRS Taxonomy

Using the IFRS Taxonomy January 2019 IFRS Foundation International Accounting Standards Board Using the IFRS Taxonomy A preparer s guide The Preparer s Guide has been written by IFRS Foundation staff. It has not been approved

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

Interxion Reports First Quarter 2017 Results

Interxion Reports First Quarter 2017 Results Interxion Reports First Quarter 2017 Results Revenue Increased by 12% Year Over Year AMSTERDAM 3 May 2017 Interxion Holding NV (NYSE: INXN), a leading European provider of carrier and cloud-neutral colocation

More information

SODIC Investor Relations FY 2011 Earnings Release

SODIC Investor Relations FY 2011 Earnings Release SODIC Investor Relations FY 2011 Earnings Release Consolidated Financial Statements for the Full Year ended 31 December 2011 SODIC Announces FY 2011 Earnings Results Cairo, Egypt April 17 th 2012, SODIC

More information

Revenue and earnings increase

Revenue and earnings increase 24 April 2018 Financial press release Síminn hf. Q1 2018 Revenue and earnings increase Síminn s revenue amounted to ISK 6,874 million in the first quarter (Q1) of 2018, compared to ISK 6,723 million in

More information

2017 Gas Tax Annual Expenditure Report (AER) Instructions and Checklist

2017 Gas Tax Annual Expenditure Report (AER) Instructions and Checklist 2017 Gas Tax Annual Expenditure Report (AER) Instructions and Checklist Begin the Annual Expenditure Report (AER) - Log into PIMS Adding Existing Projects to the AER Create New Community Works Fund Projects

More information

Using the IFRS Taxonomy

Using the IFRS Taxonomy December 2017 IFRS Foundation International Accounting Standards Board Using the IFRS Taxonomy A preparer s guide This Preparer s Guide has been prepared by IFRS Foundation staff. It has not been approved

More information

Excel Model Reference REFERENCE

Excel Model Reference REFERENCE Excel Model Reference 1 Navigating Accounting Excel Models REFERENCE TABLE OF CONTENTS Introduction 2 How Do I Use the Models? 3 Model Overview 4 EntryInputs Sheet Tab 5 Accounts Sheet Tab 6 BSE Sheet

More information

2017 Q4 Earnings Conference Call

2017 Q4 Earnings Conference Call 2017 Q4 Earnings Conference Call Forward Looking Statements This presentation includes certain forward-looking statements that are made as of the date hereof and are based upon current expectations, which

More information

Sage 300 ERP Intelligence Report Designer User Guide

Sage 300 ERP Intelligence Report Designer User Guide Sage 300 ERP Intelligence Report Designer User Guide Table of Contents What is the Report Designer?... 2 Running a Report with a Predefined Data Setup... 4 Accessing the Sage 300 ERP Intelligence Report

More information

PERIOD-END PROCEDURES

PERIOD-END PROCEDURES chapter4 4/18/07 C 3:19 PM H A Page 102 P T E R 4 PERIOD-END PROCEDURES Make General Journal Entries CHAPTER OBJECTIVES Update the Chart of Accounts List Record adjustments in the Make General Journal

More information

Parish Accounts Workbook. Version 2

Parish Accounts Workbook. Version 2 Parish Accounts Workbook Version 2 Contents Introduction 3 The Basics 4 Things to remember 4 Tab colours 4 The Details Tab 5 Accounts 5-6 Investments 6 Accounts or Investments which are not restricted

More information

1 st Quarter 2018 Results

1 st Quarter 2018 Results 1 st Quarter 2018 Results May 10, 2018 Investor Relations Copyright Kakao Corp. Disclaimer Financial information contained in this document is based on consolidated K-IFRS that have not been reviewed by

More information

1 st Quarter 2018 Earnings Call

1 st Quarter 2018 Earnings Call 1 st Quarter 2018 Earnings Call May 7, 2018 Presented by William J. Clough President & Chief Executive Officer Daniel N. Ford Chief Financial Officer & Chief Operating Officer, Energy Division CUI Global,

More information