A Microsoft Access Based System, Using SAS as a Background Number Cruncher David Kiasi, Applications Alternatives, Upper Marlboro, MD

Size: px
Start display at page:

Download "A Microsoft Access Based System, Using SAS as a Background Number Cruncher David Kiasi, Applications Alternatives, Upper Marlboro, MD"

Transcription

1 AD006 A Microsoft Access Based System, Using SAS as a Background Number Cruncher David Kiasi, Applications Alternatives, Upper Marlboro, MD ABSTRACT In Access based systems, using Visual Basic for Applications (VBA) to perform intensive number crunching is cumbersome and slow. Using ODBC, I have managed to use SAS as a background processing tool to perform these intricate calculations quickly. Also, the development time with SAS is far less than it would be with VBA for this use. In this application SAS works in the background and never interfaces directly with the user. REASONS FOR USING THE MICROSOFT ACCESS / SAS HYBRID What are some of the reasons why one would use this setup? SAS is superior to most software packages with regard to number crunching. Talk to any statistician and many will say that SAS is the application development environment of choice when it comes to performing statistical calculations. You already have a Microsoft Access system and want to add complex reports. Your organization is made up of SAS specialists, not VBA specialists. Because the algorithms that the reporting is based on are complex in nature, it would be better to have this high level of code be in a language that can be maintained by other staff. Your organization has not invested, staff and software wise, significantly in SAS A/F. Microsoft Access, however, is a user friendly tool that allows users to quickly develop an interactive form dialog that can handle many typical functions. Also, it is much more affordable. In the labor market, unlike Visual Basic, there are a number of casual Microsoft Access users. WHAT STEPS THE USER MUST GO THROUGH TO PROCESS OUTPUT USING THIS SET-UP So what do you need to do to get this to work? First and foremost, your SAS installation must be able to support ODBC. SAS Learning Edition does not support ODBC. A Microsoft Access Form must be developed that invokes the Microsoft Access Macro that produces the report. A Microsoft Access Macro must be developed to execute each step that is used to process the report. Microsoft Access modules must be created to ensure that each step in the process is done in order. A Microsoft Access Report object must be created to produce the report from a Microsoft Access table created from the SAS file. The SAS code must use a LIBNAME statement to link to the Access data base. EXAMPLE SYSTEM The example used in this paper is Applications Alternatives own Customer Satisfaction Survey System. Within Microsoft Access, we run a SAS program that uses parameters from the Microsoft Access form. This program uses PROC MEANS to compute the Standard Error, so that a significant difference of the percent satisfied over time periods can be calculated. The output dataset produced will be imported back into Microsoft Access, enabling the user to have instant access to his/her results. SAS Version 8.2 and Microsoft Access XP (2002) is used. 1

2 CREATING THE FORM The following is the Microsoft Access Form used to process the report: When we click, Event Procedure, on the window, the following VBA code is shown: Private Sub Command24_Click() On Error GoTo Err_Command19_Click DoCmd.RunMacro "Custsat" Exit_Command24_Click: Exit Sub Err_Command24_Click: MsgBox Err.Description Resume Exit_Command24_Click End Sub This simple code, which simply runs one Macro, can be generated using a Microsoft Access Wizard, where the error processing code, shown above, is automatically generated. DEVELOPING THE MICROSOFT ACCESS MACRO The button, Create the Report, is the one used to produce the report in our example. In Microsoft Access, we must get into design mode and click this button. Then, we choose the Properties window and, within it, display the Event window. We are running the Macro with a click to the button on the Form, so we are using the, On Click, action on the Event Window. The following is the Microsoft Access Macro that processes the report. Details will be explained as I go through the specific steps, below: 2

3 NO NEED TO CREATE A MICROSOFT ACCESS DATA SOURCE Using a SAS LIBNAME statement that links to the Microsoft Access database in the SAS version 8 program eliminates the need to create a Microsoft Access Data Source. However, you may find that your Microsoft Access ODBC driver is not working correctly. At your work site, you may find that on one PC, your application works fine but on another one that looks as if its configured the same on the surface, does not. You will need help with your system support staff to solve this problem if it comes up. DELETING THE EXISTING REPORT TABLE WITH THE MICROSOFT ACCESS MACRO The Microsoft Access report object reads a Microsoft Access table that is created by the SAS program. It permanently resides in the Microsoft Access database. The table is replaced each time a report is processed. If, however, there is a problem that prevents this table from being replaced, the report may use the previous table, which shows outdated information. To prevent this, the Microsoft Access Macro deletes this table before anything else is done. This way, the user never inadvertently produces a report from old results. This is the first step in the Microsoft Access Macro used in the example. THE SAS PROGRAM The way to run a SAS program from Microsoft Access is to run it in batch mode. To do this, make a copy of the sasv8.cfg file calling it csrun.cfg with lines added that run the program. The lines added to the end of the configuration file are as follows: -sysin c:\marketing\custsat.sas -log C:\marketing\custsat.log This new configuration file will be executed by a, Run App, action from the Microsoft Access Macro. In the command line field, the following has been entered: C:\program files\sas institute\sasv8\sas.exe -config c:\marketing\csrun.cfg One can get around the use of the CFG file but the universality of your application may be jeopardized. MICROSOFT ACCESS MODULES TO CONTROL EXECUTION One of the problems that one encounters developing such an application is how to prevent the Microsoft Access Macro from continuing to execute while the batch SAS program is running. The solution is to develop one or more Microsoft Access Modules that force the Macro to wait until the SAS program is finished. Using the, Run Code, statement, the first module is shown below: Public Function Waiting() As Boolean Dim Start As Variant Dim dif As Variant Start = Time Do DoEvents dif = DateDiff("s", Start, Time) Loop Until dif > 10 Waiting = True End Function It halts the Macro for 10 seconds to give the batch SAS program enough time to be loaded. The second Module reads the display, waiting for the batch SAS window to disappear from the screen before allowing the Macro to continue to execute: Option Compare Database Option Explicit Declare Function FindWindowEx& Lib "user32" Alias "FindWindowExA" (ByVal hwndparent As Long, ByVal hwndchildafter As Long, ByVal lpclassname As String, ByVal lpwindowname As String) Public Function WaitUntil() As Boolean Dim lresult As Long Do DoEvents lresult = FindWindowEx(0, 0, vbnullstring, "BATCH SAS") Loop Until lresult = 0 WaitUntil = True End Function 3

