FF_ExtractDataSnapshot

Size: px
Start display at page:

Download "FF_ExtractDataSnapshot"

Transcription

1 FF_ExtractDataSnapshot The ExtractDataSnapshot function is used for extracting in MATLAB multiple items for a list of ids for 1 date, availble for equity, fixed income and funds. This function is using FactSet Screening Language. The FactSet Screening Language is a way to efficiently extract data for a large universe of securities as of a single date. The data can also be retrieved using a backtest date to avoid having look-ahead bias in the analysis. The backtest functionality is available to clients who subscribe to one of FactSet s quantitative applications in the workstation, such as Alpha Testing and Portfolio Simulation.. 1. Screening Language In order to facilitate efficient access to a data item as of single time period for a universe of securities, FactSet offers an optimized cross-sectional data access method with the Screening Language. Given a data item, for example EPS, and a time period, for example Q4 2010, data for every entity in the specified universe can be fetched using the Screening Language. By default, the Screening Language does not allow iteration and therefore cannot be used to return a time series of data with a single request code. To request data as of a single historical date, a date must be specified as an absolute or relative date. Note: Many formulas in the Screening Language are current only. If an option for a date argument is not available when selecting a formula, this means that the formula does not accept a date reference Screening Date Format - Absolute Dates Absolute dates indicate a specific day, month-end, fiscal quarter-end, calendar quarterend, fiscal year-end, or calendar year-end as depicted in the examples below: A day: MM/DD/YYYY (e.g. 7/11/1999) Note: DD/MM/YYYY is not a valid date format A month-end: MM/YYYY (e.g. 6/1999) A fiscal quarter-end: YY/FQ or YYYY/FQ (e.g. 1999/1F, 2000/3F, 2001/2F) A calendar quarter-end: YY/CQ or YYYY/CQ (e.g. 1999/1C, 00/3C, 2001/1C) A fiscal year-end: YY or YYYY (e.g. 2000, 01, 1999) 1 P a g e U p d a t e d J une

2 1.2. Screening Date Format - Relative Dates Relative dates represent a date relative to the most recently updated period. For example, 0 (zero) represents the most recently updated period; -1 represents the time period prior to the most recently updated. The zero date is determined by the default time period or the natural frequency of the data being requested. Zero (0) when used with monthly data indicates the most recent month end. Negative one (-1) when used with annual data indicates one fiscal year prior to the most recently updated fiscal year. List of Relative Date Arguments: D WE W AM M AQ Q CQ AY Y CY 0D is the most recent trading day, -1D is one trading day prior. 0WE is the most recent trading week end, -1AW is the one actual week (7 days) prior to the most recent. 0W is the last day of the most recent trading week (usually Friday), -1W is the last trading day of the prior week. 0AM is the most recent trading day, -1AM is the same day, one actual month ago. 0M is the last trading day of the most recent month, -1M is the last trading day of the prior month. 0AQ is the most recent trading day, -1AQ is the same day 3 months prior 0Q is the last trading day of the company s most recent fiscal quarter, -1Q is the last day of the prior fiscal quarter. 0CQ is the last trading day of the most recent calendar quarter (March, June, September, or December), -1CQ is the last trading day of the prior calendar quarter. 0AY is the most recent trading day, -1AY is one actual year (365 days) prior 0Y is the last trading day of the company s most recent fiscal year, -1Y is the last trading day of the prior fiscal year. 0CY is the last trading day of the most recent calendar year (the last trading day in December), -1CY is the last trading day of the prior calendar year. For databases available on FactSet, there are a set of items that represent the piece of information on the database, such as sales, EPS and market value. Formulas that begin 2 P a g e U p d a t e d J une

3 with FG_ are FactSet Global formulas and are some of the most commonly used formulas to retrieve prices, estimates, valuation, growth, and fundamentals. The formulas return data from multiple database sources, based on a client's FactSet subscription. While the source can be different depending on the selected company, all formulas for a given company are pulled from the same database source. In database specific codes, the database is specified in the Screening code, such as in P_PRICE where the P_ element of the code denotes the pricing database and FF_SALES denotes the FactSet Fundamentals database with the FF_ element of the code. This distinction is highlighted in more detail throughout the examples below. 2. FF_ExtractDataSnapshot in MATLAB In MATLAB, the syntax for the FF_ExtractDataSnapshot function is: data = FF_ExtractDataSnapshot(factset, 'ids', 'item', { 'param,value'} ); Note: In the syntax diagram, the braces indicate optional FactSet code arguments, not MATLAB cell arrays. where, data The name of the data structure to create, i.e. titled data or x. factset ids Item(s) Name of the FactSet fetch channel. CellString array with a list of one or more security identifiers. CellString array with a list of one or more FactSet data items in the Screening language. optional arguments, backtestdate currency cal The backtestdate as of which the data is retrieved. If no date is specified, a backtest date will not be set. The date can be entered using a relative date or absolute date. The currency in which the data is to be returned, using a string with the three character ISO code (e.g. USD or EUR ). Calendar setting, arguments include: 3 P a g e U p d a t e d J une

4 FIVEDAY: Displays Monday through Friday, regardless of whether there were trading holidays. FIVEDAYEOM: Displays Monday through Friday including a weekend date if it falls on the last day of the month. Where the month-end does not fall on a weekend, the calendar will act just as the standard five-day calendar. SEVENDAY: Displays Monday through Sunday. AAM: For Exchange code uses the calendar of a specific exchange, represented by the exchange code. If there is no calendar available for a specific exchange, the calendar will default to FIVEDAY. Note: The calendar setting does not get applied to the default date output field when using ExtractDataSnapshot. To display a corresponding date to the extracted value(s), with calendar settings applied, a date code must be added as an item in the request syntax. universe universegroup Screening expression to limit the universe Specifies what mode of screening to use. The default screening mode is Equity. For Fund screening and Debt screening the universegroup argument has to be used with either FUND or DEBT respectively. 4 P a g e U p d a t e d J une

5 Example 1: This example is using the standard Screening syntax to retrieve the quarterly sales value from the FactSet Fundamentals database for IBM using the Screening code FF_SALES(QTR, ). >> data = FF_ExtractDataSnapshot(factset,'ibm','ff_sales(QTR, )'); Entities: 1 Items: 3 Dates: 1 Layout: EIT Orientation: None Rows: 1 Item (3): Type: Double Desc: ff_sales (Sales) data = Id: 'ibm' Date: ff_sales: Note: See Table 1 in Appendix for the Screening syntax for the top 25 most frequently used data items from the FactSet Fundamentals database. Example 2: This example is using the standard Screening syntax to retrieve the quarterly sales values in USD from the FactSet Fundamentals database for Exxon Mobile and Statoil using the Screening code FF_SALES(QTR, ). >> data = FF_ExtractDataSnapshot(factset,'xom,stlno','ff_sales(QTR, ,,USD)'); Entities: 2 Items: 3 Dates: 1 Layout: EIT Orientation: None Rows: 2 Item (3): Type: Double Desc: ff_sales (Sales) 5 P a g e U p d a t e d J une

