SeUGI 19 - Florence WEB Enabling SAS output. Author : Darryl Lawrence

Size: px
Start display at page:

Download "SeUGI 19 - Florence WEB Enabling SAS output. Author : Darryl Lawrence"

Transcription

1 SeUGI 19 - Florence WEB Enabling SAS output Author : Darryl Lawrence

2 Agenda Company Profile Overview of Change of Address Process Old Change of Address Process Automated HTML Delivery Demo Summary The Future Questions

3 Old Mutual Company Profile Founded in 1845 as a 166 Member Mutual Life Assurance Society 12 July 1999, listed 5 stock exchanges (London, Johannesburg, Harare, Windhoek and Blantyre) Asset Management (Wealth Creation) Assets under management 169 billion (as at 31 December 2000) In the world top 30 asset manager bracket

4 Old Mutual Company Profile (Continued) Life Assurance (Risk) - over 3.8 million policyholders Pension Fund Administration - 116,700 pensioners Short Term Insurance - 610,000 customers Banking million customers Unit Trust - 900,000 customers

5 Overview of Change of Address Process Intermediaries sell financial products to clients Intermediaries provide advice to clients Focus on clients residing in South Africa Client base spread over all geographical regions of RSA Clients linked to local Old Mutual branch Change of Address Leads used to maintain contact with client

6 Physical Model of Data Warehouse CHRIS II Physical Model Source Systems Source 1 Source 2 Source 3... Staging Layer Source 1 Source 2 Source 3... Enterprise Layer IL Client IL HR GID Intermediary GS UT... Exploitation Layer Imed History Mart IL Agreement CHRIS Supermart - Current view Campaign measurement Mart GS Agreement Client History Mart Client Contact UT Account Sales History Marts... Exploitation Tools Futrix Web Segmentor Web History analysis Web Standard campaign analysis

7 Geographical Layout of South Africa NORTHERN PROVINCE MPUMALANGA NORTH WEST GAUTENG FREE STATE KWAZULU-NATAL NORTHERN CAPE EASTERN CAPE WESTERN CAPE

8 Old Change of Address Process Extract Change of Address data from Data Warehouse Manually identify branches in output file Export data to EXCEL Open Ms Word Mail Merge template Run Mail Merge Process for every branch (300+ iterations) Manually Manually Save each Save MS each Word MS Document Word Document Process takes up to 4 days MS Word Documents to Branches

9

10

11

12 New Change of Address Process Utilise SAS Macro language to automate processing Convert MS Word templates to HTML code Embed HTML code in SAS Macro code Create HTML Documents HTML Documents to Branches