4 An additional call to functon Waiting is necessary to allow the software to complete the creation of the Access table by the SAS program after the batch SAS session has completed. THE SAS CODE THAT READS AND WRITES TO THE MICROSOFT ACCESS TABLE In SAS Version 8 all one has to do is have the Microsoft Access ODBC driver installed on the PC and the use of the following LIBNAME statement to read and write Microsoft Access tables from SAS: libname OUT odbc complete="dsn=msacccess; dbq=c:\marketing\cs_stat.mdb; UID=Admin"; The SAS program performs the calculations and enters them directly into the Access table that will be used by the Access Report object. The user now can print the report, save it as a file, or delete it, within the default controls that exist within Microsoft Access. THE REPORT OBJECT The final step in the Macro, is to open our Microsoft Access report object. The design window for this object is as follows: OTHER APPROACHES There are other approaches to creating a Microsoft Access/SAS hybrid system. First, if one does not have ODBC available, one could generate a text file with Microsoft Access and read that into SAS. Then, SAS would generate another text file that would be imported into Microsoft Access. The downside is that the application would be slowed down by doing two text to binary conversions. Second, one could execute a SAS program from Microsoft Access and generate a SAS report, saved in RTF format. Then, Access could open a Word session that would import the RTF file. The upside to this is that the end user may prefer his report to be in Word. This is much easier than writing Microsoft Access data into Word using bookmarks. CONCLUSION The report, when produced, looks as follows: Users can effectively combine SAS with Microsoft Access to create an application that is superior to either 4

5 one by itself in terms of development time, speed, and cost. ACKNOWLEDGEMENTS SAS is a registered trademark of the SAS Institute, Inc., Cary, NC, USA Access is a registered trademark of the Microsoft Corporation, Redmond, WA, USA AUTHOR CONTACT David Kiasi Applications Alternatives P.O. Box 4238 Upper Marlboro, Md., (301) Fax: (301) david.kiasi@appalt.com Web page: 5

Technical Paper. Defining an ODBC Library in SAS 9.2 Management Console Using Microsoft Windows NT Authentication

Technical Paper. Defining an ODBC Library in SAS 9.2 Management Console Using Microsoft Windows NT Authentication Technical Paper Defining an ODBC Library in SAS 9.2 Management Console Using Microsoft Windows NT Authentication Release Information Content Version: 1.0 October 2015. Trademarks and Patents SAS Institute

More information

A Comparison of SAS versus Microsoft Excel and Access s Inbuilt VBA Functionality Jozef Tarrant, Amadeus Software Ltd., Oxford, UK

A Comparison of SAS versus Microsoft Excel and Access s Inbuilt VBA Functionality Jozef Tarrant, Amadeus Software Ltd., Oxford, UK ABSTRACT There are a great variety of business situations where it is necessary to automatically export data from a large number of similar Microsoft Excel spreadsheets (perhaps reports, forms etc.) into

More information

Applications Development

Applications Development Paper 21-25 Using SAS Software and Visual Basic for Applications to Automate Tasks in Microsoft Word: An Alternative to Dynamic Data Exchange Mark Stetz, Amgen, Inc., Thousand Oaks, CA ABSTRACT Using Dynamic

More information

SAS 9.3 Foundation for Microsoft Windows

SAS 9.3 Foundation for Microsoft Windows Software License Renewal Instructions SAS 9.3 Foundation for Microsoft Windows Note: In this document, references to Microsoft Windows or Windows include Microsoft Windows for x64. SAS software is licensed

More information

Installing the Gerber P2C Plotter USB Driver

Installing the Gerber P2C Plotter USB Driver Installing the Gerber P2C Plotter USB Driver 1 You can install a Gerber P2C plotter using a USB connection and communicate with it using compatible design software. The following procedures describe installing

More information

Getting Started with STATISTICA Enterprise Programming

Getting Started with STATISTICA Enterprise Programming Getting Started with STATISTICA Enterprise Programming 2300 East 14th Street Tulsa, OK 74104 Phone: (918) 749 1119 Fax: (918) 749 2217 E mail: mailto:developerdocumentation@statsoft.com Web: www.statsoft.com