6 Note: All Screening codes used in the item parameter have their arguments in different positions depending on the source of the code. For example, the currency argument for the price code from the pricing database using P_PRICE has it in the 2ND position P_PRICE(-5D,USD), while the sales code from FactSet Fundamentals using the code FF_SALES(QTR,-1,RP,USD) has it in the 4th position. >> data.ff_sales Example 3: In this example, instead of specifying securities in the ids field, as was done in examples 1 and 2 above, an index universe is specified and the items codes, such as price or sales are extracted for all of the constituents of for example the S&P 500. The syntax to extract the price from the IDC/Exshare database using the code P_PRICE( ) and sales from the FactSet Fundamentals database using the code FF_SALES(QTR, ) for the current constituents of the S&P 500 using the code ISON_SP500 is the following: >> data = FF_ExtractDataSnapshot(factset,'','ff_sales(QTR, ),p_price( )', 'ison','sp500'); The universe is specified at the end of the code with the ison & sp500 arguments, which are broken down from the actual Screening syntax that would be used in an Excel template is ISON_SP500. In the output with this code, the ID field brings back the CUSIPs of the companies in the S&P 500. >> data Entities: 500 Items: 4 Dates: 1 Layout: EIT Orientation: None Rows: 500 Item (3): Type: Double Desc: ff_sales (Sales) Item (4): Type: Double Desc: p_price (Price - Close or Current Intraday) data = 6 P a g e U p d a t e d J une

7 1x500 struct array with fields: Example 4: In this example, retrieve the latest quarterly sales with the FactSet Fundamentals code FF_SALES in local currency for the specified universe as the constituents of the MSCI EAFE index. The Screening code for this universe is ISON_MSCI_EAFE(0,1). In the output, the ID field brings back the CUSIPs of the companies in the index. >> data= FF_ExtractDataSnapshot(factset,'','ff_sales(QTR,0)','ison','msci_eafe','isonParams ','0,1'); Entities: 911 Items: 3 Dates: 1 Layout: EIT Orientation: None Rows: 911 Item (3): Type: Double Desc: ff_sales (Sales) Note: The isonparams portion of the code is used when specifying an index, as demonstrated in this example and in Examples 5 and 6. Further details of the ISON function options for the Universe specification are in Online Assistant page Example 5: In this example, extract the latest closing price for the specified universe as the constituents of the MSCI USA index, using the pricing database code P_PRICE. The Screening code for this Universe is ISON_MSCI_COUNTRY(984000,0,CLOSE,OFF). In the output, the ID field brings back the CUSIPs of the companies in the index. >> data= FF_ExtractDataSnapshot(factset,'','p_price(0)','ison','msci_country','isonParams',' '); Entities: 603 Items: 3 Dates: 1 Layout: EIT Orientation: None Rows: 603 Item (2): Type: Date Desc: Date Item (3): Type: Double Desc: p_price 7 P a g e U p d a t e d J une

8 Example 6: In this example, extract the latest annual EPS ratio for the specified universe as the constituents of the Russell 1000 Index, using the FactSet Fundamentals code FF_EPS. The Screening code for this Universe is ISON_RUSSELL(1000,0). In the output, the ID field brings back the CUSIPs of the companies in the index. >> data= FF_ExtractDataSnapshot(factset,'','ff_eps(ANN,0)','ison','RUSSELL','isonParams',' 1000'); Entities: 1004 Items: 3 Dates: 1 Layout: EIT Orientation: None Rows: 1004 Item (3): Type: Double Desc: ff_eps (Earnings Per Share - Fiscal Period) Example 7: In this example, extract the decile ranking of the S&P 500 companies based on the most recently reported quarterly earnings per share (EPS) using the FactSet Fundamentals formula FF_EPS. The FactSet UDECILE function returns the decile rank (1-10) of a company against a specified universe when both the company and the universe are evaluated for the same formula. The number 1 is the highest rank and is assigned to the companies which fall within the top decile of the specified universe, in this case the S&P 500. >> data = FF_ExtractDataSnapshot(factset,'','udecile(ison_sp500,ff_eps(QTR,0))', 'ison','sp500'); Entities: 500 Items: 3 Dates: 1 Layout: EIT Orientation: None Rows: 500 Item (3): Type: Double Desc: udecile (Univ Decile Rank) The data.id and data.udecile arguments extract the CUSIP of the company and corresponding decile. 8 P a g e U p d a t e d J une

9 >> data.id M10 >> data.udecile For a comprehensive list of FactSet universe ranking functions that can be used with the Screening Language, that include RANK, DECILE, PERCENTILE, and QUARTILE see Online Assistant page Example 8: In this example utilize the backtest functionality to retrieve the latest quarterly sales value and the corresponding fiscal period end date for a list of securities lagged by 45 days. To retrieve sales the FactSet Fundamentals code is FF_SALES and for retrieving the Fiscal Period End date in MM/YYYY format the FactSet Fundamentals code is FF_FP_END_DATE. When using the lag argument (lag options: specified number of days, weeks, months, quarters, or years), FactSet retrieves data as it was known at the time of the rebalance date. For example, if returns are calculated for the universe rebalanced in December 1990, a custom P/E formula can be set up using the price in December 1990, then lag the date of the earnings (to the most-recently reported quarter at that point in time), for example, to September. By lagging EPS, it is possible to use the P/E that was known to the public in December A lag argument does not need to be added to pricing and shares formulas to avoid lookahead bias, because these are bits of information that would have been publicly known at the time of the backtest date. >> data = FF_ExtractDataSnapshot(factset,'ibm,hd,pg,fds,fit','FF_FP_END_DATE(QTR,0 L45D),FF_SALES(QTR,0 L45D)','backtestdate',' '); 9 P a g e U p d a t e d J une

10 Entities: 5 Items: 4 Dates: 1 Layout: EIT Orientation: None Rows: 5 Item (3): Type: String Desc: ff_fp_end_date (Fiscal Period End Date: MM/YYYY) Item (4): Type: Double Desc: ff_sales (Sales) >> data.ff_fp_end_date '09/2010' '10/2010' '09/2010' '11/2010' >> data.ff_sales P a g e

11 Alternatively, in order to retrieve the same data but with setting a relative date of -1D as the backtest date, the following syntax would be used. In this example a backtest date is set as of 2 trading days ago. >> data = FF_ExtractDataSnapshot(factset,'ibm,hd,pg','FF_FP_END_DATE(QTR,0 L45D),FF_SALES(QTR,0 L45D)','backtestdate','-1D'); Entities: 3 Items: 4 Dates: 1 Layout: EIT Orientation: None Rows: 3 Item (1): Type: Entity Desc: Id Item (2): Type: Date Desc: Date (Date: MM/DD/YY) Item (3): Type: String Desc: ff_fp_end_date (Fiscal Period End Date: MM/YYYY) Item (4): Type: Double Desc: ff_sales (Sales) >> data.ff_fp_end_date '09/2013' '10/2013' '09/2013' >> data.ff_sales P a g e

