Oracle HFM 11.1.2.2 Implementation Boot Camp Presented by Saravanan Singaravadivelan Developed by Saravanan Singaravadivelan Senior Consultant Qubix International.

Slides:



Advertisements
Similar presentations
Chapter Six Variable Interest Entities, Intra-Entity Debt, Consolidated Cash Flows, and Other Issues McGraw-Hill/Irwin Copyright © 2013 by The McGraw-Hill.
Advertisements

©The McGraw-Hill Companies, Inc. 2006McGraw-Hill/Irwin Chapter 9 Consolidated Financial Statements: Income Taxes, Cash Flows, and Installment Acquisitions.
The Income Statement and Statement of Cash Flows Sid Glandon, DBA, CPA Associate Professor of Accounting.
ACC 424 Financial Reporting II Lecture 5 Introduction to consolidations.
Chapter 5, Section 1 Checking Accounts
Visual Basic: An Object Oriented Approach 6: Object Modelling.
© The McGraw-Hill Companies, Inc., 2001 Slide 6-1 McGraw-Hill/Irwin 6 C H A P T E R Intercompany Debt and Other Consolidation Issues.
McGraw-Hill/Irwin© 2008 The McGraw-Hill Companies, Inc. All rights reserved. 7 Intercompany Inventory Transactions.
Program design example Task: Develop an algorithm expressed in pseudocode for a specified problem specified problem.
© Pearson Education, Inc. publishing as Prentice Hall13-1 Chapter 13: Foreign Currency Financial Statements by Jeanne M. David, Ph.D., Univ. of Detroit.
Types of Businesses Statement of Retained Earnings Statement of Cash Flows $100100$100100$ $200200$200200$ $300300$300300$ $400400$400400$
Adding Automated Functionality to Office Applications.
1 Copyright © 2012 Pearson Education Inc. Publishing as Prentice Hall.
Exploring Microsoft Excel 2002 Chapter 8 Chapter 8 Automating Repetitive Tasks: Macros and Visual Basic for Applications By Robert T. Grauer Maryann Barber.
8 Copyright © 2004, Oracle. All rights reserved. Creating LOVs and Editors.
FSG Training : Course Aims
2013.  Edit, void, and delete transactions  Enter general journal entries  Memorize and schedule transactions to be automatically entered  Close the.
XP New Perspectives on Microsoft Office Access 2003 Tutorial 11 1 Microsoft Office Access 2003 Tutorial 11 – Using and Writing Visual Basic for Applications.
Copyright ©2012 Pearson Education Inc. Publishing as Prentice Hall. 1.
McGraw-Hill/Irwin Copyright © 2005 by The McGraw-Hill Companies, Inc. All rights reserved. Chapter 10 Additional Consolidation Reporting Issues.
Financial Statements for a Corporation
Bear Stearns 2005 EC1 Details of the implementation in the Waterfall Editor R&R Consulting – Santander 2010.
Programming with Visual C++: Concepts and Projects Chapter 2B: Reading, Processing and Displaying Data (Tutorial)
Understanding Allocations Brian Chizever Cognos Corporation.
7 1 User-Defined Functions CGI/Perl Programming By Diane Zak.
1 Computer Science of Graphics and Games MONT 105S, Spring 2009 Session 1 Simple Python Programs Using Print, Variables, Input.
Financial Statements /10
Lab 6 (2) Arrays ► Lab 5 (1) Exercise Review ► Array Concept ► Why Arrays? ► Array Declaration ► An Example of Array ► Exercise.
Oracle HFM Implementation Boot Camp
Oracle HFM Implementation Boot Camp Presented by Saravanan Singaravadivelan Developed by Saravanan Singaravadivelan Senior Consultant Qubix International.
McGraw-Hill/Irwin Copyright (c) 2002 by the McGraw-Hill Companies Inc Principles of Taxation: Advanced Strategies Chapter 8 Chapter 8 Multiple Entity.
For Oracle employees and authorized partners only. Do not distribute to third parties. © 2008 Oracle Corporation – Proprietary and Confidential Title of.
Oracle HFM Implementation Boot Camp
Financial reporting and analysis
Multi-Currency R12 General Ledger Management Fundamentals.
For Oracle employees and authorized partners only. Do not distribute to third parties. © 2008 Oracle Corporation – Proprietary and Confidential (Oracle)
For Oracle employees and authorized partners only. Do not distribute to third parties. © 2008 Oracle Corporation – Proprietary and Confidential (Oracle)
Text TCS INTERNAL Oracle PL/SQL – Introduction. TCS INTERNAL PL SQL Introduction PLSQL means Procedural Language extension of SQL. PLSQL is a database.
Chapter 4 Consolidated financial statements—date of acquisition.
For Oracle employees and authorized partners only. Do not distribute to third parties. © 2008 Oracle Corporation – Proprietary and Confidential Title of.
McGraw-Hill© 2005 The McGraw-Hill Companies, Inc. All rights reserved.
Macros in Excel Using VBA Time Required – 5 hours.
 Tata Consultancy Services 1 Financial Information.
