FCCS Rules 101. Essbase Calculation Concepts for HFM Professionals. Session ID:

Size: px
Start display at page:

Download "FCCS Rules 101. Essbase Calculation Concepts for HFM Professionals. Session ID:"

Transcription

1 Session ID: FCCS Rules 101 Essbase Calculation Concepts for HFM Professionals Prepared by: Julien Coudrette Experienced Manager Grant Thornton, Apr 25, 2018 Remember to complete your evaluation for this session within the app!

2 Your Presenter Julien Coudrette 13 years of experience with Oracle EPM Certified implementer of HFM, Essbase, Planning, DRM Leads Grant Thornton's Financial Close technical team Implemented Consolidation applications with Essbase! Speaks French, English, Portuguese, VB, Essbase Calc Script Currently lives in San Francisco, CA Has lived in: Paris (FR), Princeton (NJ), Curitiba (BR) Likes: Food, Motorcycles, Meditation, Running, Ideas,

3 About Grant Thornton Office locations 59 offices spread across 30 states and Washington D.C. Reach Serve 36% of companies on the 2017 Fortune 500 list and 25% of companies on the Russell 2000 list Our services Audit Tax Advisory People More than 8,500 professionals in the U.S. Partners 594 partners serving more than 8,000 clients nationwide Revenue GT U.S. net revenue equals $1.74 billion stats are as of 07/31/2017

4 Grant Thornton: What we do Financial statement audits SEC registrants (public companies) Private companies Employee business plans Not-for-profit organizations Government Accounting consulting services U.S. GAAP Implementation of new standards IFRS reporting and conversions Fresh start Other comprehensive bases of accounting Partnerships Federal, multistate and foreign tax returns Loan staff and outsourcing services Tax accounting and risk advisory Accounting for income taxes Tax function optimization Global compliance and reporting Public finance services Cash flow and yield verification Arbitrage rebate compliance Examination and reviews Conflict minerals reporting Sustainability reporting Vendor compliance Service organization controls HIPAA/HITECH security and privacy controls Cybersecurity controls Other subject matters Federal tax Corporate tax M&A Accounting methods Cost segregation Interest and penalty services Research tax credits Section 199 DPAD Fixed asset services Public finance services Accounting consulting services Examinations and reviews Partnerships Financial statement audits Tax accounting and risk advisory Federal Our Clients International Transaction services State and local Business risk services Private wealth Human capital Business consulting and technology Business consulting and technology Financial management Strategy and performance improvement Technology strategy and management Technology solutions State and Local Tax Controversy Credits and incentives Real and personal property tax Reorganizations, M&A Sales, use and other transactional tax Unclaimed property (escheat) Private wealth services Corporate executives Business owners Family office services Business risk services Risk advisory services Forensic advisory services Data analytics Transaction advisory Diligence Corporate finance Operations Tax International tax BEPS analysis and perspective Global growth strategy Transfer pricing Cross-border structuring Legal entity optimization Global tax compliance Human capital services Actuarial Benefits Compensation Employment tax Global mobility services Human resource services stats are as of 07/31/2017

5 Agenda 1. Where can rules be configured? 2. Key Essbase Calc Script concepts 3. FCCS Consolidation Process 4. Cash Netting Example

6 Where can rules be configured?

7 Where can rules be configured? Member formulas Translation overrides Advanced consolidations Configurable calculations

8 Where can rules be configured? Member formulas A formula defined directly on a dimension member Similar to dynamic accounts in HFM but offers more potential Uses language similar to Essbase Calc Script Perfect for ratios for example Translation overrides Configurable consolidations Configurable calculations

9 Where can rules be configured? Member formulas Translation overrides Equivalent to what could be done in Sub Translate in HFM Uses a graphical UI instead of code Configurable consolidations Configurable calculations

10 Where can rules be configured? Member formulas Translation overrides Configurable consolidations Equivalent to Sub Consolidate rule in HFM Similar user interface as translations overrides Creates some specific logic to write on the Elimination member of the Consolidation dimension Configurable calculations

11 Configurable Consolidations

12 Where can rules be configured? Member formulas Translation overrides Configurable consolidations Configurable calculations Can be defined as specific "insertion points" in the consolidation process After the calculations of the opening balances and after balancing the balance sheet At the local currency, translated and consolidated levels Uses Essbase Calculation Script language

13 Accessing Configurable Calculations

14 Essbase Calculation Script Language

15 Comments Start with /* and end with */ Can span multiple lines (contrary to HFM) Example: /* Your comment here. */ /* Your Multi-line comment here. */

16 Semicolon End each command with a semicolon (;) This is one of the most common syntax error for beginners Example: "GP Margin" = "Gross Profit" / "Sales";

17 Double Quotes Member names need to be surrounded by double quotes in the following cases: contains spaces: "Gross Profit" starts with a number: "12MonthAverage" contains nonalphanumeric characters ("-", "*", "/", ) : " " Recommendation: always use double quotes around member names to make sure you don't forget any and to get a more consistent formatting Descriptions can be used in place of member names Example: "Opening Inventory" Inventory");

18 Cross-dimensional Operator -> Specifies the intersection of more than one dimension Equivalent to the dots in an HS.EXP statement It is not necessary to use the dimension name Example: "FCCS_Cash And Cash Equivalents" -> "FCCS_ClosingBalance"

19 FIX ENDFIX Defines the scope of your calculations Similar to members on the left side of HS.EXP Can include multiple members of the same dimension equivalent to using a for in HFM No need for a semicolon at the send of FIX or ENDFIX lines

20 FIX ENDFIX example FIX ("Entity Currency", "Entity Input") "GP Margin" = "Gross Profit" / "Sales"; ENDFIX Limits calculations on: Consolidation member "Entity Input" Currency member "Entity Currency". Equivalent to: "GP Margin"->"Entity Currency"->"Entity Input" = "Gross Profit" / "Sales";