12 Example 9: In this example, extract valuation data for 2 bonds the name of the company issuing the bond with the code FI_NAME_ISS and the value of the bond with the code FTID_PRICE. The FI_NAME_ISS code retrieves along with the company name the coupon and maturity date of the bond. The data is retrieved using the bond identifiers 00077TAA for ABN Bank and 88579EAE for 3M. For more details regarding the FactSet Fixed Income Manager refer to Online Assistant page >> data = FF_ExtractDataSnapshot(factset,'88579EAE,00077TAA','FI_NAME_ISS(0),FTID_PR ICE(0)','universeGroup','DEBT'); Note: Fixed income securities need to use the universegroup, debt argument. Entities: 2 Items: 4 Dates: 1 Layout: EIT Orientation: None Rows: 2 Item (3): Type: String Desc: fi_name_iss (Name-Issue) Item (4): Type: String Desc: ftid_price (Price) >> data.id 88579EAE 00077TAA >> data.fi_name_iss '3M Co % 15-AUG-2013' 'ABN AMRO Bank NV (NY Branch) 7.75% 15-MAY-2023' 12 P a g e

13 Example 10: In this example, retrieve proprietary data stored uploaded into FactSet and stored in an Open FactSet Database (OFDB). OFDB is a high-performance multi-dimensional database system used to securely store proprietary numeric and textual data on FactSet. OFDB is ideal for users who manage large portfolios or maintain extensive historical proprietary databases. OFDB optimizes large, multi-dimensional databases, giving FactSet users highly flexible, factset access to large volumes of complex data that can be used in many different applications. OFDB is based upon Online Analytical Processing technology, which is the basis for multi-dimensional databases. Retrieve the latest closing price using P_PRICE for the constituents of an OFDB, titled in this example 5002_EAGLE. To test this example, reference an actual OFDB file that is stored. >> data = FF_ExtractDataSnapshot(factset, '','P_PRICE(0D)','ofdb','5002_EAGLE'); Note: When using the ofdb parameter, the retrieved constituents are current only. In order to extract a more dynamic universe of constituents from an OFDB as of a specific date, an ofdbdate argument must be used. The alternative request would thus be set up as: >> data = FF_ExtractDataSnapshot(factset, '','P_PRICE(0D)','ofdb','5002_EAGLE', 'ofdbdate',' '); Example 11: In this example, extract the price for the universe of 5 comparable companies to IBM using the Universe argument to returns the companies that pass given screening parameters. The Universe argument is combined in this example with the COMPARE_ function, which generates a list of comparable companies for a specified target company using a specific database. Depending on which COMPARE database is used, the corresponding database grouping and comparison formulas must be used as well. For example, if you choose COMPARE_FF_ADRS, you must use the FactSet Fundamentals-specific grouping and comparison formulas. For a comprehensive list of database specific COMPARE functions, refer to Online Assistant page P a g e

14 The 5 comparable companies to IBM in this example are from the FactSet Fundamentals database (excluding ADRs), in IBM's FactSet Industry, screened by net income, using the FactSet Fundamentals database code FF_NET_INC. >> data = FF_ExtractDataSnapshot(factset,'','P_PRICE', 'UNIVERSE','COMPARE_FF_NOADRS(IBM,PUBLIC:F_FACTSET_INDUS_N,PUBLI C:FF_NET_INC(ANN,0),5)'); Entities: 5 Items: 3 Dates: 1 Layout: EIT Orientation: None Rows: 5 Item (3): Type: Double Desc: p_price (Price - Close or Current Intraday) >> data.id P a g e

15 Example 12: In this example, the PMW function is used to return portfolio-specific information from valid Portfolio Analysis portfolios (e.g., OFDB, CSTM, ACCT, PRT, and Benchmark files). These functions are similar to OFDB functions, which can also be used to return information from OFDB databases, but are tailored for use with holdings databases used in Portfolio Analysis. PMWU PMWDB PMWAT PMWSM Returns a universe of companies from a given portfolio. Returns data from a specified column/field within a given portfolio. Returns asset type and asset classification data for a given portfolio. Returns data from the security master file. By default, PMW* functions return split-adjusted data. They are available in Screening syntax only and cannot be used with FQL. For further details on the PMW function refer to Online Assistant page Note: A SHARES field is required within the specified database in order to return data using PMW* functions. Since Portfolio Analysis is largely driven by the share positions supplied in holdings databases, PMW* functions also require a SHARES field to more closely replicate application behavior. To access data from holdings databases using the PMW* codes, it is necessary to first add the portfolio in Portfolio List Manager. >> data = FF_ExtractDataSnapshot(factset,'','PMWDB(#p1,shares,0),PMWAT(#p1,0)','p1','CLI ENT:SCCOMP.CSTM','universe','PMWU(#p1,0)=1'); Note: It is necessary to specify within the syntax, the portfolio file (e.g., OFDB, CSTM, ACCT, PRT, and Benchmark files) as a global variable, denoted in the syntax example above as p1. 15 P a g e

16 Example 13: In this example, using the SUM function, return the 20-quarter sum of price-to-sales per share for BNP Paribas, beginning with the latest fully-reported quarter. >> data = FF_ExtractDataSnapshot(factset,'BNP-FR','SUM20(ff_psales(QTR,0))'); >> data Entities: 1 Items: 3 Dates: 1 Layout: EIT Orientation: None Rows: 1 Item (3): Type: Double Desc: sum20 data = Id: 'BNP-FR' Date: sum20: Example 14: In this example, for the securities BNP and Alcatel-Lucent, add the latest annual operating income to the general industry classification output flag. If that flag output is a float value equal to 4, will add the operating income to one, if not, add operating income to zero. In this example demonstrating the use of addition, however, subtraction, division and multiplication can be performed as well. >> data = FF_ExtractDataSnapshot(factset,'BNP-FR,ALU- FR','FF_OPER_INC(ANN,0,RF)+IF(FLOAT(FF_GEN_IND)=4,1,0)'); Entities: 2 Items: 3 Dates: 1 Layout: EIT Orientation: None Rows: 2 Item (3): Type: Double Desc: ff_oper_inc (Operating Inc Before Unusual Items) 16 P a g e U p d a t e d J u n e