Oracle HFM Implementation Boot Camp Presented by Saravanan Singaravadivelan Developed by Saravanan Singaravadivelan Senior Consultant Qubix International.
ACC 440 Entire Course For more course tutorials visit ACC 440 Week 1 Discussion Question 1 ACC 440 Week 1 Discussion Question 2 ACC.
McGraw-Hill/Irwin© 2008 The McGraw-Hill Companies, Inc. All rights reserved. 10 Additional Consolidation Reporting Issues.
THE BALANCE SHEET Business Transactions Unit 2. Business Transactions  Definition:  A business transaction is an exchange of things of value Something.
Types of Businesses Balance Sheet IS SRE SCF $100 $100 $100 $100 $100
FINANCIAL REPORTING FOR GROUP ENTITIES UNDER IFRS -IFRS 10 Consolidated Financial Statements Conf.univ.dr. Victor-Octavian Müller
ACC 440 Slingshot Academy/ tutoralrank.com
Consolidation Following Acquisition
Chapter 8: Investments in Equity Securities
Oracle HFM Implementation Boot Camp
Chapter Six Variable Interest Entities, Intra-Entity Debt, Consolidated Cash Flows, and Other Issues McGraw-Hill/Irwin Copyright © 2013 by The McGraw-Hill.
Microsoft Access Illustrated
1z Exam PDF | 1z Questions Answers | Dumps4Download
PL/SQL Scripting in Oracle:
OUTLINE FOR CHAPTER 11 Understand Translation Exposure
The IFRS for SMEs Section 6 Statement of Changes in Equity and
Oracle HFM Implementation Boot Camp
Oracle HFM Implementation Boot Camp
Oracle HFM Implementation Boot Camp
Oracle HFM Implementation Boot Camp
Oracle HFM Implementation Boot Camp
Public How to self-diagnose consolidation failures and performance issues in Financial Consolidation and Close (FCCS)? Question: How to self diagnose consolidation.
Oracle HFM Implementation Boot Camp
BASIC SETTINGS CONTENTS OF THE COURSE: Definition of Company
Presentation transcript:

Oracle HFM Implementation Boot Camp Presented by Saravanan Singaravadivelan Developed by Saravanan Singaravadivelan Senior Consultant Qubix International Ltd

VII. Rules

Rules Rules are written in Visual Basic and created/edited using Textpad. Rules are organized into sections called subroutines, which can be used to organise the Rules file or for specific purposes. Sub Calculate and Sub Dynamic are the two most common subroutines. HS.Account.Member, HS.Exp, and HS.Dynamic are some of the HFM functions. Comments may be added by placing an apostrophe in front of the comment. Variables can be utilised for storing something once and referring to it multiple times. An If/Then statement is the most common way of restricting when a calculation is run.

Rules Example

Rules - Subroutines Calculate Run when calculating an entity. Most rules go here. Translate Used to translate accounts with special rates. Consolidation Used to calculate specific ownership and elimination. Allocation Used to perform allocations and it is separate from consol. Input Enables data input into parent level entities. NoInput Prevents data input into members. Dynamic Used when calculation needs to run at all entity level, base & parent.

Rules - Subroutines Transactions Specify accounts that support intercompany transactions. Equity Pickup Specifies the owned entity, owner entity and percentage of ownership.

Rules - Dimension Syntax When referring to a dimension label, one or two characters followed by a hash or pound sign ( # ) is used to denote the dimension in which the member exists The dimension characters are displayed here: AAccount C1Custom1 C2Custom2 C3Custom3 C4Custom4 EEntity IIntercompany Partner PPeriod SScenario VValue WView YYear

Rules - Restrictions If/Then The most common and straightforward restriction Not ideal when there are too many criteria/scenarios Select Case It is used when there are many criteria and scenarios For/Next Used to loop through a list of items and perform something on each It is very handy for more complex calculations Can automatically pick up new members Custom Dimensions Self restricting It might not have adequate performance if assigned to many members

Rules - Functions Can be used to perform repetitive calculations Returns a result back to the code that called it Makes the Rules easier to read Reduces maintenance

Rules – Common Calculations Opening Balance Retained Profit & Loss into Retained Earnings Balanced Balance Sheet Check Cash Flow Foreign Exchange Difference Impact Status WriteToFile NoInput

Exercise: Rules

Main Steps: Lab 6 Create Rules file Create simple Rules file Create subroutines Create functions Create variables Apply restrictions on rules Add functions to rules Common Calculations Loading & Extracting Rules file

A Q &