21 FIX ENDFIX Nesting For clarity: FIX ("Entity Currency") FIX ("Entity Input") "GP Margin" = "Gross Profit" / "Sales"; ENDFIX ENDFIX

22 FIX ENDFIX Nesting To switch only part of a fixed area: FIX ("Entity Currency") FIX ("Entity Input") "GP Margin" = "Gross Profit" / "Sales"; ENDFIX FIX ("Entity Consolidation") "Sickness Ratio" = "Sick Days" / "Headcount"; ENDFIX ENDFIX

23 IF ELSEIF ELSE ENDIF; In a calculation script it needs to be associated to a database member Typically one of the accounts calculated inside the IF statement Uses of Boolean logic (AND, OR, NOT) No "Then", but condition needs to be in parenthesis Example: "DTA"( IF ( "DTA" + "DTL" > 0) "DTA"->"Reclass" = - "DTA"->"Input"; "DTL"->"Reclass" = "DTA"->"Input"; ELSE "DTA"->"Reclass" = "DTL"->"Input"; "DTL"->"Reclass" = - "DTL"->"Input"; ENDIF;)

24 Essbase Functions Start Return a member or member set or a value (Boolean, numeric, string, etc.) And Cash And Cash Equivalents")

25 UDA Functions UDA = User-Defined Attributes Replaces UD1..4 fields in HFM Boolean functions are used in an IF "Legal Entity") Member set functions are used in a FIX "Cash Account")

26 Hierarchy-Based Functions Generation is top-down Level is bottom-up Generations: positive starting with 1 Levels: negative starting with 0

27 Hierarchy-Based Functions Generation is top-down Level is bottom-up Generations: positive starting with 1 Levels: negative starting with 0 Entity United States West Coast San Francisco Las Vegas East Coast New York Miami HQ 0)

28 Hierarchy-Based Functions Generation is top-down Level is bottom-up Generations: positive starting with 1 Levels: negative starting with 0 Entity United States West Coast San Francisco Las Vegas East Coast New York Miami HQ Coast", 0)

29 Hierarchy-Based Functions Generation is top-down Level is bottom-up Generations: positive starting with 1 Levels: negative starting with 0 Entity United States West Coast San Francisco Las Vegas East Coast New York Miami HQ -1)

30 Hierarchy-Based Functions Generation is top-down Level is bottom-up Generations: positive starting with 1 Levels: negative starting with 0 Entity United States West Coast San Francisco Las Vegas East Coast New York Miami HQ 2)

31 CALC DIM (Dim1, Dim2, ); Used to calculate one or more dimensions Only needed if the result of these dimension calculations are needed for subsequent calculations Otherwise this would be done by the system calculation Unnecessary for dimensions calculated dynamically (e.g. Account, Consolidation, etc.) Example: CALC DIM ("Movement", "Product");

32 CLEARDATA Clears a data intersection Cannot be used inside IF Inside an IF statement, set the intersection to #Missing Example: CLEARDATA "Cash"->"FCCS_Mvmts_Cash";

33 Consolidation is the new Value FCCS consolidation process

34

35 FCCS Consolidation Process

36 FCCS Consolidation Process

37 FCCS Consolidation Process

38 FCCS Consolidation Process

39 Putting it all together Cash Netting Example

40 Cash Netting Example Net amounts between cash and overdraft On specific entities Track on a separate Data Source member

41 Cash Netting Example Total does not change Now all on one side

42 Metadata

43 My First FCCS Script Note: semicolons member names in double quotes no mention of the dimensions IF/ELSE must be associated with a specific member no HS.GetCell

44 My First FCCS Script Areas of improvement: Works only for January Need to consider Closing Balance YTD, instead of Movement Periodic Does NOT work if the CashOverdraftReclass block is not created!

45 Notion of block Data Source The FCCS Consol cube contains many blocks of data Cash Reclass Data Input One block for each intersection of sparse dimensions that have data All dimensions are sparse, except account (dense) Jan Feb Period Entity,

46 Block Creations Data Source Cash Reclass Data Input "Cash Reclass" = - "Data Input" does nothing is Cash Reclass does not already exist Calculation expressions do not create block implicitly Blocks need to be created explicitly Jan Feb Period Entity,

47 @CREATEBLOCK Creates block(s) at the specified member or intersection Does not return anything, but needs to be associate to a member Does nothing if the block already exists Examples: FIX ("Data Input") "Entity Currency" ENDFIX FIX ("Data Input") ) ENDFIX

48 Structure of an Essbase Calculation 1. (Optional) Create required blocks 2. Clear calculated intersections 3. Aggregate dimensions for parent values needed 4. Perform calculations 5. Aggregate data (system calculation)

49 Structure of an Essbase Calculation 1. Create required blocks 2. Clear calculated intersections

50 Structure of an Essbase Calculation 3. Aggregate dimensions for parent values needed

51 Structure of an Essbase Calculation 4. Perform Calculations 5. Aggregate data (system calculation)

52 My First FCCS Script 2.0

53 My First FCCS Script 2.0

54 Two things to remember Read the Essbase Technical Reference! Create blocks before writing them

55 Upcoming events Join Grant Thornton for our upcoming events: Webcasts: 5/8: Optimizing the financial close: Account reconciliation automation 6/6: Planning for your HCM transformation Oracle conferences: 6/10 6/14: Kscope18 in Orlando, FL 6/11 6/14: OHUG global conference in Las Vegas, NV 8/20 8/22: INFOCUS in Denver, CO 10/21 10/25: Oracle OpenWorld in San Francisco, CA

56

Oracle Cloud ERP reporting 360º

Oracle Cloud ERP reporting 360º Oracle Cloud ERP reporting 360º Session ID: 107900 Prepared by: Pras Ramakrishnan Sr. Solution Architect Realize the power of reporting capabilities in Oracle Financials Cloud ERP 04/23/2018 Grant Thornton