13 SAS Code Interrogate Branch code variable to determine how many branches were selected proc sql noprint; select count(distinct br_sort) into :last from DATA.COAFIN; /* Create macro variables VAL1 to VALnn. The ending range gets the value from macro variable last.*/ select distinct(br_sort) into: val1- :val%left(&last from DATA.COAFIN; run; quit;

14 SAS Code (2) Macro Code to generate HTML output %macro loopit; %do i = 1 %to &last; filename Agent "C:\..\&FDAT\COA_&&val&i..(A)_&&FDAT..html" ; data _null_; set DATA.COAFIN; if i_type='a' and br_sort="&&val&i" then file Agent; where br_sort="&&val&i"; put "<HTML>"; put "<HEAD>"; put '<img src= c:\omplc\seugi 19\omlogo.gif"'; put '<BODY LINK="#0000ff">'; Rest of HTML code... put '<p style="page-break-after: always;">&#160</p>'; run; %end; %mend loopit; Adds a page break after every client/form %loopit

15 Sample Output

16 Demo

17 Summary Old Process New Process Compile SAS code to list Branch Codes Manually create Mail Merge document for every branch Automatic creation of HTML output per branch Eliminates User Input Time Consuming (4 days) Automatically creates 280 html documents in 3 minutes This process saves 4 days of user time per month.

18 The Future Implement application on Intranet (web server) Evaluate other SAS modules to create Web output E.g. Enterprise Guide AppDev Studio

19 In Closing.. Using SAS to transform your life from this... To this!

20 Questions

21 Thank You

22 Contact Details : Darryl Lawrence Programmer Old Mutual Personal Finance P O Box 66 Cape Town,8000 South Africa Phone : +27 (0) Fax : +27 (0) dlawrence@oldmutual.com

23 Cool SAS Websites :

24 WEB Enabling SAS output Darryl Lawrence, Old Mutual PLC, Cape Town South Africa Abstract This presentation will demonstrate how SAS is used to automatically create HTML output of client leads extracted from our Data Warehouse. This application evolved from a MS Word Mail-Merge process, where the user had to manually create up to 120 merged documents and it would take the user about 4 working days to complete the process. The SAS program that creates the HTML output runs for about 30 minutes (and can be run in batch mode), thus saving the user 4 working days per month as the output is automatically produced and saved on a departmental server. Company Information Old Mutual was founded in 1845 as a 166 member Mutual Life Assurance Society. On July , Old Mutual Listed on the stock exchanges of London, Johannesburg, Harare (Zimbabwe), Windhoek (Namibia) and Blantyre (Malawi). Old Mutual provides world-class services in Asset Management (wealth creation), Life Assurance (Risk products), Pension Fund Administration, Healthcare, Unit Trust, Short Term Insurance and Banking. Assets under management amounted to 169 billion (as at 31 December 2000) The data warehouse datasets reside on an IBM (OS/390) mainframe running SAS Release 6.09 TS470. The data can be accessed via the mainframe or on the PC SAS (Version 6.12 or 8e) via TCP/IP. Introduction Our department provides client information (Leads) to the Intermediaries and brokers who sell financial products to meet the needs of our clients. In doing so, they have a strong advisory role to play. Our client base covers all the geographical regions (provinces) of South Africa. Clients are linked to the branch closest to where they reside or to the branch that their Intermediary is associated with. Leads are used to keep contact with clients and to assist them with decision making with regards to their current and future financial growth and stability. The Change of Address process focuses on clients who reside in South Africa (RSA). One of the ways to maintain contact with our clients is to keep track of them whenever they move to a new residential area. Change of Address (COA) leads are extracted from the data warehouse on a monthly basis. E.g. during May 2001, all the address changes processed for April are extracted. A mart is created of all the variables required for the output file/s. Documents are created of all the clients, per Intermediary type (Active, Broker, and Orphan) per branch. The Intermediary uses the COA leads as a tool to maintain contact with his/her clients. The Process MS Word Mail Merge process 1. Print analysis of all the branches selected in the COA file. 2. Export SAS data to EXCEL. 3. Set up Mail Merge Document - fixed and variable data. 4. Edit Mail Merge document (query facility) and insert a where clause. (where brsort eq 'AA') 5. Run Mail Merge process. 6. Save new document as COA_AA_May2001.doc in pre-defined directory on the Marketing shared data server. (the user would have to create directories for every month of the year. I.e. All the COA leads for May 2001 would be stored in directory \\Marketing Users\COA\May2001\ 7. Re-do steps 4-6 for each branch selected, up to 100 times. Prepared by : Darryl Lawrence on 12 April 2001 Page 1 of 6 Old Mutual PLC, Cape Town South Africa

25 Disadvantages : 1. You have to determine which branches were selected in order to run the mail merge process. 2. Every merged document has to be manually created. 3. Time consuming process. Advantages : 1. Replaced paper version. 2. Output can be ed to clients. Prepared by : Darryl Lawrence on 12 April 2001 Page 2 of 6 Old Mutual PLC, Cape Town South Africa

26 SAS to HTML output process Improve process by using SAS procedures and fully automate HTML file creation by utilising SAS macro language. 1. Create macro variables that store unique occurrences of every branch code in the COA mart. 2. Create macro variables of the location of the HTML filenames to be created. 3. Use HTML language to set up template - images, borders, shading, tables, position of variables and fixed text. 4. Embed HTML code in macro code. Disadvantages : 1. HTML is a cumbersome coding language. 2. HTML has no page-break feature/command. Advantages : 1. Replaced paper version. 2. HTML output is automatically created in pre-defined directories 3. Output can be ed to clients. SAS Components used : BASE SAS SAS Macro Language Prepared by : Darryl Lawrence on 12 April 2001 Page 3 of 6 Old Mutual PLC, Cape Town South Africa

27 Sample SAS Code 1. Identify branches selected proc sql noprint; select count(distinct br_sort) into :last from DATA.COAFIN; /* Create macro variables VAL1 to VALnn. The ending range gets the value from macro variable last.*/ select distinct(br_sort) into: val1- :val%left(&last) from DATA.COAFIN; run; quit; 2. Macro and HTML code /*********************************************************************************************/ /* Create macro variable for the date in the html filenames. */ /* Returns APR2001 if job is run during MAY */ /* Create macro variable for the date on the analysis report. */ /* Returns APRIL 2001 if job is run during May */ /* Note : Change of Address details produced in the month following the Address Change */ /*********************************************************************************************/ data _null_; filedte=put(intnx('month',date(),-1),monyy7.); repd=trim(left(upcase(put(intnx('month',date(),-1),monname9.)))) ' ' (put(intnx('year',date(),-1),year4.)); call symput ('FDAT',filedte); call symput ('REPDATE',repd); run; %macro loopit; %do i = 1 %to &last; filename Agent "C:\OMPLC\Seugi 19\Change of Address\&FDAT &FDAT\COA_&&val&i &&val&i..(a)_&&fdat &&FDAT..html" ; filename Broker "C:\OMPLC\Seugi 19\Change of Address\&FDAT &FDAT\COA_&&val&i &&val&i..(b)_&&fdat &&FDAT..html" ; filename Orphan "C:\OMPLC\Seugi 19\Change of Address\&FDAT &FDAT\COA_&&val&i &&val&i..(o)_&&fdat &&FDAT..html" ; data _null_; set DATA.COAFIN; if i_type='a' and br_sort="&&val&i &&val&i" then file Agent; if i_type='b' and br_sort="&&val&i &&val&i" then file Broker; if i_type in (' ' 'O' 'D') and br_sort="&&val&i &&val&i" then file Orphan; where br_sort="&&val&i &&val&i"; /******************************************************************************************/ Sas processing /******************************************************************************************/ /* Set Up Header */ /******************************************************************************************/ put "<HTML>"; put "<HEAD>"; put '<img src="z:\program Files\Sas Institute\Sas\V8\Html\omlogo.gif"'; put '<BODY LINK="#0000ff">'; put '<TABLE BORDER CELLSPACING=1 bordercolor=black CELLPADDING=5 WIDTH=640>'; put '<TR><TD VALIGN="TOP" COLSPAN=3 BGCOLOR="lightgrey">'; Prepared by : Darryl Lawrence on 12 April 2001 Page 4 of 6 Old Mutual PLC, Cape Town South Africa

28 Rest of HTML code... put '</TABLE>'; put "<I><FONT SIZE=2><br>Note : Current value reflects TOTAL AMOUNT of cover for all Individual Life policies.</p></i></font></body>"; put "</HTML>"; put '<p style="page-break-after: always;">&#160</p>'; run; %end; %mend loopit; %loopit Prepared by : Darryl Lawrence on 12 April 2001 Page 5 of 6 Old Mutual PLC, Cape Town South Africa

29 The Future 1. Use AppDev Studio or Enterprise Guide to produce web output. 2. Store web output and images on web server. Users can then login via a secure network to retrieve their client information (Change of Address leads) Summary There are always better / different ways to do something in SAS. We applied the simplest method of producing HTML output as we do not currently use AppDev Studio or Enterprise Guide in our department. We had to implement ad application in a very short space of time (about 1 month) and had to take into account the software available as well as the users' knowledge base. Credits Thank you to Dirk Lombard of the Cape Town SAS office who assisted me with the HTML code and John Day of InfoActive ( who assisted me with the SAS macro code. Contact Details : Darryl Lawrence Old Mutual Personal Finance P o Box 66 Cape Town 8000 South Africa Phone : Fax : dlawrence@oldmutual.com SAS Resource Websites (SAS Homepage) (SAS Consultant Special Interest Group) Excellent SAS Tips and lots of SAS links. This site is owned and maintained by Charles Patridge (On-Line SAS resources) This site is owned and maintained by David Ward Prepared by : Darryl Lawrence on 12 April 2001 Page 6 of 6 Old Mutual PLC, Cape Town South Africa

Select Committee on Communications & Public Enterprises. Cost to Communicate. 28 March 2018

Select Committee on Communications & Public Enterprises. Cost to Communicate. 28 March 2018 Select Committee on Communications & Public Enterprises Cost to Communicate 28 March 208 Outline. MTN Who we are 2. MTN s response to reduce the cost to communicate 3. Corporate Social Investment 4. Conclusion

More information

Taking advantage of the SAS System on OS/390

Taking advantage of the SAS System on OS/390 Taking advantage of the SAS System on OS/390 Dave Crow Where I m from ---> Final: DUKE 77 UNC 75 The SAS System for OS/390! Getting started with Web Access! What s new in V8 and 8.1 of SAS! What s coming:

More information

From Manual to Automatic with Overdrive - Using SAS to Automate Report Generation Faron Kincheloe, Baylor University, Waco, TX

From Manual to Automatic with Overdrive - Using SAS to Automate Report Generation Faron Kincheloe, Baylor University, Waco, TX Paper 152-27 From Manual to Automatic with Overdrive - Using SAS to Automate Report Generation Faron Kincheloe, Baylor University, Waco, TX ABSTRACT This paper is a case study of how SAS products were

More information

Table of Contents 1. Introduction CSD Supplier Management Process Access the CSD site Register a new CSD account...

Table of Contents 1. Introduction CSD Supplier Management Process Access the CSD site Register a new CSD account... Table of Contents 1. Introduction... 2 2. CSD Supplier Management Process... 2 2.1. Access the CSD site... 3 2.2. Register a new CSD account... 3 2.3. Receive an activation email and OTP... 3 2.4. Activate

More information

SAS Scalable Performance Data Server 4.3

SAS Scalable Performance Data Server 4.3 Scalability Solution for SAS Dynamic Cluster Tables A SAS White Paper Table of Contents Introduction...1 Cluster Tables... 1 Dynamic Cluster Table Loading Benefits... 2 Commands for Creating and Undoing

More information

EG 4.1. PC-SAS users. for. I C T EG 4.1 for PC-SAS Users. Thursday - May 7 th, 2009

EG 4.1. PC-SAS users. for. I C T EG 4.1 for PC-SAS Users. Thursday - May 7 th, 2009 EG 4.1 for PC-SAS users Agenda What EG 4.1 is? EG 4.1 vs. PC-SAS. Why not to use EG 4.1? Why to use EG 4.1? What s next for EG? Conclusion. Questions. 2 What EG 4.1 is? SAS Enterprise SAS ships Guide Enterprise

More information

Lasso Your Business Users by Designing Information Pathways to Optimize Standardized Reporting in SAS Visual Analytics

Lasso Your Business Users by Designing Information Pathways to Optimize Standardized Reporting in SAS Visual Analytics Paper 2960-2015 Lasso Your Business Users by Designing Information Pathways to Optimize Standardized Reporting in SAS Visual Analytics ABSTRACT Stephen Overton, Zencos Consulting SAS Visual Analytics opens

More information

Integrating Large Datasets from Multiple Sources Calgary SAS Users Group (CSUG)

Integrating Large Datasets from Multiple Sources Calgary SAS Users Group (CSUG) Integrating Large Datasets from Multiple Sources Calgary SAS Users Group (CSUG) October 25, 2017 Hotel Le-Germain Outline About the AESO Large Datasets: AESO Context Usual Process Obtain data Connecting

More information

Highway Motor Policies at Lloyd s

Highway Motor Policies at Lloyd s at Lloyd s My name is Stephen Dunn and I am the Syndicate Statistician for Highway Motor Policies at Lloyd s. Highway is capitalised through the Lloyd s insurance market in London and is managed by the

More information

Nashua Investor Presentation Thursday 21 st July 2005

Nashua Investor Presentation Thursday 21 st July 2005 Nashua Investor Presentation Thursday 21 st July 2005 Agenda 1. Nashua/ Ricoh / Reunert relationship 2. AS400/ Nashua Franchise Network 3. Key Statistics 4. Marketing 5. Product Range 6. Market shares

More information

Strengthening telecommunications infrastructure for economic growth and security: A case for Zambia

Strengthening telecommunications infrastructure for economic growth and security: A case for Zambia Strengthening telecommunications infrastructure for economic growth and security: A case for Zambia By: Gertrude Mwangala Akapelwa Ehueni Board Chairperson ZICTA 1 Presentation Outline Introduction to

More information

Broadband for All Closing the infrastructure gap. Kobus Roux

Broadband for All Closing the infrastructure gap. Kobus Roux Broadband for All Closing the infrastructure gap Kobus Roux Overview Presentation outline: Why broadband? What gaps? Can it be quantified? Gap analysis Closing the gap: Fibre reach Where to start? How

More information

SAS Solutions for the Web: Static and Dynamic Alternatives Matthew Grover, S-Street Consulting, Inc.

SAS Solutions for the Web: Static and Dynamic Alternatives Matthew Grover, S-Street Consulting, Inc. SAS Solutions for the Web: Static and Dynamic Alternatives Matthew Grover, S-Street Consulting, Inc. Abstract This paper provides a detailed analysis of creating static and dynamic web content using the

More information

Nissan Merchandise Store - Manual https://nissan.sapplive.co.za

Nissan Merchandise Store - Manual https://nissan.sapplive.co.za Contents About Sapphire Logistics How to place an order with us Contact Information Payment Methods & Banking Details Support & Returns Reset Website Password Website Registration Request Retailer Information

More information

inistrator s Guide BUSINESS SERVICES by Gesa Credit Union

inistrator s Guide BUSINESS SERVICES by Gesa Credit Union ACH Ad Gesa@Work inistrator s Guide BUSINESS SERVICES by Gesa Credit Union Gesa@Work ACH Administrator s Guide Overview Introduction to ACH With Gesa s online banking service, Gesa@Work, your company will

More information

Creating Affordable ICT Services: USF Useage in South Africa

Creating Affordable ICT Services: USF Useage in South Africa Creating Affordable ICT Services: USF Useage in South Africa ITU-Intel Digital Transformation 09 September, 2016 Rabat, Morocco Makhotso Moiloa, Executive Manager: Operations About Us USAASA (3a) USAF

More information

ABSTRACT INTRODUCTION MACRO. Paper RF

ABSTRACT INTRODUCTION MACRO. Paper RF Paper RF-08-2014 Burst Reporting With the Help of PROC SQL Dan Sturgeon, Priority Health, Grand Rapids, Michigan Erica Goodrich, Priority Health, Grand Rapids, Michigan ABSTRACT Many SAS programmers need

More information

A Way to Work with Invoice Files in SAS

A Way to Work with Invoice Files in SAS A Way to Work with Invoice Files in SAS Anjan Matlapudi and J. Daniel Knapp Pharmacy Informatics, PerformRx, The Next Generation PBM, 200 Stevens Drive, Philadelphia, PA 19113 ABSTRACT This paper illustrates

More information

SAS/Warehouse Administrator Usage and Enhancements Terry Lewis, SAS Institute Inc., Cary, NC

SAS/Warehouse Administrator Usage and Enhancements Terry Lewis, SAS Institute Inc., Cary, NC SAS/Warehouse Administrator Usage and Enhancements Terry Lewis, SAS Institute Inc., Cary, NC ABSTRACT SAS/Warehouse Administrator software makes it easier to build, maintain, and access data warehouses

More information

Introduction to FibreCo Telecommunications. SATA 4th NGN Conference November 2014

Introduction to FibreCo Telecommunications. SATA 4th NGN Conference November 2014 Introduction to FibreCo Telecommunications SATA 4th NGN Conference November 2014 Introduction FibreCo was established by 3 leading South African ICT players to unlock the economics of fibre ownership within

More information

Electricity Forecasting Full Circle

Electricity Forecasting Full Circle Electricity Forecasting Full Circle o Database Creation o Libname Functionality with Excel o VBA Interfacing Allows analysts to develop procedural prototypes By: Kyle Carmichael Disclaimer The entire presentation

More information

DATA ENHANCEMENT DATA SETS

DATA ENHANCEMENT DATA SETS BUSINESS DATA SETS The Dun & Bradstreet UK Marketing File (UKMF) consists of over 3.4 million actively trading organisations, ranging from small businesses and shops through to blue-chip corporations.

More information

SAS Online Training: Course contents: Agenda:

SAS Online Training: Course contents: Agenda: SAS Online Training: Course contents: Agenda: (1) Base SAS (6) Clinical SAS Online Training with Real time Projects (2) Advance SAS (7) Financial SAS Training Real time Projects (3) SQL (8) CV preparation

More information

A simplistic approach to Grid Computing Edmonton SAS Users Group. April 5, 2016 Bill Benson, Enterprise Data Scienc ATB Financial

A simplistic approach to Grid Computing Edmonton SAS Users Group. April 5, 2016 Bill Benson, Enterprise Data Scienc ATB Financial A simplistic approach to Grid Computing Edmonton SAS Users Group April 5, 2016 Bill Benson, Enterprise Data Scienc ATB Financial Grid Computing The Basics Points to Cover: Benefits of Grid Computing Server

More information

1 ON ALBERT BRAND NEW DEVELOPMENT, WOODSTOCK HEAD OFFICE CITY OFFICE A visionary company with decades of experience

1 ON ALBERT BRAND NEW DEVELOPMENT, WOODSTOCK HEAD OFFICE CITY OFFICE A visionary company with decades of experience 1 ON ALBERT BRAND NEW DEVELOPMENT, WOODSTOCK CITY OFFICE 021 422 2526 CONTENTS PAGE 1: PAGE 2: PAGE 3: PAGE 4-20: COMPANY PARTICULARS SALES AGENTS THE DEVELOPERS FINISHING SCHEDULE COMPANY PARTICULARS

More information

Guidance In Situ Pre-Approval Controlled Functions (PCFs): Confirmation of Due Diligence undertaken

Guidance In Situ Pre-Approval Controlled Functions (PCFs): Confirmation of Due Diligence undertaken 2012 Guidance In Situ Pre-Approval Controlled Functions (PCFs): Confirmation of Due Diligence undertaken Table of Contents Contents Table of Contents... 2 Section 1: Introduction... 3 Purpose of this Guidance...

More information

Kenya at the tipping Point?

Kenya at the tipping Point? Kenya at the tipping Point? with a special focus on the ICT revolution and Mobile Money World Bank Economic Team Presentation by Jane Kiringai Nairobi December 2, 2010 Main messages 1 2 Kenya may now be

More information

Ten Innovative Financial Services Applications Powered by Data Virtualization

Ten Innovative Financial Services Applications Powered by Data Virtualization Ten Innovative Financial Services Applications Powered by Data Virtualization DATA IS THE NEW ALPHA In an industry driven to deliver alpha, where might financial services firms find opportunities when

More information

Sage 100 Evolution Version 8.00 What s New?

Sage 100 Evolution Version 8.00 What s New? Sage 100 Evolution Version 8.00 What s New? At Sage 100 Evolution we continuously invest in research and development to ensure that you are kept up to date with the latest and most cutting-edge business

More information

1 ON ALBERT BRAND NEW DEVELOPMENT, WOODSTOCK HEAD OFFICE CITY OFFICE A visionary company with decades of experience

1 ON ALBERT BRAND NEW DEVELOPMENT, WOODSTOCK HEAD OFFICE CITY OFFICE A visionary company with decades of experience 1 ON ALBERT BRAND NEW DEVELOPMENT, WOODSTOCK HEAD OFFICE 021 433 2580 CITY OFFICE 021 422 2526 CONTENTS PAGE 1: PAGE 2: PAGE 3: PAGE 4-6: COMPANY PARTICULARS SALES AGENTS THE DEVELOPERS PRICE LIST HEAD

More information

Table of contents. 01 Adding a parameters sheet to the Report Designer How to perform a check test on a database 8

Table of contents. 01 Adding a parameters sheet to the Report Designer How to perform a check test on a database 8 Table of contents 01 Adding a parameters sheet to the Report Designer 3 02 How to perform a check test on a database 8 03 How to automate the calculation of your data 10 04 How to schedule your reports

More information

Considerations of Analysis of Healthcare Claims Data

Considerations of Analysis of Healthcare Claims Data Considerations of Analysis of Healthcare Claims Data ABSTRACT Healthcare related data is estimated to grow exponentially over the next few years, especially with the growing adaptation of electronic medical

More information

Enterprise Client Software for the Windows Platform

Enterprise Client Software for the Windows Platform Paper 154 Enterprise Client Software for the Windows Platform Gail Kramer, SAS Institute Inc., Cary, NC Carol Rigsbee, SAS Institute Inc., Cary, NC John Toebes, SAS Institute Inc., Cary, NC Jeff Polzin,

More information

estatement STUDIES USERS GUIDE JOIN. ENGAGE. LEAD. Statement Studies Unit Enterprise Risk and Product Management

estatement STUDIES USERS GUIDE JOIN. ENGAGE. LEAD. Statement Studies Unit Enterprise Risk and Product Management estatement STUDIES USERS GUIDE Statement Studies Unit Enterprise Risk and Product Management JOIN. ENGAGE. LEAD. E nt e rp r is e Risk C r ed it Risk Ma rk et Risk O p er a t i ona l Risk Regu la tory

More information

Let There Be Highlights: Data-driven Cell and Row Highlights in %TAB2HTM and %DS2HTM Output

Let There Be Highlights: Data-driven Cell and Row Highlights in %TAB2HTM and %DS2HTM Output Let There Be Highlights: Data-driven Cell and Row Highlights in %TAB2HTM and %DS2HTM Output Introduction The SAS System for Information Delivery provides powerful and flexible web publishing tools (SAS

More information

Administration and Data Retention. Best Practices for Systems Management

Administration and Data Retention. Best Practices for Systems Management Administration and Data Retention Best Practices for Systems Management Agenda Understanding the Context for IT Management Concepts for Managing Key IT Objectives Aptify and IT Management Best Practices

More information

What Is SAS? CHAPTER 1 Essential Concepts of Base SAS Software

What Is SAS? CHAPTER 1 Essential Concepts of Base SAS Software 3 CHAPTER 1 Essential Concepts of Base SAS Software What Is SAS? 3 Overview of Base SAS Software 4 Components of the SAS Language 4 SAS Files 4 SAS Data Sets 5 External Files 5 Database Management System

More information

Certkiller.A QA

Certkiller.A QA Certkiller.A00-260.70.QA Number: A00-260 Passing Score: 800 Time Limit: 120 min File Version: 3.3 It is evident that study guide material is a victorious and is on the top in the exam tools market and

More information

Minutes of the Board Meeting

Minutes of the Board Meeting Minutes of the Board Meeting Date 30 August 2017 Online Web: https://www.gotomeet.me/sata_meetings Mobile App: download and install gotomeeting from appstore (apple phone) or playstore (android phone),

More information

Using SAS-DataFlux technologies to implement a dedupe key on a retail customer warehouse IN A BANK

Using SAS-DataFlux technologies to implement a dedupe key on a retail customer warehouse IN A BANK Using SAS-DataFlux technologies to implement a dedupe key on a retail customer warehouse IN A BANK Background One of the four largest banks in South Africa Branded Businesses: Nedbank, Old Mutual Bank,

More information

2997 Yarmouth Greenway Drive, Madison, WI Phone: (608) Web:

2997 Yarmouth Greenway Drive, Madison, WI Phone: (608) Web: Getting the Most Out of SAS Enterprise Guide 2997 Yarmouth Greenway Drive, Madison, WI 53711 Phone: (608) 278-9964 Web: www.sys-seminar.com 1 Questions, Comments Technical Difficulties: Call 1-800-263-6317

More information

IBM MERVA ESA Version 4 and MERVA ESA Components Version 4 Begin a New Era for Financial Message Processing

IBM MERVA ESA Version 4 and MERVA ESA Components Version 4 Begin a New Era for Financial Message Processing Software Announcement May 4, 1999 IBM MERVA ESA Version 4 and MERVA ESA Components Version 4 Begin a New Era for Financial Message Processing Overview A Strategic Solution for Connecting Financial Institutions

More information

How to Create a PayPal Account

How to Create a PayPal Account How to Create a PayPal Account Step 1 Go to PayPal.com In this video we are going to be setting up a U.S. based PayPal account. Here I can click the sign up for free here, or I can click at the top right.

More information

Improving Your Relationship with SAS Enterprise Guide Jennifer Bjurstrom, SAS Institute Inc.

Improving Your Relationship with SAS Enterprise Guide Jennifer Bjurstrom, SAS Institute Inc. ABSTRACT Paper BI06-2013 Improving Your Relationship with SAS Enterprise Guide Jennifer Bjurstrom, SAS Institute Inc. SAS Enterprise Guide has proven to be a very beneficial tool for both novice and experienced

More information

COORDINATED BORDER MANAGEMENT in Southern Africa. May 16, 2013 WCO IT Conference Godwin Punungwe Director, Trade Facilitation

COORDINATED BORDER MANAGEMENT in Southern Africa. May 16, 2013 WCO IT Conference Godwin Punungwe Director, Trade Facilitation COORDINATED BORDER MANAGEMENT in Southern Africa May 16, 2013 WCO IT Conference Godwin Punungwe Director, Trade Facilitation Presentation Outline USAID SA Goal, Problems and Solutions Trade Hub Approach

More information

SAS Macro Dynamics: from Simple Basics to Powerful Invocations Rick Andrews, Office of Research, Development, and Information, Baltimore, MD

SAS Macro Dynamics: from Simple Basics to Powerful Invocations Rick Andrews, Office of Research, Development, and Information, Baltimore, MD ABSTRACT CODERS CORNER SAS Macro Dynamics: from Simple Basics to Powerful Invocations Rick Andrews, Office of Research, Development, and Information, Baltimore, MD The SAS Macro Facility offers a mechanism

More information

Financial Reporting Using Microsoft Excel. Presented By: Jim Lee

Financial Reporting Using Microsoft Excel. Presented By: Jim Lee Financial Reporting Using Microsoft Excel Presented By: Jim Lee Table of Contents Financial Reporting Overview... 4 Reporting Periods... 4 Microsoft Excel... 4 SedonaOffice General Ledger Structure...

More information

SAS System Powers Web Measurement Solution at U S WEST

SAS System Powers Web Measurement Solution at U S WEST SAS System Powers Web Measurement Solution at U S WEST Bob Romero, U S WEST Communications, Technical Expert - SAS and Data Analysis Dale Hamilton, U S WEST Communications, Capacity Provisioning Process

More information

Creating a Departmental Standard SAS Enterprise Guide Template

Creating a Departmental Standard SAS Enterprise Guide Template Paper 1288-2017 Creating a Departmental Standard SAS Enterprise Guide Template ABSTRACT Amanda Pasch and Chris Koppenhafer, Kaiser Permanente This paper describes an ongoing effort to standardize and simplify

More information

OASUS Spring 2014 Questions and Answers

OASUS Spring 2014 Questions and Answers OASUS Spring 2014 Questions and Answers The following answers are provided to the benefit of the OASUS Users Group and are not meant to replace SAS Technical Support. Also, the Enterprise Guide project

More information

An Introduction to SAS Macros

An Introduction to SAS Macros An Introduction to SAS Macros Expanded token SAS Program (Input Stack) SAS Wordscanner (Tokenization) Non-Macro (Tokens) SAS Compiler % and & Triggers Macro Facility Steven First, President 2997 Yarmouth

More information

WEALTH INTERACTIVE USER GUIDE

WEALTH INTERACTIVE USER GUIDE WEALTH INTERACTIVE USER GUIDE ADVISER SET UP USERS IMPORTANT Master Users and Access Managers should regularly review who has access to Wealth Interactive within the firm, and the authority levels they

More information

Fly over, drill down, and explore

Fly over, drill down, and explore ABSTRACT Paper 79-2013 Fly over, drill down, and explore Suzanne Brown, HealthInsight New Mexico, Albuquerque, NM Data often have a spatial dimension, whether it is a five-year financial plan and annual

More information

Airline Control System V2.3 delivers a new base for exploiting 64-bit addressing

Airline Control System V2.3 delivers a new base for exploiting 64-bit addressing Software Announcement November 11, 2003 Airline Control System V2.3 delivers a new base for exploiting 64-bit addressing Overview Airline Control System (ALCS) is a control monitor designed to run in an

More information

THASITHA TECHNOLOGIES 14 th Avenue Office Constantia Office Park 275 Tortoise Road Constantia Park Johannesburg SOUTH AFRICA 9459

THASITHA TECHNOLOGIES 14 th Avenue Office Constantia Office Park 275 Tortoise Road Constantia Park Johannesburg SOUTH AFRICA 9459 YOUR ICT SOLUTIONS PARTNER Business Profile THASITHA TECHNOLOGIES 14 th Avenue Office Constantia Office Park 275 Tortoise Road Constantia Park Johannesburg SOUTH AFRICA 9459 Telephone: +2711 246 1668 Helpdesk:

More information

Guide Users along Information Pathways and Surf through the Data

Guide Users along Information Pathways and Surf through the Data Guide Users along Information Pathways and Surf through the Data Stephen Overton, Overton Technologies, LLC, Raleigh, NC ABSTRACT Business information can be consumed many ways using the SAS Enterprise

More information

Financing Data Centres

Financing Data Centres Financing Data Centres Data Centre strategies Presented by: John Wilson Date: 20 March 2012 Security may be required. Product fees may apply. Today s Agenda Funder s View on the Marketplace Types of Finance

More information

CONTENT PAGE # Internet Banking: Getting Started Preparing for the Upgrade 3 Changes You Must Be Aware Of 4 New functionality 4 On-line Limits 5

CONTENT PAGE # Internet Banking: Getting Started Preparing for the Upgrade 3 Changes You Must Be Aware Of 4 New functionality 4 On-line Limits 5 Table of content CONTENT PAGE # Internet Banking: Getting Started Preparing for the Upgrade 3 Changes You Must Be Aware Of 4 New functionality 4 On-line Limits 5 System Functions Accounts and Balances

More information

Internet/Intranet, the Web & SAS

Internet/Intranet, the Web & SAS Dynamic Behavior from Static Web Applications Ted Durie, SAS, Overland Park, KS ABSTRACT Many Web applications, because of the infinite query combinations possible, require dynamic Web solutions. This

More information

Building a Corporate Warehouse Management and Deployment System

Building a Corporate Warehouse Management and Deployment System Building a Corporate Warehouse Management and Deployment System Chris Lane, Lane Systems Group Ltd., Whitehorse, Yukon (CANADA) ABSTRACT Managing data warehouses in a complex environment has its challenges.

More information

Reading Sample. Information Modeling Concepts. Contents. Index. The Authors. First-hand knowledge.

Reading Sample. Information Modeling Concepts. Contents. Index. The Authors.   First-hand knowledge. First-hand knowledge. Reading Sample In this reading sample, we ll use to show you how the book is structured to prepare you for the exam. provides details on the core modeling concepts you will find throughout

More information

The Full Campaign Manager gives you the ability to target your client bank by creating your own sales and marketing campaigns.

The Full Campaign Manager gives you the ability to target your client bank by creating your own sales and marketing campaigns. Introduction The Full Campaign Manager gives you the ability to target your client bank by creating your own sales and marketing campaigns. You can run queries on all of your clients to a broad or specific

More information

Top Coding Tips. Neil Merchant Technical Specialist - SAS

Top Coding Tips. Neil Merchant Technical Specialist - SAS Top Coding Tips Neil Merchant Technical Specialist - SAS Bio Work in the ANSWERS team at SAS o Analytics as a Service and Visual Analytics Try before you buy SAS user for 12 years obase SAS and O/S integration

More information

Lighting Africa Catalyzing Markets for Modern Off-Grid Energy. November 2017

Lighting Africa Catalyzing Markets for Modern Off-Grid Energy. November 2017 Lighting Africa Catalyzing Markets for Modern Off-Grid Energy November 2017 About 1.2 billion people globally, 600 million in Africa live without access to the electricity grid. 2 2 The vast majority of

More information

Purchase this book at

Purchase this book at Chapter 2 2 Creating Simple Stored Processes BASE SAS gives programmers the exponential ability to query and report about data from their desktops; however, this limitation means that a user can access

More information

I just called to say Hello

I just called to say Hello I just called to say Hello Could mean money in your pocket!!! Have we got you thinking? To switch people to THE LOWEST PRE-PAID CALL RATE, Especially when you can make a fortune for yourself in the process

More information

Abstract. Background. Summary of method. Using SAS to determine file and space usage in UNIX. Title: Mike Montgomery [MIS Manager, MTN (South Africa)]

Abstract. Background. Summary of method. Using SAS to determine file and space usage in UNIX. Title: Mike Montgomery [MIS Manager, MTN (South Africa)] Title: Author: Using SAS to determine file and space usage in UNIX Mike Montgomery [MIS Manager, MTN (South Africa)] Abstract The paper will show tools developed to manage a proliferation of SAS files

More information

1. Introduction Adding Users... 4 Editing A Users Details... 5 Deleting Users Configuring network environment as aliases

1. Introduction Adding Users... 4 Editing A Users Details... 5 Deleting Users Configuring network environment as aliases 1. Introduction... 3 2. Adding Users... 4 Editing A Users Details... 5 Deleting Users... 5 3. Configuring network environment as aliases... 6 4. Adding Categories... 7 5. Editing Categories... 8 6. Adding

More information

Synthesys for Systems Integrators

Synthesys for Systems Integrators Synthesys for Systems Integrators Overview This document is for anyone who wishes to extend Synthesys, or integrate with it. It assumes that the reader had read the companion document 'Synthesys Technical

More information

The CPE hour is equal to 50 minutes. Credit is given in whole hours only; any fractional hours must be rounded down.

The CPE hour is equal to 50 minutes. Credit is given in whole hours only; any fractional hours must be rounded down. Division of Service Operations Bureau of Education & Testing Continuing Education Correspondence 1940 North Monroe Street Tallahassee, Florida 32399-1046 Phone: 850.921.8582 Fax: 850.922.2316 Ken Lawson,

More information

Client Server System for e-services Access Using Mobile Communications Networks

Client Server System for e-services Access Using Mobile Communications Networks Client Server System for e-services Access Using Mobile Communications Networks Eugen Pop, Mihai Barbos, and Razvan Lupu Abstract The client server systems using mobile communications networks for data

More information

SAS Enterprise Miner : What does the future hold?

SAS Enterprise Miner : What does the future hold? SAS Enterprise Miner : What does the future hold? David Duling EM Development Director SAS Inc. Sascha Schubert Product Manager Data Mining SAS International Topics for Discussion: EM 4.2/SAS 9.0 AF/SCL

More information

Data Presentation ABSTRACT

Data Presentation ABSTRACT ODS HTML Meets Real World Requirements Lisa Eckler, Lisa Eckler Consulting Inc., Toronto, ON Robert W. Simmonds, TD Bank Financial Group, Toronto, ON ABSTRACT This paper describes a customized information

More information

QMF Analytics v11: Not Your Green Screen QMF

QMF Analytics v11: Not Your Green Screen QMF QMF Analytics v11: Not Your Green Screen QMF Central Ohio Db2 Users Group CODUG December 5, 2017 Roger Midgette The Fillmore Group Frank Fillmore The Fillmore Group Doug Anderson Rocket Software roger.midgette@thefillmoregroup.com

More information

Kulani Technical Services

Kulani Technical Services We care for your Air" Kulani Technical Services cc Reg.no: 2007/118516/23 Vat No: 4670253667 16 Ysterhout Drive Randpark Ridge Ext 1 Randburg 2155 South Africa Tel: +27 (0) 11 791 7620 Fax: +27 (0) 86

More information

Opening up new opportunities through Cross-selling and Upselling. GMC Software Technology

Opening up new opportunities through Cross-selling and Upselling. GMC Software Technology Opening up new opportunities through Cross-selling and Upselling GMC Software Technology History of VDP offerings Color Full Variable Images and text Mail/Email/ WEB Dynamic Online Statements B&W 2 Past

More information

Lais Lona Business Development Africa - SunFunder

Lais Lona Business Development Africa - SunFunder Lais Lona Business Development Africa - SunFunder Financing the off-grid sector: An overview of sector growth, challenges, and opportunities Agenda Introduction: GOGLA & SunFunder? Accelerating the growth

More information

Check the Repeat branch checkbox to automatically copy the branch used previously to the next transaction line.

Check the Repeat branch checkbox to automatically copy the branch used previously to the next transaction line. Repeat Branch Print Transactions GL Code Details Inv No Chq No Debit Credit Foreign Check the Repeat branch checkbox to automatically copy the branch used previously to the next transaction line. Check

More information

SAS Macro Dynamics - From Simple Basics to Powerful Invocations Rick Andrews, Office of the Actuary, CMS, Baltimore, MD

SAS Macro Dynamics - From Simple Basics to Powerful Invocations Rick Andrews, Office of the Actuary, CMS, Baltimore, MD Paper BB-7 SAS Macro Dynamics - From Simple Basics to Powerful Invocations Rick Andrews, Office of the Actuary, CMS, Baltimore, MD ABSTRACT The SAS Macro Facility offers a mechanism for expanding and customizing

More information

Authors: Haidong Tang (Don) Xiao Ji (Samuel) Presenter: Haidong Tang (Don) June 2002

Authors: Haidong Tang (Don) Xiao Ji (Samuel) Presenter: Haidong Tang (Don) June 2002 Tracking your data warehouse using SAS Authors: Haidong Tang (Don) Xiao Ji (Samuel) Presenter: Haidong Tang (Don) June 2002 Agenda! Introduction of Shanghai Baosight Software Co., Ltd.! Why track your

More information

INTRODUCTION... 2 FEATURES OF DARWIN... 4 SPECIAL FEATURES OF DARWIN LATEST FEATURES OF DARWIN STRENGTHS & LIMITATIONS OF DARWIN...

INTRODUCTION... 2 FEATURES OF DARWIN... 4 SPECIAL FEATURES OF DARWIN LATEST FEATURES OF DARWIN STRENGTHS & LIMITATIONS OF DARWIN... INTRODUCTION... 2 WHAT IS DATA MINING?... 2 HOW TO ACHIEVE DATA MINING... 2 THE ROLE OF DARWIN... 3 FEATURES OF DARWIN... 4 USER FRIENDLY... 4 SCALABILITY... 6 VISUALIZATION... 8 FUNCTIONALITY... 10 Data

More information

ACQUISITION OF MWR INFOSECURITY ACCELERATED REVENUE GROWTH F-Secure Q3 / 2018

ACQUISITION OF MWR INFOSECURITY ACCELERATED REVENUE GROWTH F-Secure Q3 / 2018 ACQUISITION OF MWR INFOSECURITY ACCELERATED REVENUE GROWTH F-Secure Q3 / 2018 1 AGENDA Key takeaways from Q3 Key figures Business updates Outlook Financials Supplementary material 2 KEY TAKEAWAYS FROM

More information

Connect Applications and Services Together with the Enterprise Service Bus

Connect Applications and Services Together with the Enterprise Service Bus Connect s and Services Together with the On Demand Insurance Business Problems 1. We lose customers because we process new policy applications too slowly. 2. Our claims processing is time-consuming and

More information

Mergers & Acquisition in an Evolving and Consolidating Industry. CoBank Rob West, SVP. May 12, 2016

Mergers & Acquisition in an Evolving and Consolidating Industry. CoBank Rob West, SVP. May 12, 2016 Mergers & Acquisition in an Evolving and Consolidating Industry CoBank Rob West, SVP May 12, 2016 CoBank at a Glance A broad-based cooperative financial services organization serving vital industries across

More information

PerTrac Analytical Platform SQL Version Network Setup Guide (Version 7.2)

PerTrac Analytical Platform SQL Version Network Setup Guide (Version 7.2) PerTrac Analytical Platform SQL Version Network Setup Guide (Version 7.2) Table of Contents Section 1: Installation Overview Section 2: Network Layouts Section 3: Installing the PerTrac License Server

More information

TIPS FROM THE TRENCHES

TIPS FROM THE TRENCHES TIPS FROM THE TRENCHES Christopher Bost MDRC SAS Users Group October 1, 2008 Recent user questions 2 How can I print long character values? How can I EXPORT formatted values to Excel? How can I check for

More information

Session 3:Funding and Financing of Air Cargo Infrastructure and Mobile Equipment. June 27, 2017

Session 3:Funding and Financing of Air Cargo Infrastructure and Mobile Equipment. June 27, 2017 Session 3:Funding and Financing of Air Cargo Infrastructure and Mobile Equipment June 27, 2017 Introduction on Infrastructure Closing the infrastructure deficit is vital for Africa s economic prosperity

More information

SAS Standard Reporting Application For e-publication Of MS Office Documents Simon Pickles, Fidelity Investments ltd

SAS Standard Reporting Application For e-publication Of MS Office Documents Simon Pickles, Fidelity Investments ltd SAS Standard Reporting Application For e-publication Of MS Office Documents Simon Pickles, Fidelity Investments ltd Abstract A important component of the Data Warehouse is the production and distribution

More information

Government Printing Works. egazette Customer Information Pack September 2014

Government Printing Works. egazette Customer Information Pack September 2014 Government Printing Works egazette Customer Information Pack September 2014 Topics The Public Web Registration Process Why it is important to register Where to find the new forms Submission Timetable New

More information

Using DDE with Microsoft Excel and SAS to Collect Data from Hundreds of Users

Using DDE with Microsoft Excel and SAS to Collect Data from Hundreds of Users Using DDE with Microsoft Excel and SAS to Collect Data from Hundreds of Users Russell Denslow and Yan Li Sodexho Marriott Services, Orlando, FL ABSTRACT A process is demonstrated in this paper to automatically

More information

PharmaSUG Paper PO12

PharmaSUG Paper PO12 PharmaSUG 2015 - Paper PO12 ABSTRACT Utilizing SAS for Cross-Report Verification in a Clinical Trials Setting Daniel Szydlo, Fred Hutchinson Cancer Research Center, Seattle, WA Iraj Mohebalian, Fred Hutchinson

More information

Key Largo Wastewater Treatment District Board of Commissioners Meeting Agenda Item Summary

Key Largo Wastewater Treatment District Board of Commissioners Meeting Agenda Item Summary Key Largo Wastewater Treatment District Board of Commissioners Meeting Agenda Item Summary Meeting Date: January 22, 2019 Agenda Item Number: Agenda Item Type: Agenda Item Scope: Recommended Action: Information

More information

Making your Application Social with the Chatter API

Making your Application Social with the Chatter API Making your Application Social with the Chatter API Logan Henriquez Product Manager @loganh Quinton Wall Developer Evangelist @quintonwall Safe Harbor Safe harbor statement under the Private Securities

More information

Intelligent Enterprise meets Science of Where. Anand Raisinghani Head Platform & Data Management SAP India 10 September, 2018

Intelligent Enterprise meets Science of Where. Anand Raisinghani Head Platform & Data Management SAP India 10 September, 2018 Intelligent Enterprise meets Science of Where Anand Raisinghani Head Platform & Data Management SAP India 10 September, 2018 Value The Esri & SAP journey Customer Impact Innovation Track Record Customer

More information

COMPUTER SCHOOL. Internet. Internet Courses. Work anywhere in the world. Build your future the INTEC way

COMPUTER SCHOOL. Internet. Internet Courses. Work anywhere in the world. Build your future the INTEC way COMPUTER SCHOOL Internet Internet Courses Work anywhere in the world Build your future the INTEC way Internet Courses Launch your career the INTEC way! We are living in the Information age and perhaps

More information

Good Practice Guide No 8. An Introduction to Spreadsheets for Finance

Good Practice Guide No 8. An Introduction to Spreadsheets for Finance Good Practice Guide No 8 An Introduction to Spreadsheets for Finance WYCAS provides a range of specialist services designed to meet the needs of the third sector One to one support and training Preparation

More information

Meltem Özturan misprivate.boun.edu.tr/ozturan/mis515

Meltem Özturan misprivate.boun.edu.tr/ozturan/mis515 Meltem Özturan misprivate.boun.edu.tr/ozturan/mis515 1 2 1 Selecting the Best Alternative Major Activities in the Analysis Phase Gather information Define system requirements Prototype for feasibility

More information

Realize the Promise of TechnologyTM

Realize the Promise of TechnologyTM Realize the Promise of TechnologyTM WHO WE ARE Aptec, an Ingram Micro company, is the Middle East, Turkey and Africa s largest technology Value-Added distributor and a leading technology sales, marketing

More information

Financial Services Company Improves Communication with Cisco Unified Communications

Financial Services Company Improves Communication with Cisco Unified Communications Customer Case Study Financial Services Company Improves Communication with Cisco Unified Communications Beneficial Financial Group improved call center responsiveness and agent productivity, simultaneously

More information

IBM Unica Distributed Marketing Version Publication Date: June 7, Administrator's Guide

IBM Unica Distributed Marketing Version Publication Date: June 7, Administrator's Guide IBM Unica Distributed Marketing Version 8.5.0 Publication Date: June 7, 2011 Administrator's Guide Copyright Copyright IBM 2011 IBM Corporation Reservoir Place North 170 Tracer Lane Waltham, MA 02451-1379

More information