More information

From Database to your Desktop: How to almost completely automate reports in SAS, with the power of Proc SQL

From Database to your Desktop: How to almost completely automate reports in SAS, with the power of Proc SQL From Database to your Desktop: How to almost completely automate reports in SAS, with the power of Proc SQL Kirtiraj Mohanty, Department of Mathematics and Statistics, San Diego State University, San Diego,

More information

SAS, Excel, and the Intranet

SAS, Excel, and the Intranet SAS, Excel, and the Intranet Peter N. Prause, The Hartford, Hartford CT Charles Patridge, The Hartford, Hartford CT Introduction: The Hartford s Corporate Profit Model (CPM) is a SAS based multi-platform

More information

Building a Marketing Dashboard using Excel and SAS. Tim Walters InfoTech Marketing

Building a Marketing Dashboard using Excel and SAS. Tim Walters InfoTech Marketing Building a Marketing Dashboard using Excel and SAS Tim Walters InfoTech Marketing 1 Desired Outcome Dashboard Sheet and 6 Results Sheets 2 Client Environmental Considerations Client company has software

More information

TS2Mascot. Introduction. System Requirements. Installation. Interactive Use

TS2Mascot. Introduction. System Requirements. Installation. Interactive Use TS2Mascot Introduction TS2Mascot is a simple utility to export peak lists from an Applied Biosystems 4000 Series database. The peak list is saved as a Mascot Generic Format (MGF) file. This can be a file

More information

Outlook Profile Setup Guide Exchange 2010 Quick Start and Detailed Instructions

Outlook Profile Setup Guide Exchange 2010 Quick Start and Detailed Instructions HOSTING Administrator Control Panel / Quick Reference Guide Page 1 of 9 Outlook Profile Setup Guide Exchange 2010 Quick Start and Detailed Instructions Exchange 2010 Outlook Profile Setup Page 2 of 9 Exchange

More information

for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later

for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later Copyright 2014, Lucid Innovations Limited. All Rights Reserved Lucid Research

More information

Siemens Applied Automation Page 1 11/26/03 9:57 PM. Maxum ODBC 3.11