More information

HFM, Planning and Essbase with a side of DRM:

HFM, Planning and Essbase with a side of DRM: HFM, Planning and Essbase with a side of DRM: A Case Study of EPM Implementation Angie Caruthers Manager, Hyperion Systems About McAfee McAfee, a wholly owned subsidiary of Intel Corporation (NASDAQ:INTC),

More information

The Power of Subscription Based Fulfillment via Oracle Service Contracts

The Power of Subscription Based Fulfillment via Oracle Service Contracts The Power of Subscription Based Fulfillment via Oracle Service Contracts The end-to-end solution for your subscription business that can save you time and money. Prepared by: Lee Huff, Grant Thornton LLP

More information

Taking solutions global?

Taking solutions global? Taking solutions global? BlueScope Steel tackles the Globe: Bringing OBIA worldwide! Prepared by: Barb Viola, BlueScope Steel North America Cory Whited, Grant Thornton @ GrantThornton Session ID: 10614

More information

Why data governance matters - principles and best practices

Why data governance matters - principles and best practices Why data governance matters - principles and best practices Prepared by: Kevin Ott, Grant Thornton @GrantThornton Session ID: 10192 Your presenter Kevin Ott Sr. Associate, Grant Thornton Tampa, FL Kevin

More information

NTxHUG 2016 Q2 Meeting: First Look at Financial Consolidation & Close Cloud Service May 27, 2016

NTxHUG 2016 Q2 Meeting: First Look at Financial Consolidation & Close Cloud Service May 27, 2016 NTxHUG 2016 Q2 Meeting: First Look at Financial Consolidation & Close Cloud Service May 27, 2016 Terrance D. Walker, Central Region Manager interrel Consulting Partners Disclaimer These slides represent

More information

Solving Complex Consolidations with Essbase and HFM in a Decentralized Environment

Solving Complex Consolidations with Essbase and HFM in a Decentralized Environment DATA TRANSFORMERS Solving Complex Consolidations with Essbase and HFM in a Decentralized Environment Jay Short Global Hyperion Reporting Lead, Jessica Benbow Director of Consolidations Reporting and Financial

More information

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

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

More information

A Real-World Implementation of FCCS: Lessons Learned and Mistakes You Do not Want to Repeat

A Real-World Implementation of FCCS: Lessons Learned and Mistakes You Do not Want to Repeat A Real-World Implementation of FCCS: Lessons Learned and Mistakes You Do not Want to Repeat Leader in Volume, Technology, Innovation, Parts and Support Founded in 1930 North America s Transit Bus and Motor

More information

Hybrid Approach to Integration On-Prem Consolidation and Cloud EPBCS

Hybrid Approach to Integration On-Prem Consolidation and Cloud EPBCS Business Analytics Solutions Provider Using Oracle EPM, BI, and BD Technologies NASDAQ: EDGW Hybrid Approach to Integration On-Prem Consolidation and Cloud EPBCS Seema Shah, Integration Manager Ankit Shrivastava,

More information

PeopleSoft Payment Requests

PeopleSoft Payment Requests PeopleSoft Payment Requests Session ID: 102800 Hello Self-Service, Goodbye Ad-Hoc Requests! Prepared by: Paige Jones, Senior Associate, Grant Thornton Presented by: Tyson Moore, Director, Grant Thornton

More information

41880 Introduction to Hyperion Financial Management. Mike Malwitz Director Product Strategy Oracle Enterprise Performance Management

41880 Introduction to Hyperion Financial Management. Mike Malwitz Director Product Strategy Oracle Enterprise Performance Management 41880 Introduction to Hyperion Financial Management Mike Malwitz Director Product Strategy Oracle Enterprise Performance Management Agenda Customer needs Solving financial consolidation and reporting issues

More information

Curing Your Rounding Woes in Your Financial Close. Alex C Leung & Mark Ramalho The Goal Getters

Curing Your Rounding Woes in Your Financial Close. Alex C Leung & Mark Ramalho The Goal Getters Curing Your Rounding Woes in Your Financial Close Alex C Leung & Mark Ramalho The Goal Getters CURING YOUR ROUNDING WOES IN YOUR FINANCIAL CLOSE 22.06.2015 Corporate Financial Reporting & Planning Solutions

More information

Revolutionizing Retail Operations - A PeopleSoft ERP and Hyperion EPM Story

Revolutionizing Retail Operations - A PeopleSoft ERP and Hyperion EPM Story September, 2017 Revolutionizing Retail Operations - A PeopleSoft ERP and Hyperion EPM Story 1 Welcome to OOW 17 - About Cognizant-KBACE Oracle s Cloud and other technologies play a critical role in supporting

More information

Consolidations with SAP BusinessObjects Planning and Consolidations (BPC) Auric IT Consulting Services LLC February 2013

Consolidations with SAP BusinessObjects Planning and Consolidations (BPC) Auric IT Consulting Services LLC February 2013 Consolidations with SAP BusinessObjects Planning and Consolidations (BPC) Auric IT Consulting Services LLC February 2013 Agenda BPC Overview Planning vs Consolidations in BPC Consolidations with BPC More

More information

Leverage T echnology: Turn Risk into Opportunity

Leverage T echnology: Turn Risk into Opportunity Give me a lever long enough and a fulcrum on which to place it, and I shall move the world - Archimedes Copyright. Fulcrum Information Technology, Inc. Learn to improve Period-End Close Process with effective

More information

<Insert Picture Here> JD Edwards EnterpriseOne Financial Management

<Insert Picture Here> JD Edwards EnterpriseOne Financial Management JD Edwards EnterpriseOne Financial Program Agenda Financial Integration General Accounting Advanced Cost Accounting Accounts Payable Environmental Accounting and Reporting Accounts

More information

ALI-ABA Audio Seminar. Moving from GAAP to IFRS (International Financial Reporting Standards) February 18, 2009 Telephone Seminar/Audio Webcast