17 Example 15: In this example, for the securities 3M and Conoco Phillips, extract the Permanent Security ID (as defined by the Factset Symbology database). >> data = FF_ExtractDataSnapshot('factset','mmm,cop','fs_perm_sec_id('''')'); Entities: 2 Items: 3 Dates: 1 Layout: EIT Orientation: None Rows: 2 Item (3): Type: String Desc: fs_perm_sec_id (Permanent Security ID From 'X' ID) data = 1x2 struct array with fields: Id Date fs_perm_sec_id >> data.fs_perm_sec_id 'R17LLM-S-US' 'L6CX6R-S-US' Alternatively, for the same securities the following syntax would be used to retrieve the corresponding CUSIP. And to do that, the dataitemname= and heading= paramaters must be used. >> data = FF_ExtractDataSnapshot('factset','mmm,cop','(cusip)','dates',' ','heading', ',,cusip','dataitemname',',,cusip'); Entities: 2 Items: 3 Dates: 1 Layout: EIT Orientation: None Rows: 2 Item (3): Type: String Desc: cusip (Company Cusip) 17 P a g e U p d a t e d J u n e

18 >> data data = 1x2 struct array with fields: Id Date cusip >> data.cusip '88579Y10' '20825C10' Example 16: In this example fund screening is used to limit the universe and extract name and price for the funds passing the screening criteria. >> data = FF_ExtractDataSnapshot(factset,'','SPAR_MEUR_CO_NAME,SPAR_MEUR_CLOS E_PRICE(0)','universe','SPAR_MEUR_COUNTRY=PROPER(''FINLAND'')','universe Group','fund','backtestdate','3/26/14') 18 P a g e U p d a t e d J u n e

19 Appendix Table 1: Top 25 most commonly used FactSet Fundamentals formulas The table lists the top 25 most commonly used FactSet Fundamentals formulas, displaying the arguments for retrieving the data as of the latest available value denoted with the 0 date argument. That can be substituted with actual dates or other relative dates. Description Acquisition of Business (Cash Flow) Capital Expenditures (Fixed Assets) Capital Expenditures (Other Assets) Cash Dividends Paid Cash Flow from Financing Activity - Net (Cash Flow) Cash Flow from Investing Activity - Net (Cash Flow) Cash Flow from Operating Activity - Net (Cash Flow) Changes in Working Capital Common Equity (Total) Cost of Goods Sold Excluding Depreciation & Amortization Depreciation & Amortization (Cash Flow) Extraordinary Items (Cash Flow) Funds from Operations Issuance of LT Debt Long Term Debt excluding Capital Lease Obligations Minority Interest - Accumulated Preferred Stock - Carrying Value Price - Close for Calendar Period End Purchase of Investments Reduction of LT Debt Repurchase of Common & Pref Stock Sale of Common & Pref Stock Sales of Fixed Assets & Businesses Sales or Revenues - Net FF_ExtractDataSnapshot Syntax FF_ACQ_BUS_CF(QTR,0) FF_CAPEX_FIX(ANN,0) FF_CAPEX_OTH(ANN,0) FF_DIV_CF(ANN,0) FF_FIN_CF(ANN,0) FF_INVEST_CF(ANN,0) FF_FUNDS_OPER_GROSS(ANN,0) FF_WKCAP_CHG(ANN,0) FF_COM_EQ(QTR,0) FF_COGS_XDEP(ANN,0) FF_DEP_EXP_CF(ANN,0) FF_XORD_CF(ANN,0) FF_FUNDS_OPER_GROSS(ANN,0) FF_DEBT_LT_ISS_CF(ANN,0) FF_DEBT_LT_XCAP(ANN,0) FF_MIN_INT_ACCUM(ANN,0) FF_PFD_STK(QTR,0) FF_PRICE_CLOSE_CP(ANN,0) FF_INVEST_PURCH_CF(ANN,0) FF_DEBT_LT_REDUCT_CF(ANN,0) FF_STK_PURCH_CF(ANN,0) FF_STK_SALE_CF(ANN,0) FF_SALE_ASSETS_BUS_CF(ANN,0) FF_SALES(ANN,0) 19 P a g e U p d a t e d J u n e

20 Short-Term Debt (incl. Current Portion of LTD) FF_DEBT_ST(ANN,0) 20 P a g e U p d a t e d J u n e

FactSet OnDemand MATLAB User Guide

FactSet OnDemand MATLAB User Guide FactSet OnDemand MATLAB User Guide FactSet Research Systems Version 2.6 U p d a t e d F e b r u a r y 2 0 1 4 Table of Contents Chapter 1. Introduction... 4 1.1 Overview... 4 1.2 FactSet Data... 4 1.2.1

More information

Equity Screening Manual

Equity Screening Manual Equity Screening Manual Equity Screening The following table lists Universal Screening s features and their corresponding page numbers in the manual: If you are looking at... Find out how to: See page

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

Using. Research Wizard. Version 4.0. Copyright 2001, Zacks Investment Research, Inc.,

Using. Research Wizard. Version 4.0. Copyright 2001, Zacks Investment Research, Inc., Using Research Wizard Version 4.0 Copyright 2001, Zacks Investment Research, Inc., Contents Introduction 1 Research Wizard 4.0 Overview...1 Using Research Wizard...1 Guided Tour 2 Getting Started in Research

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

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

Morningstar Direct SM Dates Sets and Calculations

Morningstar Direct SM Dates Sets and Calculations Morningstar has many types of data points organized by standard (pre-defined), historical, and custom calculation data points. You can assemble a custom data set using only data points relevant to your

More information

TABLE OF CONTENTS. Report Designer User Guide

TABLE OF CONTENTS. Report Designer User Guide Alchemex Report Designer User Guide September 2010 TABLE OF CONTENTS Report Designer User Guide Installing the Alchemex Excel Report Designer... 3 Pre-installation requirements... 3 Alchemex Excel Report

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

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

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

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

FactSet Quick Start Guide

FactSet Quick Start Guide FactSet Quick Start Guide Table of Contents FactSet Quick Start Guide... 1 FactSet Quick Start Guide... 3 Getting Started... 3 Inserting Components in Your Workspace... 4 Searching with FactSet... 5 Market

More information

Financial Results for the Three Months Ended June 30, August 7, 2018

Financial Results for the Three Months Ended June 30, August 7, 2018 Financial Results for the Three Months Ended June 30, 2018 August 7, 2018 Copyright 2018 NIPPON TELEGRAPH AND TELEPHONE CORPORATION 1 This document is a translation of the Japanese original. The Japanese

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

Financial Results for the Nine Months Ended December 31, 2012

Financial Results for the Nine Months Ended December 31, 2012 Financial Results for the Nine Months Ended December 31, 2012 February 6, 2013 The forward-looking statements and projected figures concerning the future performance of NTT and its subsidiaries and affiliates

More information

Telemet IQ. Telemet Orion s Microsoft Excel Add-In

Telemet IQ. Telemet Orion s Microsoft Excel Add-In Telemet IQ Telemet Orion s Microsoft Excel Add-In Executive Summary Telemet puts research, analytics and real-time market data at your fingertips. Telemet IQ, bundled with the Telemet Orion investment

More information

4Q 2015 Earnings Conference Call. February 26, 2016

4Q 2015 Earnings Conference Call. February 26, 2016 4Q 2015 Earnings Conference Call February 26, 2016 Safe Harbor Statement This presentation includes forward-looking statements within the meaning of Section 27A of the Securities Act and Section 21E of

More information

DNA Plc January-March 2018 Interim Report

DNA Plc January-March 2018 Interim Report DNA Plc January-March 2018 Interim Report 19 April, 2018 Jukka Leinonen, CEO Timo Karppinen, CFO Forward looking statement This presentation contains, or may be deemed to contain, statements that are not

More information

Mergent Horizon. A User s Guide

Mergent Horizon. A User s Guide Mergent Horizon A User s Guide Welcome to Mergent Horizon. This user guide will show you everything you need to know to access and utilize the wealth of information available from Mergent Horizon. This

More information

General Ledger Table of Contents

General Ledger Table of Contents General Ledger Table of Contents Return to Cover page 1 Getting Started... 4 2 The Maintenance Menu Column... 6 2.1 Creating accounts...6 2.2 Creating budgets...10 2.3 Formatting financial statements...11

More information

INVESTOR RELATIONS 28 January Zayo Reporting Update Call

INVESTOR RELATIONS 28 January Zayo Reporting Update Call INVESTOR RELATIONS 28 January 2016 Zayo Reporting Update Call ZAYO GROUP SAFE HARBOR Information contained in this presentation that is not historical by nature constitutes forward-looking statements which

More information

Nokia Conference Call Fourth Quarter 2010 and Full Year 2010 Financial Results

Nokia Conference Call Fourth Quarter 2010 and Full Year 2010 Financial Results Nokia Conference Call Fourth Quarter 2010 and Full Year 2010 Financial Results January 27, 2011 15.00 Helsinki time 8.00 New York time Stephen Elop President and CEO Timo Ihamuotila CFO Matt Shimao Head

More information

Earnings Results for the Three-month Period Ended June 30, 2012

Earnings Results for the Three-month Period Ended June 30, 2012 Earnings Results for the Three-month Period Ended June 30, 2012 July 31, 2012 SOFTBANK CORP. Disclaimer This material was prepared based on information available and views held at the time it was made.

More information

CRSPSIFT Guide. CRSP s Securities Information Filtering Tool. A Research Center at the University of Chicago Graduate School of Business

CRSPSIFT Guide. CRSP s Securities Information Filtering Tool. A Research Center at the University of Chicago Graduate School of Business CRSPSIFT Guide CRSP s Securities Information Filtering Tool A Research Center at the University of Chicago Graduate School of Business 105 West Adams Street, Suite 1700 Chicago, IL 60603 Tel: 312.263.6400

More information

FOURTH QUARTER AND FULL YEAR 25 JANUARY 2010

FOURTH QUARTER AND FULL YEAR 25 JANUARY 2010 FOURTH QUARTER AND FULL YEAR 25 JANUARY 21 HENRY STÉNSON SENIOR VICE PRESIDENT COMMUNICATIONS FOURTH QUARTER AND FULL YEAR This presentation contains forward looking statements. Such statements are based

More information

NetAdvantage. User s Guide

NetAdvantage. User s Guide NetAdvantage User s Guide Welcome to NetAdvantage. This user guide will show you everything you need to know to access and utilize the wealth of information available from S&P NetAdvantage. This is an

More information

Conference call August 4, :00 / Helsinki 08:00 / New York 1 Nokia 2016 Q2 2016

Conference call August 4, :00 / Helsinki 08:00 / New York 1 Nokia 2016 Q2 2016 Conference call August 4, 2016 15:00 / Helsinki 08:00 / New York 1 Nokia 2016 Q2 2016 Disclaimer It should be noted that Nokia and its business are exposed to various risks and uncertainties, and certain

More information

Conference call February 2, :00 / Helsinki 08:00 / New York 1 Nokia Q4 and FY 2016

Conference call February 2, :00 / Helsinki 08:00 / New York 1 Nokia Q4 and FY 2016 Conference call February 2, 2017 15:00 / Helsinki 08:00 / New York 1 Nokia 2016 Q4 and FY 2016 Disclaimer It should be noted that Nokia and its business are exposed to various risks and uncertainties,

More information

Q Earnings Conference Call. August 7, 2018

Q Earnings Conference Call. August 7, 2018 Q2 2018 Earnings Conference Call August 7, 2018 Safe Harbor Statement This presentation includes forward-looking statements within the meaning of Section 27A of the Securities Act and Section 21E of the

More information

Nokia Conference Call Second Quarter 2010 Financial Results

Nokia Conference Call Second Quarter 2010 Financial Results Nokia Conference Call Second Quarter 2010 Financial Results July 22, 2010 15.00 Helsinki time 8.00 New York time Olli-Pekka Kallasvuo CEO Timo Ihamuotila CFO Kristian Pullola Head of Treasury and Investor

More information

Transcript: First Quarter FY 2016 Earnings Conference Call October 29, :00 a.m. ET

Transcript: First Quarter FY 2016 Earnings Conference Call October 29, :00 a.m. ET Transcript: First Quarter FY 2016 Earnings Conference Call October 29, 2015 11:00 a.m. ET Welcome to our September 2015 quarter earnings conference call. I'm joined in Indianapolis by Eric Meek, our Chief

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

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

PATRONAGE / EQUITY USER'S GUIDE

PATRONAGE / EQUITY USER'S GUIDE PATRONAGE / EQUITY USER'S GUIDE This document is non-technical and explains the operation of the Patronage / Equity programs. It is intended for both accounting staff and operators. COPYRIGHT 2017 AgTrax

More information

Financial Results for the Three Months Ended June 30, 2016

Financial Results for the Three Months Ended June 30, 2016 Financial Results for the Three Months Ended June 30, 2016 August 5, 2016 The forward-looking statements and projected figures concerning the future performance of NTT and its subsidiaries and affiliates

More information

London Property Management Association (LPMA) INTERROGATORY #26 List 1

London Property Management Association (LPMA) INTERROGATORY #26 List 1 Filed: September 0, 0 Tab Schedule.0 LPMA Page of 7 8 9 0 7 8 9 0 7 8 9 0 7 8 9 0 London Property Management Association (LPMA) INTERROGATORY # List Issue Are the inputs used to determine the working capital

More information

Comcast Full Year and Fourth Quarter Results Meet or Exceed All Operating and Financial Targets Setting Stage For Continued Growth in 2004

Comcast Full Year and Fourth Quarter Results Meet or Exceed All Operating and Financial Targets Setting Stage For Continued Growth in 2004 Comcast Full Year and Fourth Quarter Results Meet or Exceed All Operating and Financial Targets Setting Stage For Continued Growth in 2004 Comcast Cable Delivers $6.35 Billion of Operating Cash Flow in

More information

Hitachi Announces Consolidated Financial Results for Fiscal 2017

Hitachi Announces Consolidated Financial Results for Fiscal 2017 FOR IMMEDIATE RELEASE Hitachi Announces Consolidated Financial Results for Fiscal 2017 Tokyo, April 27, 2018 --- Hitachi, Ltd. (TSE:6501) today announced its consolidated financial results for fiscal 2017,

More information

Data Points Structure Explanatory Documentation

Data Points Structure Explanatory Documentation Data Points Structure Explanatory Documentation Version: 0.2 (Public Draft) Publication date: 2009-12-08 Abstract This document contains a description of an approach for the explicit, consistent and coherent

More information

Trend Micro Reports Second Quarter Results

Trend Micro Reports Second Quarter Results Trend Micro Reports Second Quarter Results Technology and service acquisitions and significant growth in networking products highlight quarter Tokyo, Japan August 03, 2005 Trend Micro, Inc. (TSE: 4704,

More information

1Q 2016 Earnings Conference Call. April 29, 2016

1Q 2016 Earnings Conference Call. April 29, 2016 1Q 2016 Earnings Conference Call April 29, 2016 Safe Harbor Statement This presentation includes forward-looking statements within the meaning of Section 27A of the Securities Act and Section 21E of the

More information

Performance Briefings First Half of Fiscal Year March, 2013 TDK Corporation October 31, 2012

Performance Briefings First Half of Fiscal Year March, 2013 TDK Corporation October 31, 2012 Performance Briefings First Half of Fiscal Year March, 2013 TDK Corporation October 31, 2012 Copyright 2012 TDK Corporation. All rights reserved. Performance Briefings First Half of Fiscal Year March,

More information

General Ledger 3000 Reference Manual Prophet 21 FASPAC 4.2

General Ledger 3000 Reference Manual Prophet 21 FASPAC 4.2 General Ledger 3000 Reference Manual Prophet 21 FASPAC 4.2 Table of Contents INTRODUCTION 7 Getting Started 7 Account Numbers 8 AR and AR Transactions 8 Profit Centers and Financial Entities 9 Financial

More information

PCGenesis Financial Accounting and Reporting (FAR) System Operations Guide Section L: General Ledger Account Processing Topic 3: PCGenesis and FASgov

PCGenesis Financial Accounting and Reporting (FAR) System Operations Guide Section L: General Ledger Account Processing Topic 3: PCGenesis and FASgov PCGenesis Financial Accounting and Reporting (FAR) System Operations Guide Topic 3: PCGenesis and FASgov Capital Asset Processing, Version 1.1 Revision History Date Version Description Author 07/11/2006

More information

Proquote Web User Guide

Proquote Web User Guide Proquote Web User Guide Version 1.0 07/03/2013 Table of Contents 1 Accessing Proquote Web... 3 2 Proquote Web Homepage... 3 2.1 Homepage Contents... 3 3 List Menu... 4 3.1 Stocks... 4 3.1.1 Stock Detail...

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

Earnings Results for the Third Quarter Ended December 31, 2008

Earnings Results for the Third Quarter Ended December 31, 2008 Earnings Results for the Third Quarter Ended December 31, 2008 February 5, 2009 SOFTBANK CORP. February 25, 2010 Version Due to protection of rights, some of the photos and images included at the time

More information

1Q 2017 Earnings Conference Call. May 4, 2017

1Q 2017 Earnings Conference Call. May 4, 2017 1Q 2017 Earnings Conference Call May 4, 2017 Safe Harbor Statement This presentation includes forward-looking statements within the meaning of Section 27A of the Securities Act and Section 21E of the Securities

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

Microsoft Dynamics GP: General Ledger Year-End Closing Procedures

Microsoft Dynamics GP: General Ledger Year-End Closing Procedures Microsoft Dynamics GP: General Ledger Year-End Closing Procedures Introduction This article outlines the recommended year-end closing procedures for Microsoft Dynamics GP. This article contains a checklist

More information

CHAPTER 2: FINANCIAL REPORTING

CHAPTER 2: FINANCIAL REPORTING Chapter 2: Financial Reporting CHAPTER 2: FINANCIAL REPORTING Objectives The objectives are: Describe filtering and analysis windows related to the Chart of Accounts. Provide a demonstration of setting

More information

KeyBanc Industrial, Automotive and Transportation Conference

KeyBanc Industrial, Automotive and Transportation Conference KeyBanc Industrial, Automotive and Transportation Conference Dave Adams, President and CEO 1 May 2014 2014 Curtiss-Wright Safe Harbor Statement Please note that the information provided in this presentation

More information

Cincinnati Bell Third Quarter 2011 Results. November 3, 2011

Cincinnati Bell Third Quarter 2011 Results. November 3, 2011 Cincinnati Bell Third Quarter 2011 Results November 3, 2011 Today s Agenda Performance Highlights Jack Cassidy, President & Chief Executive Officer Review of Wireline, Wireless, IT Services & Hardware

More information

Top 10 Things to Know about WRDS

Top 10 Things to Know about WRDS Top 10 Things to Know about WRDS 1. Do I need special software to use WRDS? WRDS was built to allow users to use standard and popular software. There is no WRDSspecific software to install. For example,

More information

Q2 FY06 Earnings April 19, 2006

Q2 FY06 Earnings April 19, 2006 Safe Harbor Before we proceed with our presentation, we would like to point out that the following discussion will contain forward-looking statements from industry consultants, QUALCOMM, and others regarding

More information

Portfolio Accounting. The Internet-based front end for Stifel s Portfolio Accounting System.

Portfolio Accounting. The Internet-based front end for Stifel s Portfolio Accounting System. eportfolio - The Internet-based front end for Stifel s Portfolio Accounting System. Credentials Once your credentials are established, you will access Stifel s Portfolio Accounting service at https://eportfolio.stifel.com.

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

Electronic Filing Instructions In re Barrick Gold Securities Litigation

Electronic Filing Instructions In re Barrick Gold Securities Litigation Electronic Filing Instructions I. Important Notes PLEASE READ In order to be considered eligible for this settlement, you must have purchased publicly traded Barrick Common Stock (CUSIP 067901108) on the

More information

Samu Konttinen, CEO Q4 / 2017 CORPORATE SECURITY REVENUE GROWTH ACCELERATED TO 16%

Samu Konttinen, CEO Q4 / 2017 CORPORATE SECURITY REVENUE GROWTH ACCELERATED TO 16% Samu Konttinen, CEO Q4 / 2017 CORPORATE SECURITY REVENUE GROWTH ACCELERATED TO 16% 1 AGENDA Key takeaways from Q4 Key figures Business review for 2017 Outlook 2018 Outlook for 2018-2021 Financials FAQ

More information

Agenda Business Overview Operating Results Financial Results

Agenda Business Overview Operating Results Financial Results 1 Agenda 2001 Business Overview 2001 Operating Results 2001 Financial Results 2 2001 Business Overview Satisfactory Operating Performance New Businesses Taking-off Increasingly Efficient Operations Promising

More information

Conference Call Second Quarter 2003 Financial Results. Jorma Ollila Chairman and CEO

Conference Call Second Quarter 2003 Financial Results. Jorma Ollila Chairman and CEO Conference Call Second Quarter 2003 Financial Results Jorma Ollila Chairman and CEO Olli-Pekka Kallasvuo Executive Vice President and CFO Ulla James Vice President, Investor Relations July 17, 2003 15.00

More information

TCL Communications (02618.HK/2618 HK)

TCL Communications (02618.HK/2618 HK) (218.HK/218 HK) May 9, 214 Institutional portal: http://research.kgi.com Electronics Hong Kong Outperform Resume coverage 1 Huei-chen Flannery 2 852.2878.427 3 hueichen.flannery@kgi.com 1 Richard Ko (Coordinator)

More information

Financials Module: General Ledger

Financials Module: General Ledger The Priority Enterprise Management System Financials Module: General Ledger Contents Introduction... 2 Chart of Accounts... 2 Entry Journal... 4 Reconciliations... 7 Financial Statements... 9 Cash Flow...

More information

F-Secure Group Interim Report January 1 September 30, 2008

F-Secure Group Interim Report January 1 September 30, 2008 F-SECURE CORPORATION INTERIM REPORT October 21, 2008 at 9.00 am F-Secure Group Interim Report January 1 September 30, 2008 Solid revenue growth continued, strong profitability (Unaudited. Unless otherwise

More information

3Q 2016 Earnings Conference Call. November 7, 2016

3Q 2016 Earnings Conference Call. November 7, 2016 3Q 2016 Earnings Conference Call November 7, 2016 Safe Harbor Statement This presentation includes forward-looking statements within the meaning of Section 27A of the Securities Act and Section 21E of

More information

UBS-SFA Online. User guide. Page 1 of 36

UBS-SFA Online. User guide. Page 1 of 36 UBS-SFA Online User guide Page 1 of 36 Contents 1. Introduction... 3 2. Logging in... 4 2.1 How to log in... 4 2.2 Changing the PIN on your token... 4 3. Finances Check on your portfolio(s) and assets...

More information

Nigerian Telecommunications (Services) Sector Report Q3 2016

Nigerian Telecommunications (Services) Sector Report Q3 2016 Nigerian Telecommunications (Services) Sector Report Q3 2016 24 NOVEMBER 2016 Telecommunications Data The telecommunications data used in this report were obtained from the National Bureau of Statistics

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

Guide for Transitioning From Fixed To Flexible Scenario Format

Guide for Transitioning From Fixed To Flexible Scenario Format Guide for Transitioning From Fixed To Flexible Scenario Format Updated December 23 2016 GGY AXIS 5001 Yonge Street Suite 1300 Toronto, ON M2N 6P6 Phone: 416-250-6777 Toll free: 1-877-GGY-AXIS Fax: 416-250-6776

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

Conference call October 26, :00 / Helsinki 08:00 / New York 1 Nokia 2016 Q3 2017

Conference call October 26, :00 / Helsinki 08:00 / New York 1 Nokia 2016 Q3 2017 Conference call October 26, 2017 15:00 / Helsinki 08:00 / New York 1 Nokia 2016 Q3 2017 Disclaimer It should be noted that Nokia and its business are exposed to various risks and uncertainties, and certain

More information

Cincinnati Bell. Morgan Stanley Technology, Media, and Telecommunications Conference February 28, 2012

Cincinnati Bell. Morgan Stanley Technology, Media, and Telecommunications Conference February 28, 2012 Cincinnati Bell Morgan Stanley Technology, Media, and Telecommunications Conference February 28, 2012 Safe Harbor This presentation and the documents incorporated by reference herein contain forwardlooking

More information

FINANCIAL GENOME CONSULTANT TUTORIAL

FINANCIAL GENOME CONSULTANT TUTORIAL FINANCIAL GENOME CONSULTANT TUTORIAL Sample Project Work Flow A step-by-step guide for using Financial Genome to build your custom financial forecasting model This tutorial provides the basic workflow

More information

5. NTT conducted a two-for-one stock split of its common stock with an effective date of July 1, The figures for NTT shareholders equity per sha

5. NTT conducted a two-for-one stock split of its common stock with an effective date of July 1, The figures for NTT shareholders equity per sha PART Ⅰ. INFORMATION ON THE COMPANY ITEM 1. OVERVIEW OF THE COMPANY 1. Selected Financial Data (1) Selected Consolidated Financial and Other Data of the Company U.S. GAAP 29 th 30 th 31 st 32 nd 33 rd March

More information

Q Earnings Conference Call. November 6, 2018

Q Earnings Conference Call. November 6, 2018 Q3 2018 Earnings Conference Call November 6, 2018 Safe Harbor Statement This presentation includes forward-looking statements within the meaning of Section 27A of the Securities Act and Section 21E of

More information

OpenText Buys Guidance Software

OpenText Buys Guidance Software OpenText Buys Guidance Software September 14, 2017 NASDAQ: OTEX TSX: OTEX Safe Harbor Statement Certain statements in this presentation, including statements regarding OpenText's plans, objectives, expectations

More information

Quick Reference Your Portfolios/SCORECARDs

Quick Reference Your Portfolios/SCORECARDs PerformanceIQ Quick Reference Your Portfolios/SCORECARDs Description The Your Portfolios/SCORECARDs area provides detailed information for the accounts available in PerformanceIQ. Performance is updated

More information

Special Purpose Entities (SPE) - FVC and SPV

Special Purpose Entities (SPE) - FVC and SPV Special Purpose Entities (SPE) - FVC and SPV Registration FAQs December 2018 Email: fvc@centralbank.ie ; spvstats@centralbank.ie Website: https://www.centralbank.ie/statistics/statistical-reporting-requirements

More information

Solar Eclipse General Ledger. Release 9.0

Solar Eclipse General Ledger. Release 9.0 Solar Eclipse General Ledger Release 9.0 Disclaimer This document is for informational purposes only and is subject to change without notice. This document and its contents, including the viewpoints, dates

More information

Vonage Digital Phone Service 2010 Annual Report

Vonage Digital Phone Service 2010 Annual Report Vonage Digital Phone Service 2010 Annual Report 1 Our Mission Contents 2010 was a year of accomplishment. The dramatic improvement in our performance is a direct result of the focused efforts of our dedicated

More information

Table of Contents CLIENT INTERNET ACCESS...4. Mobile Devices...4. Browser Compatibility...4 SYSTEM NAVIGATION Header Links...

Table of Contents CLIENT INTERNET ACCESS...4. Mobile Devices...4. Browser Compatibility...4 SYSTEM NAVIGATION Header Links... WebLink User Guide Table of Contents CLIENT INTERNET ACCESS...4 Mobile Devices...4 Browser Compatibility...4 SYSTEM NAVIGATION... 9 Header Links... 9 Navigation Bar... 9 USER OPTIONS... 9 Change Password...

More information

1Q 2015 Earnings Conference Call. May 4, 2015

1Q 2015 Earnings Conference Call. May 4, 2015 1Q 2015 Earnings Conference Call May 4, 2015 Safe Harbor Statement This presentation includes forward-looking statements within the meaning of Section 27A of the Securities Act and Section 21E of the Securities

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

2Q 2015 Earnings Conference Call. July 31, 2015

2Q 2015 Earnings Conference Call. July 31, 2015 2Q 2015 Earnings Conference Call July 31, 2015 Safe Harbor Statement This presentation includes forward-looking statements within the meaning of Section 27A of the Securities Act and Section 21E of the

More information

Reports. Chapter V. In This Chapter

Reports. Chapter V. In This Chapter Chapter V. Reports In This Chapter 1. Reports Overview 260 Explanation of the Reports window 260 Features of reports 262 2. Using Reports functions 264 Generating reports 264 Viewing reports 269 Printing

More information

DNA Plc January-September 2018 Interim Report

DNA Plc January-September 2018 Interim Report DNA Plc January-September 2018 Interim Report 19 October, 2018 Jukka Leinonen, CEO Timo Karppinen, CFO Forward looking statement This presentation contains, or may be deemed to contain, statements that

More information

Nigerian Telecommunications (Services) Sector Report Q2 2016

Nigerian Telecommunications (Services) Sector Report Q2 2016 Nigerian Telecommunications (Services) Sector Report Q2 2016 01 SEPTEMBER 2016 Telecommunications Data The telecommunications data used in this report were obtained from the National Bureau of Statistics

More information

Contents D&B Business Browser versus D&B Hoovers... 3 Search for a Target Company... 3 Researching a Target Company... 3 Available Company Reports...

Contents D&B Business Browser versus D&B Hoovers... 3 Search for a Target Company... 3 Researching a Target Company... 3 Available Company Reports... User Guide Contents D&B Business Browser versus D&B Hoovers... 3 Search for a Target Company... 3 Researching a Target Company... 3 Available Company Reports... 4 Building a Target List of Companies...

More information

TeraGo Reports Fourth Quarter and Year End 2018 Results

TeraGo Reports Fourth Quarter and Year End 2018 Results TeraGo Reports Fourth Quarter and Year End Results Toronto February 21, 2019 TeraGo Inc. ( TeraGo or the Company ) (TSX: TGO, www.terago.ca), today announced financial and operating results for the fourth

More information

Electronic Filing Instructions Pfizer Securities Litigation Settlement

Electronic Filing Instructions Pfizer Securities Litigation Settlement I. Important Notes PLEASE READ Electronic Filing Instructions Pfizer Securities Litigation Settlement Electronic claim submissions apply to institutions or claim preparers filing on behalf of multiple

More information

A STRONG QUARTER FOR CORPORATE AND CONSUMER SECURITY. Samu Konttinen, CEO Interim Results Q1 2017

A STRONG QUARTER FOR CORPORATE AND CONSUMER SECURITY. Samu Konttinen, CEO Interim Results Q1 2017 A STRONG QUARTER FOR CORPORATE AND CONSUMER SECURITY Samu Konttinen, CEO Interim Results Q1 2017 1 AGENDA Key takeaways from Q1 Financials Business updates Outlook 2 KEY TAKEAWAYS FROM Q1 Corporate security

More information

Olli-Pekka Kallasvuo President & CEO Rick Simonson Executive Vice President & CFO. Bill Seymour Head of Investor Relations

Olli-Pekka Kallasvuo President & CEO Rick Simonson Executive Vice President & CFO. Bill Seymour Head of Investor Relations Conference Call Second Quarter 2007 Financial Results August 2, 2007 15.00 Helsinki time 8.00 New York time Olli-Pekka Kallasvuo President & CEO Rick Simonson Executive Vice President & CFO Bill Seymour

More information

Table of Contents CLIENT INTERNET ACCESS...4. Mobile Devices...4. Browser Compatibility...4 SYSTEM NAVIGATION Header Links...

Table of Contents CLIENT INTERNET ACCESS...4. Mobile Devices...4. Browser Compatibility...4 SYSTEM NAVIGATION Header Links... WebLink Guide November 2017 Table of Contents CLIENT INTERNET ACCESS...4 Mobile Devices...4 Browser Compatibility...4 SYSTEM NAVIGATION... 9 Header Links... 9 Navigation Bar... 9 USER OPTIONS... 9 Change

More information

My Time Off. Associates Quick-Reference Card. View Leave Balance. Request Time Off. My Time Off. Access My Time Off

My Time Off. Associates Quick-Reference Card. View Leave Balance. Request Time Off. My Time Off. Access My Time Off My Time Off Click here for the Managers Quick-Reference Card Click here for directions for Unavailable Days Associates Quick-Reference Card My Time Off This quick-reference outlines how to view and submit

More information

Electronic Filing Instructions SEC v. A.C.L.N., Ltd.

Electronic Filing Instructions SEC v. A.C.L.N., Ltd. Electronic Filing Instructions SEC v. A.C.L.N., Ltd. I. Important Notes PLEASE READ Electronic claim submissions apply to institutions filing on behalf of multiple client or proprietary accounts and all

More information

F-Secure Corporation - Interim Report January 1 - June 30, 2009

F-Secure Corporation - Interim Report January 1 - June 30, 2009 F-SECURE CORPORATION Quarterly report July 28, 2009 at 9.00 F-Secure Corporation - Interim Report January 1 - June 30, 2009 Good growth and solid profitability continued, Software as a Service business

More information

Financial Results for the Nine Months Ended December 31, February 9, 2018

Financial Results for the Nine Months Ended December 31, February 9, 2018 Financial Results for the Nine Months Ended December 31, 2017 February 9, 2018 The forward-looking statements and projected figures concerning the future performance of NTT and its subsidiaries and affiliates

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

USER MANUAL. Contents. Analytic Reporting Tool Basic for SUITECRM

USER MANUAL. Contents. Analytic Reporting Tool Basic for SUITECRM USER MANUAL Analytic Reporting Tool Basic for SUITECRM Contents ANALYTIC REPORTING TOOL FEATURE OVERVIEW... 2 PRE-DEFINED REPORT LIST AND FOLDERS... 3 REPORT AND CHART SETTING OVERVIEW... 5 Print Report,

More information