Siemens Applied Automation Page 1 11/26/03 9:57 PM. Maxum ODBC 3.11 Siemens Applied Automation Page 1 Maxum ODBC 3.11 Table of Contents Installing the Polyhedra ODBC driver... 2 Using ODBC with the Maxum Database... 2 Microsoft Access 2000 Example... 2 Access Example (Prior

More information

PharmaSUG2011 - Paper AD11

PharmaSUG2011 - Paper AD11 PharmaSUG2011 - Paper AD11 Let the system do the work! Automate your SAS code execution on UNIX and Windows platforms Niraj J. Pandya, Element Technologies Inc., NJ Vinodh Paida, Impressive Systems Inc.,

More information

SAS 9.4 PC Files Server

SAS 9.4 PC Files Server SAS 9.4 PC Files Server Installation and Configuration Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2014. SAS 9.4 PC Files Server: Installation

More information

Installation Instructions for Version 8 (TS M1) of the SAS System for Microsoft Windows

Installation Instructions for Version 8 (TS M1) of the SAS System for Microsoft Windows Installation Instructions for Version 8 (TS M1) of the SAS System for Microsoft Windows Table of Contents Chapter 1, Introduction...1 Terminology and Symbols Used in this Document...1 SASROOT Directory...1

More information

Interfacing SAS Software, Excel, and the Intranet without SAS/Intrnet TM Software or SAS Software for the Personal Computer

Interfacing SAS Software, Excel, and the Intranet without SAS/Intrnet TM Software or SAS Software for the Personal Computer Interfacing SAS Software, Excel, and the Intranet without SAS/Intrnet TM Software or SAS Software for the Personal Computer Peter N. Prause, The Hartford, Hartford CT Charles Patridge, The Hartford, Hartford

More information

Paper PO03. A Case of Online Data Processing and Statistical Analysis via SAS/IntrNet. Sijian Zhang University of Alabama at Birmingham

Paper PO03. A Case of Online Data Processing and Statistical Analysis via SAS/IntrNet. Sijian Zhang University of Alabama at Birmingham Paper PO03 A Case of Online Data Processing and Statistical Analysis via SAS/IntrNet Sijian Zhang University of Alabama at Birmingham BACKGROUND It is common to see that statisticians at the statistical

More information

While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX

While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX Paper 276-27 While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX ABSTRACT If you are tired of running the same jobs over and over again, this

More information

While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX

While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX CC04 While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX ABSTRACT If you are tired of running the same jobs over and over again, this paper is

More information

POS Connector Installation and Setup Guide

POS Connector Installation and Setup Guide POS Connector Installation and Setup Guide Contents About POS Connector for Small Business Accounting... 1 What is POS Connector?... 1 How does POS Connector work?... 1 Is POS Connector easy to install

More information

SUMMARY Moderate-High: Requires Visual Basic For Applications (VBA) skills, network file services skills and interoperability skills.

SUMMARY Moderate-High: Requires Visual Basic For Applications (VBA) skills, network file services skills and interoperability skills. Author: Sanjay Sansanwal Title: Configuring FileCM Extensions for Word The information in this article applies to: o FileCM 2.6, 3.0, 3.5, 3.5.1, 3.5.2, 4.0, 4.2 o Microsoft Windows 2000 Professional,

More information

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the SAI reports... 3 Running, Copying and Pasting reports... 4 Creating and linking a report... 5 Auto e-mailing reports...

More information

Database Assistant. Once Database Assistant is installed you must login to gain access to the database. Copyright 2009

Database Assistant. Once Database Assistant is installed you must login to gain access to the database. Copyright 2009 TOSHIBA Strata CIX Technical Bulletin March 2008 is a companion package to Voice Assistant. provides an interface between any Open Database Connectivity (ODBC) compliant database and Voice Assistant. This

More information

Producing Listings and Reports Using SAS and Crystal Reports Krishna (Balakrishna) Dandamudi, PharmaNet - SPS, Kennett Square, PA

Producing Listings and Reports Using SAS and Crystal Reports Krishna (Balakrishna) Dandamudi, PharmaNet - SPS, Kennett Square, PA Producing Listings and Reports Using SAS and Crystal Reports Krishna (Balakrishna) Dandamudi, PharmaNet - SPS, Kennett Square, PA ABSTRACT The SAS Institute has a long history of commitment to openness

More information

A Comparison of SAS versus Microsoft Excel and Access s Inbuilt VBA Functionality

A Comparison of SAS versus Microsoft Excel and Access s Inbuilt VBA Functionality A Comparison of SAS versus Microsoft Excel and Access s Inbuilt VBA Functionality Jozef Tarrant, Amadeus Software Ltd. Copyright 2011 Amadeus Software Ltd. 1 Overview What is VBA? VBA Essentials: Modules

More information

IsItUp Quick Start Manual

IsItUp Quick Start Manual IsItUp - When you need to know the status of your network Taro Software Inc. Website: www.tarosoft.com Telephone: 703-405-4697 Postal address: 8829 110th Lane, Seminole Fl, 33772 Electronic mail: Contact1@tarosoft.com

More information

PULSE Automation programming in Visual Basic. From BK training lectures arranged by Jiří Tůma & Radovan Zadražil

PULSE Automation programming in Visual Basic. From BK training lectures arranged by Jiří Tůma & Radovan Zadražil PULSE Automation programming in Visual Basic From BK training lectures arranged by Jiří Tůma & Radovan Zadražil OLE Automation, general principles Bruno S. Larsen PULSE Software Development Agenda Overview

More information

RIT Installation Instructions

RIT Installation Instructions RIT User Guide Build 1.00 RIT Installation Instructions Table of Contents Introduction... 2 Introduction to Excel VBA (Developer)... 3 API Commands for RIT... 11 RIT API Initialization... 12 Algorithmic

More information

Migrating helpdesk to a new server

Migrating helpdesk to a new server Migrating helpdesk to a new server Table of Contents 1. Helpdesk Migration... 2 Configure Virtual Web on IIS 6 Windows 2003 Server:... 2 Role Services required on IIS 7 Windows 2008 / 2012 Server:... 2

More information

Network Server for Windows. Overview of the Sequencher Network Page 2. Installing Sequencher Server for the First Time Page 3

Network Server for Windows. Overview of the Sequencher Network Page 2. Installing Sequencher Server for the First Time Page 3 Network Server for Windows Installation Instructions Overview of the Sequencher Network Page 2 Installing Sequencher Server for the First Time Page 3 Adding Sequencher licenses to KeyServer Page 4 Updating

More information

Inmagic ODBC Driver 8.00 Installation and Upgrade Notes

Inmagic ODBC Driver 8.00 Installation and Upgrade Notes Inmagic ODBC Driver 8.00 Installation and Upgrade Notes Thank you for purchasing the Inmagic ODBC Driver for DB/Text. This document is for new and upgrade customers. Use the Inmagic ODBC Driver to develop

More information

idelpi Software Quick Install and Basic Configuration Guide

idelpi Software Quick Install and Basic Configuration Guide idelpi Software Quick Install and Basic Configuration Guide (Trial version) This documentation helps you in installing the trial version of idelpi construction software on your computer. Prerequisites

More information

Accessing a Microsoft SQL Server Database from SAS on Microsoft Windows

Accessing a Microsoft SQL Server Database from SAS on Microsoft Windows Accessing a Microsoft SQL Server Database from SAS on Microsoft Windows On Microsoft Windows, you have two options to access a Microsoft SQL Server database from SAS. You can use either SAS/Access Interface

More information

Creating a System DSN for Crystal Reports to Access a Sentinel Server Database. Configuration Guide Version 1.0

Creating a System DSN for Crystal Reports to Access a Sentinel Server Database. Configuration Guide Version 1.0 Creating a System DSN for Crystal Reports to Access a Sentinel Server Database Configuration Guide Version 1.0 July 2007 Configuration Guide Part Number: 62-14332000, V1.0 Copyright 1995-2007 Ringdale

More information

CentreWare for Microsoft Operations Manager. User Guide

CentreWare for Microsoft Operations Manager. User Guide CentreWare for Microsoft Operations Manager User Guide Copyright 2006 by Xerox Corporation. All rights reserved. Copyright protection claimed includes all forms and matters of copyright material and information

More information

Share Point Document Management For Sage 100 ERP

Share Point Document Management For Sage 100 ERP Share Point Document Management For Sage 100 ERP 457 Palm Drive Glendale, CA 91202 818-956-3744 818-956-3746 sales@iigservices.com www.iigservices.com Share Point Document Management 2 Information in this

More information

ThinManager and Active Directory

ThinManager and Active Directory ThinManager and Active Directory Use the F1 button on any page of a ThinManager wizard to launch Help for that page. Visit http://www.thinmanager.com/kb/index.php/special:allpages for a list of Knowledge

More information

Abstract. Introduction. System Requirement. GUI Design. Paper AD17-2011

Abstract. Introduction. System Requirement. GUI Design. Paper AD17-2011 Paper AD17-2011 Application for Survival Analysis through Microsoft Access GUI Zhong Yan, i3, Indianapolis, IN Jie Li, i3, Austin, Texas Jiazheng (Steven) He, i3, San Francisco, California Abstract This

More information

Programming in Access VBA

Programming in Access VBA PART I Programming in Access VBA In this part, you will learn all about how Visual Basic for Applications (VBA) works for Access 2010. A number of new VBA features have been incorporated into the 2010

More information

[Setup procedure for Windows 95/98/Me]

[Setup procedure for Windows 95/98/Me] [Setup procedure for Windows 95/98/Me] a. One Print Server. b. One external AC power adapter. c. One setup CD. (For Windows 95/98/Me/NT/2000/XP). d. One user s manual (included quick guide). a. Turn off

More information

Using Proc SQL and ODBC to Manage Data outside of SAS Jeff Magouirk, National Jewish Medical and Research Center, Denver, Colorado

Using Proc SQL and ODBC to Manage Data outside of SAS Jeff Magouirk, National Jewish Medical and Research Center, Denver, Colorado Using Proc SQL and ODBC to Manage Data outside of SAS Jeff Magouirk, National Jewish Medical and Research Center, Denver, Colorado ABSTRACT The ability to use Proc SQL and ODBC to manage data outside of

More information

Guide to Installing BBL Crystal MIND on Windows 7

Guide to Installing BBL Crystal MIND on Windows 7 Guide to Installing BBL Crystal MIND on Windows 7 Introduction The BBL Crystal MIND software can not be directly installed on the Microsoft Windows 7 platform, however it can be installed and run via XP

More information

Agilent Intuilink Software Installation

Agilent Intuilink Software Installation Agilent Intuilink Software Installation The Intuilink software allows you to access the Agilent equipment with your PC. This gives you the ability to import data, take a snapshot of the display and set

More information

14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë

14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë 14.1 bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë bî~äì~íáåö=oéñäéåíáçå=ñçê=emi=rkfui=~åç=lééåsjp=eçëíë This guide walks you quickly through key Reflection features. It covers: Getting Connected

More information

The purpose of this document is to describe how to connect Crystal Reports with BMC Remedy AR System using ODBC.

The purpose of this document is to describe how to connect Crystal Reports with BMC Remedy AR System using ODBC. UCL INFORMATION SERVICES DIVISION CRYSTAL REPORTS INTEGRATING WITH REMEDY The purpose of this document is to describe how to connect Crystal Reports with BMC Remedy AR System using ODBC. 1. Install BMC

More information

Modifier with Visual Basic with Applications (VBA) in Microsoft Dynamics GP 9.0

Modifier with Visual Basic with Applications (VBA) in Microsoft Dynamics GP 9.0 Modifier with Visual Basic with Applications (VBA) in Microsoft Dynamics GP 9.0 8520: Modifier with VBA in Microsoft Dynamics GP 9.0 (3 Days) About this Course The three-day Microsoft DynamicsT GP Modifier

More information

Linking Access to SQL Server

Linking Access to SQL Server Linking Access to SQL Server Why Link to SQL Server? Whilst Microsoft Access is a powerful database program it has its limitations and is best suited to creating desktop applications for individual users

More information

Hands-On Lab. Building a Data-Driven Master/Detail Business Form using Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010.

Hands-On Lab. Building a Data-Driven Master/Detail Business Form using Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010. Hands-On Lab Building a Data-Driven Master/Detail Business Form using Visual Studio 2010 Lab version: 1.0.0 Last updated: 12/10/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING THE APPLICATION S

More information

RUNNING TRACKER ON A TERMINAL SERVER

RUNNING TRACKER ON A TERMINAL SERVER RUNNING TRACKER ON A TERMINAL SERVER RUNNING TRACKER ON A TERMINAL SERVER Tracker can be run on a Windows 2003 Terminal Server, provided the Windows Terminal Server is properly configured. Depending on

More information

Using TS-ACCESS for Remote Desktop Access

Using TS-ACCESS for Remote Desktop Access Using TS-ACCESS for Remote Desktop Access Introduction TS-ACCESS is a remote desktop access feature available to CUA faculty and staff who need to access administrative systems or other computing resources

More information

WS_FTP Professional 12

WS_FTP Professional 12 WS_FTP Professional 12 Tools Guide Contents CHAPTER 1 Introduction Ways to Automate Regular File Transfers...5 Check Transfer Status and Logs...6 Building a List of Files for Transfer...6 Transfer Files

More information

Getting Started CHAPTER 1

Getting Started CHAPTER 1 3 CHAPTER 1 Getting Started SAS: Exploiting the Power of Windows 4 SAS Runs in Enterprise Environments 4 An Integral Part of Your Windows Environment 5 Compatible and Maintainable 6 Read and Write SAS

More information

Access 2003 Macro Security Levels, Sandbox Mode, and Digitally Signed Files

Access 2003 Macro Security Levels, Sandbox Mode, and Digitally Signed Files Access 2003 Macro Security Levels, Sandbox Mode, and Digitally Signed Files Tim Gordon TWLMG@PUBLICNETWORKING.ORG Programming Plus (816) 333-7357 About dangerous code Dangerous code can consist of powerful

More information

Migration Manager v6. User Guide. Version 1.0.5.0

Migration Manager v6. User Guide. Version 1.0.5.0 Migration Manager v6 User Guide Version 1.0.5.0 Revision 1. February 2013 Content Introduction... 3 Requirements... 3 Installation and license... 4 Basic Imports... 4 Workspace... 4 1. Menu... 4 2. Explorer...

More information

ABSTRACT THE ISSUE AT HAND THE RECIPE FOR BUILDING THE SYSTEM THE TEAM REQUIREMENTS. Paper DM09-2012

ABSTRACT THE ISSUE AT HAND THE RECIPE FOR BUILDING THE SYSTEM THE TEAM REQUIREMENTS. Paper DM09-2012 Paper DM09-2012 A Basic Recipe for Building a Campaign Management System from Scratch: How Base SAS, SQL Server and Access can Blend Together Tera Olson, Aimia Proprietary Loyalty U.S. Inc., Minneapolis,

More information

Introduction. Why Use ODBC? Setting Up an ODBC Data Source. Stat/Math - Getting Started Using ODBC with SAS and SPSS

Introduction. Why Use ODBC? Setting Up an ODBC Data Source. Stat/Math - Getting Started Using ODBC with SAS and SPSS Introduction Page 1 of 15 The Open Database Connectivity (ODBC) standard is a common application programming interface for accessing data files. In other words, ODBC allows you to move data back and forth

More information

Add an Audit Trail to your Access Database

Add an Audit Trail to your Access Database Add an to your Access Database Published: 22 April 2013 Author: Martin Green Screenshots: Access 2010, Windows 7 For Access Versions: 2003, 2007, 2010 About This Tutorial My Access tutorials are designed

More information

Data Access Guide. BusinessObjects 11. Windows and UNIX

Data Access Guide. BusinessObjects 11. Windows and UNIX Data Access Guide BusinessObjects 11 Windows and UNIX 1 Copyright Trademarks Use restrictions Patents Copyright 2004 Business Objects. All rights reserved. If you find any problems with this documentation,

More information

User Installation Guide for SAS 9.1 Foundation for 64-bit Microsoft Windows

User Installation Guide for SAS 9.1 Foundation for 64-bit Microsoft Windows User Installation Guide for SAS 9.1 Foundation for 64-bit Microsoft Windows Installation Instructions Where to Begin SAS Setup Wizard Repair or Remove SAS Software Glossary Where to Begin Most people who

More information

Single Sign On via Qlikview IIS Server

Single Sign On via Qlikview IIS Server Single Sign On via Qlikview IIS IIS Application Setup On the Windows 2003 machine, click Start, and then click Manage Your. The Manage Your dialog appears Click Add or remove a role. The Configure Your

More information

ODBC Driver Guide. Installation and Configuration. Freezerworks Unlimited Version 6.0

ODBC Driver Guide. Installation and Configuration. Freezerworks Unlimited Version 6.0 ODBC Driver Guide Installation and Configuration Freezerworks Unlimited Version 6.0 PO Box 174 Mountlake Terrace, WA 98043 www.freezerworks.com support@freezerworks.com 425-673-1974 877-289-7960 U.S. Toll

More information

Google Drive: Access and organize your files

Google Drive: Access and organize your files Google Drive: Access and organize your files Use Google Drive to store and access your files, folders, and Google Docs, Sheets, and Slides anywhere. Change a file on the web, your computer, tablet, or

More information

1 Installation. Note: In Windows operating systems, you must be logged in with administrator rights to install the printer driver.

1 Installation. Note: In Windows operating systems, you must be logged in with administrator rights to install the printer driver. Installation A printer driver is an application that manages communication between a printer and your computer. Once installed, the printer driver settings must be configured in the printer Properties

More information

How to Set Up a Cell Phone

How to Set Up a Cell Phone My Keypad for Cell Phones Quick Start Guide 800-02577-CP 12/09 Rev. B TRADEMARKS Honeywell is a registered trademark of Honeywell International Inc. All other trademarks are the properties of their respective

More information

Migrating a Database from Legi for Windows 2.X to MS Access

Migrating a Database from Legi for Windows 2.X to MS Access Migrating a Database from Legi for Windows 2.X to MS Access Today s powerful enterprise grade PC s come loaded with Microsoft s Windows XP Professional operating system, or at the very least Microsoft

More information

for Networks Installation Guide for the application on the server August 2014 (GUIDE 2) Lucid Exact Version 1.7-N and later

for Networks Installation Guide for the application on the server August 2014 (GUIDE 2) Lucid Exact Version 1.7-N and later for Networks Installation Guide for the application on the server August 2014 (GUIDE 2) Lucid Exact Version 1.7-N and later Copyright 2014, Lucid Innovations Limited. All Rights Reserved Lucid Research

More information

Printer Sharing of the PT-9500pc in a Windows Environment

Printer Sharing of the PT-9500pc in a Windows Environment Printer Sharing of the PT-9500pc in a Windows Environment This procedure is for configuring the PT-9500pc as a shared printer in Microsoft Windows. For printer sharing to operate correctly, please be sure

More information

Hands-on Exercise 1: VBA Coding Basics

Hands-on Exercise 1: VBA Coding Basics Hands-on Exercise 1: VBA Coding Basics This exercise introduces the basics of coding in Access VBA. The concepts you will practise in this exercise are essential for successfully completing subsequent

More information

Installing LearningBay Enterprise Part 2

Installing LearningBay Enterprise Part 2 Installing LearningBay Enterprise Part 2 Support Document Copyright 2012 Axiom. All Rights Reserved. Page 1 Please note that this document is one of three that details the process for installing LearningBay

More information

Installing the OKI MCx61MFP USB Attached, in Windows 8

Installing the OKI MCx61MFP USB Attached, in Windows 8 Installing the OKI MCx61MFP USB Attached, in Windows 8 Preface Note: The following instruction uses screenshots of either the OKI MC561MFP for illustration purposes. However, these instructions apply to

More information

Setting Up Database Security with Access 97

Setting Up Database Security with Access 97 Setting Up Database Security with Access 97 The most flexible and extensive method of securing a database is called user-level security. This form of security is similar to methods used in most network

More information

Installation & Maintenance Guide

Installation & Maintenance Guide The instruction booklet is also included on the CD in Word and Acrobat formats, which may be easier to print. (If you want to install Acrobat Reader run d:\acroread\setup.exe (where d:\ is the identifier

More information

Voyager Reporting System (VRS) Installation Guide. Revised 5/09/06

Voyager Reporting System (VRS) Installation Guide. Revised 5/09/06 Voyager Reporting System (VRS) Installation Guide Revised 5/09/06 System Requirements Verification 1. Verify that the workstation s Operating System is Windows 2000 or Higher. 2. Verify that Microsoft

More information

Improving Your Relationship with SAS Enterprise Guide

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

More information

Quick Start Guide. User Manual. 1 March 2012

Quick Start Guide. User Manual. 1 March 2012 Quick Start Guide User Manual 1 March 2012 This document outlines the steps to install SAMLite system into a single box of server and configure it to run for passive collection (domain login script). This

More information

Server Installation, Administration and Integration Guide

Server Installation, Administration and Integration Guide Server Installation, Administration and Integration Guide Version 1.1 Last updated October 2015 2015 sitehelpdesk.com, all rights reserved TABLE OF CONTENTS 1 Introduction to WMI... 2 About Windows Management

More information

Configuring Network Load Balancing with Cerberus FTP Server

Configuring Network Load Balancing with Cerberus FTP Server Configuring Network Load Balancing with Cerberus FTP Server May 2016 Version 1.0 1 Introduction Purpose This guide will discuss how to install and configure Network Load Balancing on Windows Server 2012

More information

How to configure the DBxtra Report Web Service on IIS (Internet Information Server)

How to configure the DBxtra Report Web Service on IIS (Internet Information Server) How to configure the DBxtra Report Web Service on IIS (Internet Information Server) Table of Contents Install the DBxtra Report Web Service automatically... 2 Access the Report Web Service... 4 Verify

More information

Capture Pro Software FTP Server System Output

Capture Pro Software FTP Server System Output Capture Pro Software FTP Server System Output Overview The Capture Pro Software FTP server will transfer batches and index data (that have been scanned and output to the local PC) to an FTP location accessible

More information

Creating Dynamic Web Based Reporting

Creating Dynamic Web Based Reporting Creating Dynamic Web Based Reporting Prepared by Overview of SAS/INTRNET Software First, it is important to understand SAS/INTRNET software and its use. Three components are required for the SAS/INTRNET

More information

Symantec Enterprise Vault

Symantec Enterprise Vault Symantec Enterprise Vault Guide for Microsoft Outlook 2010/2013 Users 10.0 Light Outlook Add-In Symantec Enterprise Vault: Guide for Microsoft Outlook 2010/2013 Users The software described in this book

More information

Tips and Tricks SAGE ACCPAC INTELLIGENCE

Tips and Tricks SAGE ACCPAC INTELLIGENCE Tips and Tricks SAGE ACCPAC INTELLIGENCE 1 Table of Contents Auto e-mailing reports... 4 Automatically Running Macros... 7 Creating new Macros from Excel... 8 Compact Metadata Functionality... 9 Copying,

More information

How to Install and Setup IIS Server

How to Install and Setup IIS Server How to Install and Setup IIS Server 2010/9/16 NVR is a Windows based video surveillance software that requires Microsoft IIS (Internet Information Services) to operate properly. If you already have your

More information

SafeGuard PrivateCrypto 2.40 help

SafeGuard PrivateCrypto 2.40 help SafeGuard PrivateCrypto 2.40 help Document date: September 2009 Contents 1 Introduction... 2 2 Installation... 4 3 SafeGuard PrivateCrypto User Application... 5 4 SafeGuard PrivateCrypto Explorer extensions...

More information

Alarms Dispatcher Cod. DOCS 11 AD-E Build 1101

Alarms Dispatcher Cod. DOCS 11 AD-E Build 1101 Supervision and control XML-based from Windows Vista to Windows CE Alarms Dispatcher Cod. DOCS 11 AD-E Build 1101 Table Of Contents 1. ALARM DISPATCHER... 3 1.1. OVERVIEW... 3 1.2. MENU COMMANDS... 4 1.3.

More information

Integration with Active Directory

Integration with Active Directory VMWARE TECHNICAL NOTE VMware ACE Integration with Active Directory This document explains how to set up Active Directory to use with VMware ACE. This document contains the following topics: About Active

More information

Define ODBC Database Library using Management Console

Define ODBC Database Library using Management Console Define ODBC Database Library using Management Console Introduction: Open database connectivity (ODBC) standards provide a common interface to a variety of databases, including AS/400, dbase, Microsoft

More information

Visual Basic Programming. An Introduction

Visual Basic Programming. An Introduction Visual Basic Programming An Introduction Why Visual Basic? Programming for the Windows User Interface is extremely complicated. Other Graphical User Interfaces (GUI) are no better. Visual Basic provides

More information

Upgrading to Document Manager 2.7

Upgrading to Document Manager 2.7 Upgrading to Document Manager 2.7 22 July 2013 Trademarks Document Manager and Document Manager Administration are trademarks of Document Logistix Ltd. TokOpen, TokAdmin, TokImport and TokExRef are registered

More information

Hands-On Workshops. HW009 Creating Dynamic Web Based Reporting Dana Rafiee, Destiny Corporation, Wethersfield, CT OVERVIEW OF SAS/INTRNET SOFTWARE

Hands-On Workshops. HW009 Creating Dynamic Web Based Reporting Dana Rafiee, Destiny Corporation, Wethersfield, CT OVERVIEW OF SAS/INTRNET SOFTWARE HW009 Creating Dynamic Web Based Reporting Dana Rafiee, Destiny Corporation, Wethersfield, CT ABSTRACT In this hands on workshop, we'll demonstrate and discuss how to take a standard or adhoc report and

More information

Overview. NT Event Log. CHAPTER 8 Enhancements for SAS Users under Windows NT

Overview. NT Event Log. CHAPTER 8 Enhancements for SAS Users under Windows NT 177 CHAPTER 8 Enhancements for SAS Users under Windows NT Overview 177 NT Event Log 177 Sending Messages to the NT Event Log Using a User-Written Function 178 Examples of Using the User-Written Function

More information

ilaw Installation Procedure

ilaw Installation Procedure ilaw Installation Procedure This guide will provide a reference for a full installation of ilaw Case Management Software. Contents ilaw Overview How ilaw works Installing ilaw Server on a PC Installing

More information

Migrating from MyYSU Mail to Office 365 Microsoft Outlook 2010

Migrating from MyYSU Mail to Office 365 Microsoft Outlook 2010 Migrating from MyYSU Mail to Office 365 Microsoft Outlook 2010 Required Items: Microsoft Outlook 2010, MyYSU e-mail account This guide will assist you with configuring the Microsoft Outlook 2010 email

More information

Netop School and L230 or X550 from NComputing as student computers

Netop School and L230 or X550 from NComputing as student computers Netop School and L230 or X550 from NComputing as student computers This technical article explains how to set up Netop School to use L230 or X550 access devices and virtualization software so that several

More information

INSTALLING SAS 9.2 PHASE 3 ON WINDOWS OPERATING SYSTEMS

INSTALLING SAS 9.2 PHASE 3 ON WINDOWS OPERATING SYSTEMS INSTALLING SAS 9.2 PHASE 3 ON WINDOWS OPERATING SYSTEMS Prepared By: Nazmul Islam Multimedia and Information Technology Services (MITS) School of Public Health (SOPH) The University of Alabama at Birmingham

More information

How to Configure Outlook 2010 E-mail Client for Exchange

How to Configure Outlook 2010 E-mail Client for Exchange LAUSD IT Help Desk How to Configure Outlook 2010 E-mail Client for Exchange (03/04/2012) LAUSD IT Help Desk 333 S. Beaudry Ave. 9 th Floor Phone 213.241.5200 Table of Contents Configure Outlook 2010 for

More information

Practice Fusion API Client Installation Guide for Windows

Practice Fusion API Client Installation Guide for Windows Practice Fusion API Client Installation Guide for Windows Quickly and easily connect your Results Information System with Practice Fusion s Electronic Health Record (EHR) System Table of Contents Introduction

More information

«Intellect» software system

«Intellect» software system AxxonSoft «Intellect» software system Detector Pack: User s Manual Version 1.1 Moscow 2012 1 Contents CONTENTS... 2 1 INTRODUCTION... 3 1.1 General information... 3 1.2 Purpose of the document... 3 1.3

More information

WorldShip Export Shipment Data

WorldShip Export Shipment Data Go to the appropriate page for a discussion on the following export shipment data procedures: Procedure using the Import/Export Wizard using the Connection Assistant Page 2 8 Copyright 2014, United Parcel

More information