ALI-ABA Audio Seminar. Moving from GAAP to IFRS (International Financial Reporting Standards) February 18, 2009 Telephone Seminar/Audio Webcast 31 ALI-ABA Audio Seminar Moving from GAAP to IFRS (International Financial Reporting Standards) February 18, 2009 Telephone Seminar/Audio Webcast US GAAP v. IFRS: The Basics Submitted by Nancy L. Salisbury

More information

Hyperion - total planning and budgeting. Michał Kozłowski, EPM Solution Sales Poland, Lithuania, Latvia, Estonia

Hyperion - total planning and budgeting. Michał Kozłowski, EPM Solution Sales Poland, Lithuania, Latvia, Estonia 1 Hyperion - total planning and budgeting Michał Kozłowski, EPM Solution Sales Poland, Lithuania, Latvia, Estonia Agenda Overview Enterprise Planning Solution Overview Delivering World Class Enterprise

More information

Enterprise Performance Management Strategy & Roadmap

Enterprise Performance Management Strategy & Roadmap Enterprise Performance Management Strategy & Roadmap Matt Bradley Senior Vice President EPM Development Hari Sankar Group Vice President EPM Product Management October 3, 2017 Safe Harbor Statement The

More information

Oracle Planning and Budgeting Cloud. December 2017 Update (17.12) What s New

Oracle Planning and Budgeting Cloud. December 2017 Update (17.12) What s New Oracle Planning and Budgeting Cloud December 2017 Update (17.12) What s New TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE PLANNING AND BUDGETING CLOUD, DECEMBER UPDATE... 3 ANNOUNCEMENTS AND NEW FEATURES...

More information

Oracle Project Portfolio Management Cloud

Oracle Project Portfolio Management Cloud Oracle Project Portfolio Management Cloud What's New in Release 12 January 2017 Revised: August 2017 TABLE OF CONTENTS REVISION HISTORY... 4 OVERVIEW... 5 Security & New Features... 5 UPGRADE/UPDATE TASKS...

More information

IFRS 8 Operat a i t ng S e S gme m nts

IFRS 8 Operat a i t ng S e S gme m nts IFRS 8 Operating Segments Agenda Scope Definitions Operating segments Reportable segments Measurement Disclosure Other considerations Background IFRS 8 was issued by the IASB in November 2006 It replaces

More information

Infor CPM d/epm (Roadmap)

Infor CPM d/epm (Roadmap) Infor CPM d/epm (Roadmap) Dhruv Parekh, Solution Consultant, Infor 1 Copyright 2014 Infor. All rights reserved. Disclaimer This document reflects the direction Infor may take with regard to the specific

More information

Creating financial statements the easy way

Creating financial statements the easy way Creating financial statements the easy way How OneView financial statements can help you Prepared by: Seth Chaikin, Grant Thornton @GrantThornton Session ID: 104400 About the presenter Seth Chaikin Director,

More information

How to Utilize Advanced Job Forecasting in JD Edwards

How to Utilize Advanced Job Forecasting in JD Edwards How to Utilize Advanced Job Forecasting in JD Edwards Prepared by: Craig Davied, Grant Thornton LLP @ GrantThornton Session ID: 105650 Craig Davied Director, Technology Solutions Kansas City, MO craig.davied@us.gt.com

More information

JD Edwards EnterpriseOne Financial Management Overview

JD Edwards EnterpriseOne Financial Management Overview JD Edwards EnterpriseOne Financial Overview Karen L. Brown Senior Principal Product Manager Program Agenda 1 JD Edwards EnterpriseOne Overview 2 3 EnterpriseOne Financial Overview

More information

Remove Your Head From the Clouds! Is PBCS or On-Premise Planning the Right One for Your Business?

Remove Your Head From the Clouds! Is PBCS or On-Premise Planning the Right One for Your Business? Remove Your Head From the Clouds! Is PBCS or On-Premise Planning the Right One for Your Business? Prepared by: Brad Kwiatek, Grant Thornton LLP Session ID: 10644 Your presenter Brad Kwiatek Director, Grant

More information

PRACTICE DEVELOPMENT STRATEGIES

PRACTICE DEVELOPMENT STRATEGIES PRACTICE DEVELOPMENT STRATEGIES CA Jiger Saiya 12 December 2014 Page 1 AGENDA CHANGING SCENARIO GENERALISATION VS SPECIALISATION INTERNATIONAL AFFILIATION PRACTICE MANAGEMENT IN CHANGING TIMES Page 2 CHANGING

More information

[RELEASE NOS ; ; FR-77; File No. S ]

[RELEASE NOS ; ; FR-77; File No. S ] SECURITIES AND EXCHANGE COMMISSION 17 CFR PART 241 [RELEASE NOS. 33-8810; 34-55929; FR-77; File No. S7-24-06] Commission Guidance Regarding Management s Report on Internal Control Over Financial Reporting

More information

PRODUCT ANNOUNCEMENT US LOCALIZATION ORACLE PAYROLL RELEASE 12.1

PRODUCT ANNOUNCEMENT US LOCALIZATION ORACLE PAYROLL RELEASE 12.1 PRODUCT ANNOUNCEMENT US LOCALIZATION ORACLE PAYROLL RELEASE 12.1 KEY FEATURES Oracle s approach to payroll management allows you to reduce administration, lower set up costs and decrease occurrence of

More information

CFO Financial Forum Webcast

CFO Financial Forum Webcast CFO Financial Forum Webcast Revenue Recognition: Are you going to be left behind? April 4, 2017 With You Today Bill Tomazin Partner Tel: 312-665-5576 wtomazinjr@kpmg.com Stephen Thompson Partner Tel: 303-382-7970

More information

Hyperion Financial Management Course Details

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

More information

Leverage T echnology: July 19 th, 2013 Adil Khan. Move Your Business Forward. Copyright. Fulcrum Information Technology, Inc.

Leverage T echnology: July 19 th, 2013 Adil Khan. Move Your Business Forward. Copyright. Fulcrum Information Technology, Inc. Life After ERP Go-Live: Navigating to Nirvana Learn how leading organizations are utilizing Advanced Controls to make systematic improvements in their ERP systems to achieve expected benefits of ERP systems

More information

Cautionary Note Regarding Forward Looking Statements

Cautionary Note Regarding Forward Looking Statements If(we) Acquisition Cautionary Note Regarding Forward Looking Statements Certain statements in this presentation are forward-looking statements within the meaning of the Private Securities Litigation Reform

More information

IFRS and Information Technology. Chris Anderson, Grant Thornton Jim Menzies, Grant Thornton

IFRS and Information Technology. Chris Anderson, Grant Thornton Jim Menzies, Grant Thornton IFRS and Information Technology Chris Anderson, Grant Thornton Jim Menzies, Grant Thornton Agenda IFRS timelines Planning Potential impacts by industry Disclosures Key risks to consider when converting

More information

UNDP Responses to Vendors questions. Implementation of Hyperion Financial Management Tool UNDP RFP No - RFP/UNDP/OFRM/005/2014

UNDP Responses to Vendors questions. Implementation of Hyperion Financial Management Tool UNDP RFP No - RFP/UNDP/OFRM/005/2014 UNDP Responses to Vendors questions Implementation of Hyperion Financial Management Tool UNDP RFP No - RFP/UNDP/OFRM/005/2014 1. What is the process being followed to do segmental adjustment to remove

More information

eprentise Divestiture Overview

eprentise Divestiture Overview Transforming Oracle E-Business Suite eprentise Divestiture Overview Organization Business Problem eprentise Solution GE Global Research Global mandate to consolidate ~40 instances into ~20 instances and

More information

Oracle Hyperion Planning : Create & Manage Applications ( )

Oracle Hyperion Planning : Create & Manage Applications ( ) Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Hyperion Planning 11.1.2: Create & Manage Applications (11.1.2.4) Duration: 5 Days What you will learn This Hyperion Planning

More information

How to Utilize the New JD Edwards Revenue Recognition Functionality in Job Cost and Contract Billing

How to Utilize the New JD Edwards Revenue Recognition Functionality in Job Cost and Contract Billing How to Utilize the New JD Edwards Revenue Recognition Functionality in Job Cost and Contract Billing Session ID#: 101310 August 16, 2017 Prepared by: Name: Craig Davied Title: Director Company: Grant Thornton,

More information

Aptitude Accounting Hub

Aptitude Accounting Hub Aptitude Accounting Hub Achieve financial control, transparency and insight The Aptitude Accounting Hub empowers us to progressively transform finance while creating a detailed financial data foundation

More information

financial system can take several it s a more considered decision manage your business from anywhere for upgrading to an industrial strength

financial system can take several it s a more considered decision manage your business from anywhere for upgrading to an industrial strength Solution Brief Intacct for QuickBooks Users For millions of small business owners, QuickBooks is the perfect accounting system. Cost-effective and easy-to-use, QuickBooks lets you organize your business

More information

Oracle Tax Reporting. Bringing Tax & Finance Together. Marc Seewald, Senior Director Oracle Product Management 30 November 2016

Oracle Tax Reporting. Bringing Tax & Finance Together. Marc Seewald, Senior Director Oracle Product Management 30 November 2016 Oracle Tax Reporting Bringing Tax & Finance Together Marc Seewald, Senior Director Oracle Product Management 30 November 2016 1 Safe Harbor Statement The following is intended to outline our general product

More information

Who Does What, When, and How for a Divestiture?

Who Does What, When, and How for a Divestiture? Who Does What, When, and How for a Divestiture? Session ID: #10813 Prepared by: Ihtesham Uddin Sr. Director, Product Development eprentise, LLC @eprentise Learning Objectives Objective 1: Understand key

More information

Hyperion Women s Forum US-Analytics

Hyperion Women s Forum US-Analytics Hyperion Women s Forum US-Analytics June 14, 2012 Agenda I. Background and Overview - Who We Are - Where We Started - Business Need Confirmation - Project Snapshot II. Hyperion Solutions - Key Team Players

More information

SpearMC Consulting PeopleSoft Solutions

SpearMC Consulting PeopleSoft Solutions SpearMC Consulting PeopleSoft Solutions PeopleSoft EPM v9.0 Product Review and Release Highlights g Agenda I. Introduction II. III. IV. EPM v9.0 Release Overview EPM Trends EPMv89tov90Overview v8.9 v9.0

More information

Implementation Tips for Revenue Recognition Standards. June 20, 2017

Implementation Tips for Revenue Recognition Standards. June 20, 2017 Implementation Tips for Revenue Recognition Standards June 20, 2017 Agenda Overview Journey to implement the new standard The challenge ahead Page 1 Overview Where are we now? Since the new standard was

More information

Oracle EPM. Overview. Sébastien DESCAMPS, EPM Solution Consultant 16 / 11 / 2017

Oracle EPM. Overview. Sébastien DESCAMPS, EPM Solution Consultant 16 / 11 / 2017 Oracle EPM Overview Sébastien DESCAMPS, EPM Solution Consultant 16 / 11 / 2017 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes

More information

Fusion Accounting Hub Reporting Cloud

Fusion Accounting Hub Reporting Cloud Fusion Accounting Hub Reporting Cloud Anil Patil Director, Oracle Center Of Excellence Business and Application Services anil.patil@us.fujitsu.com www.oracle.anilrpatil.com 0 Copyright 2015 Fujitsu America,

More information

Enter Invoice. Invoice. No Holds. Approve Invoice. Pay Invoice. Reconcile Payments

Enter Invoice. Invoice. No Holds. Approve Invoice. Pay Invoice. Reconcile Payments Chapter 5 Payables Overview Oracle Payables is a high-productivity accounting solution that provides strong financial control, so you can prevent duplicate payments, pay for only the goods and services

More information

SAP Lease Accounting Solution

SAP Lease Accounting Solution LEASEACCELERATOR SAP Lease Accounting Solution LeaseAccelerator offers a complete lease accounting solution for companies with SAP-centric financial systems. Our application supports both the new standards

More information

Software Feature Sets. Powerful. Flexible. Intuitive. Alight feature sets. Driver-Based Planning & Analytics

Software Feature Sets. Powerful. Flexible. Intuitive. Alight feature sets. Driver-Based Planning & Analytics Software Feature Sets Driver-Based Planning & Analytics Powerful. Flexible. Intuitive. Alight Planning is the first spreadsheet replacement that delivers the modeling and reporting power you want within

More information

Oracle Hyperion Financial Management Administration

Oracle Hyperion Financial Management Administration Oracle Hyperion Financial Management Administration Course Description Course Name: Course Number: Duration: Oracle Hyperion Financial Management Administration 11.1.2.4.x O-HFM-A 5 Days The Administration

More information

Present and functioning: Fine-tuning your ICFR using the COSO update

Present and functioning: Fine-tuning your ICFR using the COSO update Present and functioning: Fine-tuning your ICFR using the COSO update November 2014 With the COSO s 1992 Control Framework being superseded by the 2013 updated edition on December 15, 2014, now is the time

More information

F200 Financials: Intermediate Training Guide

F200 Financials: Intermediate Training Guide F200 Financials: Intermediate Training Guide Acumatica ERP 5.0 Last Revision: 2/23/2015 Contents 2 Contents Copyright...4 Introduction... 5 How to Use This Course...6 Part 1: Configuring Branches and Subaccounts...9

More information

Enterprise Performance Management

Enterprise Performance Management Enterprise Performance Management Improve Agency Financial Compliance and Deliver Actionable, Accurate Financial Reporting Oracle Public Sector EPM Team 5.9.2013 Safe Harbor Statement

More information

Integrating SAP with Hyperion. Graham Day EPM FastTrack

Integrating SAP with Hyperion. Graham Day EPM FastTrack Integrating SAP with Hyperion Graham Day EPM FastTrack Agenda Walkthrough Functionality Experiences of Stanley Black & Decker Questions What is EPM FastTrack? Fully reconciled Hyperion data within SAP

More information

Retail Channel Management and Corporate Operations. Microsoft Dynamics AX 2012 R3

Retail Channel Management and Corporate Operations. Microsoft Dynamics AX 2012 R3 Retail Channel Management and Corporate Operations Microsoft Dynamics AX 2012 R3 Table of Contents Course Details 1 Prerequisites 2 Course Outline 3 Course Details This 2-day instructor-led training provides

More information

RECONCILIATION IFRS-US GAAP 2015 BEYOND THE LAYERS

RECONCILIATION IFRS-US GAAP 2015 BEYOND THE LAYERS RECONCILIATION IFRS-US GAAP 2015 BEYOND THE LAYERS ASMI STATUTORY ANNUAL REPORT 2015 Reconciliation ASMI s financial key figures based on IFRS and US GAAP 1 RECONCILIATION ASMI S FINANCIAL KEY FIGURES

More information

"There is insufficient memory to execute this function" error message when you use the Reverse Register function.

There is insufficient memory to execute this function error message when you use the Reverse Register function. Platform hotfixes ID Title 378244 "There is insufficient memory to execute this function" error message when you use the Reverse Register function. 378383 Merge cmdlet indicate conflicts but no conflicts

More information

Jay Hampton Finit Solutions

Jay Hampton Finit Solutions Convert With Confidence: Leveraging Hyperion System 9 Financial Data Quality Management to Convert from Hyperion Enterprise to Hyperion System 9 Financial Management Jay Hampton Finit Solutions Agenda

More information

2008 Oracle Corporation

2008 Oracle Corporation The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material,

More information

Bisan Enterprise. Non Governmental Organizations - NGO Lite Edition. A New Dimension in Financial Management Applications

Bisan Enterprise. Non Governmental Organizations - NGO Lite Edition.  A New Dimension in Financial Management Applications Bisan Enterprise Non Governmental Organizations - NGO Lite Edition www.bisan.com A New Dimension in Financial Management Applications Bisan Enterprise NGO Lite Edition For small and medium size institutions

More information

Sanjay Srinivas PH:

Sanjay Srinivas PH: Microsoft Dynamics AX 2012 Training course Content [Financials I, II, and Fixed Assets] Financials I Financials I course introduces the student to the Microsoft Dynamics AX 2012 General Ledger Accounting

More information

HCM Project Planning SUN October 1, 2017

HCM Project Planning SUN October 1, 2017 HCM Project Planning SUN 2727 October 1, 2017 Session Objective This session explores how to incorporate key lessons learned from actual implementations of Oracle HCM Cloud into up-front project planning

More information

Bisan Enterprise. Non Governmental Organizations NGO Professional Edition. A New Dimension in Financial Management Applications

Bisan Enterprise. Non Governmental Organizations NGO Professional Edition.  A New Dimension in Financial Management Applications Bisan Enterprise Non Governmental Organizations NGO Professional Edition www.bisan.com A New Dimension in Financial Management Applications Bisan Enterprise NGO Professional Edition The information you

More information

Implementing the new revenue guidance in the manufacturing industry

Implementing the new revenue guidance in the manufacturing industry Implementing the new revenue guidance in the manufacturing industry A progress check for management and audit committees Background As the effective date for the new revenue guidance in ASC 606, Revenue

More information

OVERVIEW OF ECCS ENTERPRISE CONTROLLING CONSOLIDATION SYSTEM (ECCS) SAP Companies. Consolidation Task. Non SAP. Additional. Data.

OVERVIEW OF ECCS ENTERPRISE CONTROLLING CONSOLIDATION SYSTEM (ECCS) SAP Companies. Consolidation Task. Non SAP. Additional. Data. OVERVIEW OF ENTERPRISE CONTROLLING CONSOLIDATION SYSTEM (ECCS) Additional Financial Data Manual Input Consolidation Task ECCS SAP Companies Data Real time update Non SAP Companies Data Excel Upload Consolidated

More information

Accounting and advisory services

Accounting and advisory services Accounting and advisory services WITH 300 PROFESSIONALS, PRIMEXIS IS FRANCE S LEADING INDEPENDENT ACCOUNTING AND CONSULTING FIRM FOR GROUPS AND FRENCH SUBSIDIARIES OF INTERNATIONAL ORGANIZATIONS. Immediate

More information

IDL.KONSIS. Professional Software for Group Consolidation. Brief Overview of the Functions. Company financial statement and group companies

IDL.KONSIS. Professional Software for Group Consolidation. Brief Overview of the Functions. Company financial statement and group companies IDL.KONSIS Professional Software for Group Consolidation With IDL.KONSIS, you can create single or multilevel consolidated financial statements as well as legal and management consolidations. The software

More information

Big Bang Theory: PeopleSoft HCM 9.2 and PeopleSoft Financials 9.2 Upgrade in Seven Months

Big Bang Theory: PeopleSoft HCM 9.2 and PeopleSoft Financials 9.2 Upgrade in Seven Months Big Bang Theory: PeopleSoft HCM 9.2 and PeopleSoft Financials 9.2 Upgrade in Seven Months 10/25/2015 Matt Peterman Grant Thornton Senior Solution Architect, Kansas City Beth Geer Empire District Electric

More information

Introduction. Barbara Wheeler, PMP

Introduction. Barbara Wheeler, PMP AGENDA Introduction Company History Overview RTM / Arby s Merger Disparate Systems Oracle Ebusiness Suite Integration Benefits of an ERP System Wendy s Integration Approach Goals of the Merger 2010 Projects

More information

Excellence in Management Reporting, Profitability Analysis & Cost Transparency

Excellence in Management Reporting, Profitability Analysis & Cost Transparency Excellence in Management Reporting, Profitability Analysis & Cost Transparency Marc Seewald, Senior Director Oracle, EPM Product Management September 20 th, 2017 Copyright 2017, Oracle and/or its affiliates.

More information

Moving From Shared Services to GBS What Does World-class Look Like?

Moving From Shared Services to GBS What Does World-class Look Like? Moving From Shared Services to GBS What Does World-class Look Like? Penny Weller, PhD, CMA The Hackett Group Moving From Shared Services to GBS What Does World-class Look Like? Shared Services is a successful,

More information

Who Does What, When, and How for a Divestiture?

Who Does What, When, and How for a Divestiture? Who Does What, When, and How for a Divestiture? Anil Kukreja Chief Operating Officer, eprentise PVT Ihtesham Uddin Sr. Director, Product Development, eprentise Webinar Mechanics Submit text questions.

More information

Adopting IFRS in Oracle EBS

Adopting IFRS in Oracle EBS Adopting IFRS in Oracle EBS www.centroid.com WHAT IS IFRS? TABLE OF CONTENTS What is IFRS? 1 SEC Timeline for Adoption 2 What are the New Standards? 3-5 IFRS and GAAP 6 US GAAP -vs- IFRS Similarities 7

More information

DWH/BI Enabling Technologies Management of alternative BI and DWH Dimensions Getting Business into the driver seat

DWH/BI Enabling Technologies Management of alternative BI and DWH Dimensions Getting Business into the driver seat DWH/BI Enabling Technologies Management of alternative BI and DWH Dimensions Getting Business into the driver seat Ulrich Scheuber Sales Development MDM and OPA Safe Harbor Statement The following is intended

More information

Program Overview and Course Offerings. EAM elearning. Instructor-led online Infor EAM software training

Program Overview and Course Offerings. EAM elearning. Instructor-led online Infor EAM software training EAM elearning Instructor-led online Infor EAM software training EAM elearning from SwainSmith is designed for companies on the move that want to get the most out of Infor EAM. With EAM elearning, you get

More information

SAP FINANCIAL CONSOLIDATION 10.0 STARTER KIT FOR IFRS SP5. Simplified Configuration Description

SAP FINANCIAL CONSOLIDATION 10.0 STARTER KIT FOR IFRS SP5. Simplified Configuration Description SAP FINANCIAL CONSOLIDATION 10.0 STARTER KIT FOR IFRS SP5 Simplified Configuration Description 1 Copyright 2012 SAP BusinessObjects. All rights reserved. SAP BusinessObjects and its logos, BusinessObjects,

More information

Fixed Scope offering Fusion HCM. Mindtree limited 2012

Fixed Scope offering Fusion HCM. Mindtree limited 2012 Fixed Scope offering Fusion HCM 1 Mindtree limited 2012 Agenda Business Objectives Product Overview Offerings High Level Scope Implementation Methodology High Level Project Plan Key Assumptions Dependencies

More information

Navigating the brave, new world of equipment lease management April 20, 2016

Navigating the brave, new world of equipment lease management April 20, 2016 www.pwc.com Navigating the brave, new world of equipment lease management Administrative matters For better viewing experience, close all other applications For better sound quality, use headphones To

More information

Module Practical Application Checklist:

Module Practical Application Checklist: Module Practical Application Checklist: MODULE 1 The Practical Application Checklists outline specific workplace tasks, by competency area, that CASB students are able to perform upon completion of each

More information

<Insert Picture Here>

<Insert Picture Here> Oracle and SPL - Acquisition Announcement Delivering the most complete, integrated end-to-end packaged solution to meet the unique needs of the Utilities industry Customer and Partner

More information

What s New in CitiManager

What s New in CitiManager 2011 GSA SmartPay Training Conference What s New in CitiManager David Lipke CitiManager Global Product Manager A Winning Hand: Solutions, Savings and Sustainability with GSA SmartPay The 13 th Annual GSA

More information

Oracle ERP Applications and Oracle Hyperion Financial Management

Oracle ERP Applications and Oracle Hyperion Financial Management An Oracle White Paper November 2012 Oracle ERP Applications and Oracle Hyperion Financial Management Choosing the Right Financial Consolidation Solution for Your Organization Executive Overview Every organization

More information

Kianoff & Associates Crystal Clear Reports for Sage 100

Kianoff & Associates Crystal Clear Reports for Sage 100 Kianoff & Associates Crystal Clear Reports for Sage 100 We have developed Crystal Reports for all current versions of Sage 100 and are available for most all modules. Accounts Payable BP801- Vendor File

More information

Background of CEIV Credential September 6 and 7, 2017

Background of CEIV Credential September 6 and 7, 2017 Background of CEIV Credential September 6 and 7, 2017 Eversheds Sutherland BDC Roundtable 2017 Background of CEIV - Fair Value Quality Initiative The SEC has expressed a desire that the various stakeholders

More information

The 2014 Guide to SAP Enterprise Performance Management (EPM) Solutions: An excerpt. David Williams SAP

The 2014 Guide to SAP Enterprise Performance Management (EPM) Solutions: An excerpt. David Williams SAP The 2014 Guide to SAP Enterprise Performance Management (EPM) Solutions: An excerpt David Williams SAP Performance Management Challenges for Finance The new normal for Finance professionals Volatile economic

More information

COSO Framework Update Webcast. May 23, 2013

COSO Framework Update Webcast. May 23, 2013 COSO Framework Update Webcast May 23, 2013 Today s presenters Rob Kastenschmidt National Leader - Risk Advisory Services Sara Lord Partner - National Professional Standards Group Agenda Topic Minutes The

More information

ACCOUNTING BUSINESS ADMINISTRATION (ACC)

ACCOUNTING BUSINESS ADMINISTRATION (ACC) Accounting Business Administration (ACC) 1 ACCOUNTING BUSINESS ADMINISTRATION (ACC) ACC 211. Principles of Financial Accounting. 3 Credit Course explores the role of accounting in providing financial information

More information

Financial Acumen for HR

Financial Acumen for HR Financial Acumen for HR Human Capital Management Institute October 23, 2014 Human Capital Management Institute 1 Jeff Higgins Chief Executive Officer Human Capital Management Institute Our Speaker Jeff

More information

Internal Audit Challenges & Opportunities Speaker: Laurie Shen, Director, Grant Thornton LLP

Internal Audit Challenges & Opportunities Speaker: Laurie Shen, Director, Grant Thornton LLP Internal Audit Challenges & Opportunities Speaker: Laurie Shen, Director, Grant Thornton LLP March 28, 2012-1 - Speaker Introduction Laurie Shen is a Director at Grant Thornton's Northeast Internal Audit

More information

CLOUD CURIOUS Moving From On-Premise to Hyperion Planning on the Cloud and Cloud Narrative Reporting

CLOUD CURIOUS Moving From On-Premise to Hyperion Planning on the Cloud and Cloud Narrative Reporting CLOUD CURIOUS Moving From On-Premise to Hyperion Planning on the Cloud and Cloud Narrative Reporting Presented to: Date: Atlanta OAUG August 28, 2015 Agenda Introduction PBCS Introduction Roadmap Migrating

More information

E-Procurement Systems. Presenter: Cornelia K. Sabiiti Public Procurement and Disposal of Public Assets Authority 28 February 2017

E-Procurement Systems. Presenter: Cornelia K. Sabiiti Public Procurement and Disposal of Public Assets Authority 28 February 2017 E-Procurement Systems Presenter: Cornelia K. Sabiiti Public Procurement and Disposal of Public Assets Authority 28 February 2017 Presentation Outline Concept of e-procurement Challenges of the Manual Procurement

More information

WORK SMART. Microsoft Dynamics NAV 2009 Simple. Smart. Innovative

WORK SMART. Microsoft Dynamics NAV 2009 Simple. Smart. Innovative WORK SMART Microsoft Dynamics NAV 2009 Simple. Smart. Innovative SIMPLICITY The business management solution for more than one million users worldwide Fast to implement, easy to configure, and simple to

More information

Oracle Hyperion Planning for Interactive Users

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

More information

Effitrac, an epitome of perfect business solutions provides various services to cater your demands and needs.

Effitrac, an epitome of perfect business solutions provides various services to cater your demands and needs. An ISO 27001:2013 Certified Company Effitrac, an epitome of perfect business solutions provides various services to cater your demands and needs. One place Limitless solution General Accounts Cash Flow

More information

Building an Effective One-Stop Shop Key Issues

Building an Effective One-Stop Shop Key Issues 2016/SOM1/EC/WKSP2/007 Session 3.1 Building an Effective One-Stop Shop Key Issues Submitted by: World Bank Group Ease of Doing Business Workshop: One-Stop Shops to Improve the Business Environment Lima,

More information

Maxim Chuprunov. Auditing and. GRC Automation. in SAP. ^ Springer

Maxim Chuprunov. Auditing and. GRC Automation. in SAP. ^ Springer Maxim Chuprunov Auditing and GRC Automation in SAP ^ Springer Contents List ofabbreviations xxix I From Legislation to Concept: ICS and Compliance in the ERP Environment 1 Legal Requirements in ICS Compliance

More information

See your auditor clearly. Transparency report: How we perform quality audit engagements

See your auditor clearly. Transparency report: How we perform quality audit engagements See your auditor clearly. Transparency report: How we perform quality audit engagements February 2014 Table of contents 1) A message from the CEO and Managing Partner Assurance 2 2) Quality control policies

More information