A Web Based Clinical Data Browser. Eric Grelak, System Solutions, Inc., Chester Springs, PA Nick Ronca, AstraZeneca, Wayne, PA

Size: px
Start display at page:

Download "A Web Based Clinical Data Browser. Eric Grelak, System Solutions, Inc., Chester Springs, PA Nick Ronca, AstraZeneca, Wayne, PA"

Transcription

1 A Web Based Clinical Data Browser Eric Grelak, System Solutions, Inc., Chester Springs, PA Nick Ronca, AstraZeneca, Wayne, PA ABSTRACT A problem many pharmaceutical companies have is making its clinical trial (CT) information easily accessible to authorized nonprogrammers. This situation can be greatly compounded when information is scattered over multiple platforms and legacy systems. The authors describe an n-tier application, which allows the user to access and analyze CT information. The front-end tier is a web browser providing users with a single interface to clinical trail information. Access to information is controlled such that each user receives a different list of available information depending on security privileges. The back-end tiers decide how available information should be accessed, and then retrieves the requested information using a variety of applications (ASP, SAS/IntrNet, Perl, etc.). In addition, programmers can publish their own SAS programs/web applications to the user community. INTRODUCTION AstraZeneca has undertaken a series of mergers in which each pre-merger company had their own CT programming environment. All are very similar in function but each had their differences, such as computing environment, operating system, file structures, variable and data set names. Access to CT information will become much easier in the future as work on all new studies, and some old, migrate to a new computing environment. In the meantime, information is scattered over a variety of machines having different operating systems. Similar non-web based tools existed but were closely tied to their computing environments. As long as data is stored in its original environment it is very difficult for some users to know where the data they need is located and how to actually get to that data. The authors of this paper describe how they used SAS/IntrNet with a variety of other tools to solve the above issues. In addition the Clinical Data Browser (CDB) does more than just browse CT information, it has a simple point-and-click query building tool, can perform basic univariates and frequencies, help check adverse event term-mappings or download data sets in a variety of format. Our solution to accessing dispersed data is storing, in a database table, the location of each resource and how it should be accessed. A resource is defined to the CDB as a directory. The CDB then needs to read the database, get locations and other information, and then access the resource location. User access is controlled at the study and resource level, meaning that a clinical study team can prevent another study team from viewing their data. Resource access is controlled within each study team depending on the job function of the user. These security rules determine each person s access rights and drug-study choices. In the context of this paper SAS/IntrNet and application server are one in the same. DESIGN GOALS Given the current conditions mentioned in the introduction, we had a desire to create an application independent of the CT programming environment. This means the application should be portable to other operating systems. It would not make assumptions about data set variable names, data set names, or the file structure organizing the data. Not being able to make assumptions about the data makes it much more difficult to build an application and will have an impact on how the application will be used. In addition the maintenance cost of the application will increase. We have noticed that many applications are heavily tied to their environment such that any environment change requires a retooling of the application. This can have adverse effects on the business and individuals who rely on an application to such an extent that the application prevents or slows any change the business wants to make. We did not want to create an application that was inflexible or tied to the computing environment. By removing dependence on the directory structure, variable and data set names, any change in the above would not affect the CDB. We felt the savings in any potential retooling of the CDB application would outweigh the tradeoff of a higher maintenance cost. Our number one requirement was to prevent the CDB from imposing rules on the CT programmers. The CDB would be completely independent from how CT programming is performed. In addition, a clinical team would have the last word on security by being able to prevent the CDB from getting to their study s data if they so wished. Programs were written and fine-tuned for speed while graphics were used as little as possible in the resulting web pages. Every click by the user returns information back dynamically, information is never pre-assembled; the CDB works in real-time. A major requirement was the proper enforcement of security. In order to have access to study information thru the CDB a user must be granted access. At an even finer level, the user belongs to a group, determined by their job function, which determines what information, within a study, a given user is able to access. There are various administration levels giving special users extra features. We wanted the CDB to automatically maintain a user session for a specified period of time. A session allows the creation of personal workspaces for each user. A routine was developed to create sticky sessions. This means that if a user started a session on the CDB thru their web browser, went to some other site, and then returned, their old session, if still active, would automatically be picked up again. Cookies were not used anywhere in this application. Once a session is defined, state can be maintained in this session space. Session stickiness limits the amount of sessions that SAS/IntrNet needs to manage therefore increasing performance. A general goal of this application was to ensure that additional functionality could be easily added, and that the application could scale up or down depending on usage. When possible, offload as much processing away from the application server, SAS/IntrNet. We also wanted the SAS/IntrNet programs to run

2 on both Unix and Windows platforms, as CT data is stored on both of these environments. The CDB is just as much an environment as a final application. New features are easily added and updated. Additional application servers can be added as well, something written using SAS Integration Technology components for example. The ability to allow a CT programmer to write their own SAS programs opens the door to create custom mini-applications, for the endusers, by the programming community. The types of information that the CDB must be able to access are the standard SAS types, data sets, and catalogs. In addition we wanted to give users the ability to view reports and listings created by programmers, so the CDB had to be able to handle ASCII text files. With the advent of ODS we also wanted to be able to serve PDF, RTF, and HTML documents. TIERS This application has an N-tier design (see Figure 1) composed of a client, web, database, and application servers. This happens automatically and in the background without the user having to enter a username/password. Once this occurs the application code can use the username to customize the application and perform application level security checks. Apache Apache is used to serve ASCII files, SAS Logs, programs, output, etc. SAS/IntrNet could be used to do this but we did not want to clog-up an application server with simple file serving duties. Offloading this type of processing would leave SAS/IntrNet free to process requests requiring SAS analytics, accessing catalogs, data sets, etc. A problem with viewing large files thru a web browser is that the browser becomes very unstable and slow. Printing a browser's contents often results in incorrect pagination and formatting. To solve this problem a wrapper program was created around the txt2pdf PRO software, by Sanface ( which dynamically converts ASCII output into a PDF document and sends it to the client. Txt2pdf PRO is a very nice tool that handles pagination and allows the insertion of backgrounds, of which we use to put a DRAFT on all generated PDF documents. DATABASE SERVER A database is used at the application level to store the location of resources, how to access resources, and who is able to access each resource. The database stores information associating the resource type with a specific tool built using SAS, ASP, Java, etc. For example, data directories are associated with data querying and analysis tools. Output directories are associated with file browsing and PDF conversion tools. We had originally used SAS/Share, as the database, with constraints and indexes but switched to Oracle for maintenance reasons. The structure of the database can be quite complicated. The higher maintenance costs alluded to earlier are realized in entering information into the database tables. The flexibility that a database provides will far outweigh the maintenance cost. APPLICATION SERVER - SAS/INTRNET Figure 1: Client & Server Tiers WEB SERVER Every web application requires a web server. The CDB uses two web servers at this point. IIS is used as the main site and Apache is used to handle file-browsing requests where IIS cannot reach. IIS Microsoft s IIS was chosen as the main site web server as this is the standard at AZ and is part of a cluster ensuring availability of this tier. The first step in creating a secure application is identifying the user. This is easily achieved by using the advanced security option on IIS. When this is enabled, an NTLM capable client, such as Microsoft s Internet Explorer (on NT/Windows 2000/XP) will, upon successful authentication against the NT domain, offer up the user name to the web server. Development was first started using ASP and SAS/Share. For the most part, we could browse all the same types of data, but we were isolated from the analytics. Graphics creation was slower, and most importantly, no automatic load balancing and session handling. As far as creating web applications, SAS/IntrNet offers more features than SAS/Share. A big performance improvement was gained when we moved to SAS/IntrNet. It should be noted that performance could dramatically differ depending on how SAS/IntrNet is configured. There are three types of SAS/IntrNet application services available, Pool, Socket, and Launch. Launch services can only be used if the web server and application server are on the same machine. Launch service is easier to manage but is more resource intensive as a new process is started for each user request, and lacks load balancing and session capabilities. Socket services allow the application server to reside on a different machine from the web server. A Socket service can contain single or multiple processes listening for user requests. Performance is better as the penalty to start the Socket is paid only once, on startup.

3 Pool services have the advantages of Socket service plus load balancing and easier management. Pool services require the use of an external process called the Load Manager. The Load Manager controls the Pool by handling requests from the Broker, which is installed on the web server, and routes the requests to an available non-active server in the pool. The CDB uses Pool services. user submit two requests to get to a study or take up a lot of space within the browser to navigate to this point. What we did was create a very thin bar as seen at the top of Figure 2. A drop down select control exists for both drugs and studies. After choosing a drug, the study select control is populated using DHTML with the selected drug s studies. If an application requires scalability then Pool or Socket services are your best choices. For more detailed information see the SAS/IntrNet Software documentation. One of the nice SAS/IntrNet features is load balancing. In version 8 and 8.1 we found that the Load Manager was not load balancing correctly. We noticed that all users ended up on the same SAS/IntrNet server. This presented a problem with sessions because a session ties or sticks a user to a particular SAS/IntrNet server. Since SAS/IntrNet handles requests in a serial fashion, we found our requests could become queued to a single server even though the rest of the Pool was available. SAS 8.2 fixes all of this and load balances properly by spreading users over all SAS/IntrNet servers in the pool. We noticed that the statistics data sets, on occasion, can become corrupted and will prevent PROC APPSRV from successfully executing. A routine was created that repaired any damage a data set might have. After doing this we never ran into this same problem again. If you are using the statistics option and for some reason SAS/IntrNet will not start, remove the statistics option and try again. We recommend using the PROC APPSRV statistics option to help keep an application running smoothly. The type of information that you can get out of the statistics data sets are what program runs most often and how long, on average, does it take to complete. You can use the statistics data set to find and improve slow running programs or the program that runs most frequently. After rewriting a program to make it more efficient, you can compare pre and post change execution times. You can also modify the type of information that goes into the statistics data set, as we did with the CDB to add the network ID for each user. We also found that a Pool service with the Load Manager was more stable than a Socket service without the Load Manager. We found that if a Socket service had been waiting a long time before receiving a request, it would often crash. We have not experienced this problem with the Pool service. Perhaps the use of the Load Manager, which periodically keeps in contact with the application servers, helps to keep these servers from experiencing the aforementioned problem. To keep the servers fresh a nightly restart is performed on the Load Manager and Pool. A program (SVRMGR) was written that wraps around the Broker and allows us to easily start, stop, and restart the pool and or Load Manager by using automated batch scheduling tools such as cron or Autosys. CLIENT Figure 2: Study Links After a user selects a study they are presented with a list of resources for that study as well as some information about the study (description, therapeutic area, and drug). Each user may have a different list of drugs and studies depending on access permissions. Information is organized by its type (data set, output, catalog, auxiliary program, etc). Each link, or registered information item, is assigned a certain way in which it will be processed. This enables the CDB to organize a study s data even if information is located across a variety of machines. One of the most important resources within a study are the SAS data sets, which contain clinical trial. Figure 3 displays a list of SAS data sets containing the number of observations, date modified, and data set label. When the mouse cursor is placed over a data set name a floating menu appears giving the user a list of functions that can be performed on the selected data set. Functions such as data browsing, data set and variable information, analysis such as frequencies, univariate, histograms, scatter plots, etc. CDB functionality based on information in data sets can easily be added thru additions to the floating-menus. The CDB can handle directories with mixed engine SAS data, views, and catalogs. The client in this case is Microsoft s Internet Explorer running on Windows The user does not have to sign in and does not get a logon prompt. The system automatically knows who the user is and based on that information handles authentication and user interface customization. This occurs automatically with a NT based client (NT/2000/XP). Having only a single web browser to worry about made development much easier. FEATURES We wanted to keep navigation as simple as possible. Every user needs to choose a drug and study. We did not want to have the

4 Figure 3: Data Sets One option on the hover-menus is to download a data set in a variety of formats (transport using copy or cimport, data sets version 6 or 8, csv, xml). If a user is downloading a data set, the CDB does a client operating system check to set the requirements vector by using the OUTREP data set option. We had written our own program to view the contents of data sets or views as an HTML table rather than use the DS2HTM SAS macro. This not only gave us a big performance boost but the flexibility to customize the returned web page. It should be noted that our program is customized to the environment. One of the options available while browsing a data set is to create a filter, see Figure 4. This functionality is very much the same as SAS s Where statement builder (Data -> Where menu selection from Viewtable) except that users have the option between using a basic or advanced interface, saving and loading their filters. Advanced users have the option to type in additional statements, which can be checked to ensure proper syntax. All analysis and browsing functions have the option to use the Filter-Builder to load or create subsets before moving onward. The Filter-Builder interface also allows users to load patient subsets before browsing or using any of the analytical features present in the CDB. We differentiate between a filter and subset as they can return different information depending how they are used. A subset is a unique list of patients, and is generated from a filter. In the following example a filter is created, against the demography data set, which selects all females over 5 2 and born after 1/1/1953. A user could then select the adverse event data set, load the above filter as a subset and return the adverse event data for all of the patients selected by the filter. Subsets are a way to apply a filter made from one data set on a second, even if the second data set does not contain the variables used to generate the filter. Figure 4: Filter Builder Figure 5 shows a list of static SAS generated output, the size of the file, owner, creation date, and description. The description is parsed from the header of each program. Static output can be returned within the browser as text or can be converted on-thefly into a PDF document and sent to the user. With the advent of ODS the CDB had to be able to view RTF, PDF, and HTML documents. Currently Perl CGI scripts running under the Apache web server handle file browsing. Files having the LST, LOG, and SAS extension can be displayed in a web browser, even if the user has SAS or the SAS Viewer installed on their PC. Another feature of this application gives CT programmers the ability to create their own web-based SAS programs, which we call auxiliary programs. CT programmers can also create web pages for a user to select or enter parameters to be passed to a SAS program. Any user, with the proper security permissions, can run these auxiliary programs. This enables programmers to create their own application under the CDB environment. This means that the programmer does not have to deal with security and session handling, its automatic. Additionally a user can run a program using a subset of selected patients generated by the filter-builder shown in Figure 4. CT programmers have the control to format output as they wish using ODS or they can let the CDB automatically handle web output formatting. This is very convenient as the same SAS program that generated text output, with little or no changes, can be used to generate ODS output sent to a web browser.

5 A help system is available and brings up a separate window with information about the page they are viewing. Those with a certain administrator level will see a button labeled Admin which has a host of monitoring and user tools. One such Admin feature access an LDAP directory for user information such as telephone and address, making it easier for an administrator to correspond with users. CT team leaders, once identified to the system by having a certain administration level, have the ability to display the users having access to their study. As mentioned previously, there is a maintenance cost to administer and enter data into the database tables. We have tried to decrease this cost by creating some basic administrator tools to help with this task. Some additional administration features the CDB has are accessing a LDAP server to help facilitate communicating with users. Server log parsing tools to get more information about the servers in the pool. Routines to create a mini warehouse from the statistics data sets and web server logs, and a front end to this mini warehouse. Also, previously mentioned was the SVRMGR program to help manage the pool and load manager. Figure 5: Output Custom web pages can be associated with SAS programs such that the CDB will retrieve the web page rather than run the SAS program. This allows a CT programmer to create an interface to their SAS programs. The web pages and SAS programs created by CT programmers, are not in directories defined in PROC APPSRV, all are retrieved somewhere from a file system and displayed in the browser, in the case of a HTML file or processed as in the case of a SAS program. Figure 6 shows a listing of SAS programs and a description, which is parsed from the program. As mentioned before, if the SAS program has a web page (HTML file) in the same directory, the CDB knows to retrieve the HTML file rather than run the SAS program. The two buttons at the top of Figure 6 allow the user to load patient subsets, which can be passed to these auxiliary SAS programs CONCLUSION Although the CDB is pointed at clinical data, the ideas and concepts contained in the CDB enable it to be used against any type of data. The fact that the CDB is a web application makes it very easy to access and distribute new features to the end users. There is no client side installation required The environment at AstraZeneca is Unix so the CDB mainly accesses data on this type of machine. We have ported the code to Windows giving the ability for a user to view data scattered among various machines while using the same interface. TRADEMARKS SAS, SAS/Share, SAS/IntrNet, and SAS Viewer are registered trademarks of SAS Institute Inc. in the USA and other countries. Oracle is a registered trademark of Oracle Corporation. Internet Explorer and IIS are registered trademarks of Microsoft Corporation. Autosys is a registered trademark of Computer Associates. CONTACT INFORMATION Your comments and questions are valued and encouraged. Contact the authors at: Eric Grelak System Solutions, Inc. Phone: egrelak@yahoo.com eric.grelak@astrazeneca.com Figure 6: Auxiliary Programs Nick Ronca AstraZeneca LP 725 Chesterbrook Blvd Wayne, PA Phone: nick.ronca@astrazenca.com

6

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

Creating Dynamic Web-based Reporting Dana Rafiee, Destiny Corporation, Wethersfield, CT

Creating Dynamic Web-based Reporting Dana Rafiee, Destiny Corporation, Wethersfield, CT 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 turn

More information

ABSTRACT MORE THAN SYNTAX ORGANIZE YOUR WORK THE SAS ENTERPRISE GUIDE PROJECT. Paper 50-30

ABSTRACT MORE THAN SYNTAX ORGANIZE YOUR WORK THE SAS ENTERPRISE GUIDE PROJECT. Paper 50-30 Paper 50-30 The New World of SAS : Programming with SAS Enterprise Guide Chris Hemedinger, SAS Institute Inc., Cary, NC Stephen McDaniel, SAS Institute Inc., Cary, NC ABSTRACT SAS Enterprise Guide (with

More information

Easing into Data Exploration, Reporting, and Analytics Using SAS Enterprise Guide

Easing into Data Exploration, Reporting, and Analytics Using SAS Enterprise Guide Paper 809-2017 Easing into Data Exploration, Reporting, and Analytics Using SAS Enterprise Guide ABSTRACT Marje Fecht, Prowerk Consulting Whether you have been programming in SAS for years, are new to

More information

Oracle Warehouse Builder 10g Release 2 Integrating Packaged Applications Data

Oracle Warehouse Builder 10g Release 2 Integrating Packaged Applications Data Oracle Warehouse Builder 10g Release 2 Integrating Packaged Applications Data June 2006 Note: This document is for informational purposes. It is not a commitment to deliver any material, code, or functionality,

More information

Installation Guide Version May 2017

Installation Guide Version May 2017 Installation Guide Version 2017 5 May 2017 GeoCue Group, Inc 9668 Madison Blvd. Suite 202 Madison, AL 35758 1-256-461-8289 www.geocue.com NOTICES The material in GeoCue Group, Inc. documents is protected

More information

Patricia Guldin, Merck & Co., Inc., Kenilworth, NJ USA

Patricia Guldin, Merck & Co., Inc., Kenilworth, NJ USA SESUG 2015 Paper AD-35 Programming Compliance Made Easy with a Time Saving Toolbox Patricia Guldin, Merck & Co., Inc., Kenilworth, NJ USA ABSTRACT Programmers perform validation in accordance with established

More information

Remodeling Your Office A New Look for the SAS Add-In for Microsoft Office

Remodeling Your Office A New Look for the SAS Add-In for Microsoft Office Paper SAS1864-2018 Remodeling Your Office A New Look for the SAS Add-In for Microsoft Office ABSTRACT Tim Beese, SAS Institute Inc., Cary, NC Millions of people spend their weekdays in an office. Occasionally

More information

Using Java to Front SAS Software: A Detailed Design for Internet Information Delivery

Using Java to Front SAS Software: A Detailed Design for Internet Information Delivery Using Java to Front SAS Software: A Detailed Design for Internet Information Delivery Jonathan Stokes, JJT Inc., Austin, Texas, USA ABSTRACT As the Java language evolves from its rudimentary stages into

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

An Interactive GUI Front-End for a Credit Scoring Modeling System

An Interactive GUI Front-End for a Credit Scoring Modeling System Paper 6 An Interactive GUI Front-End for a Credit Scoring Modeling System Jeffrey Morrison, Futian Shi, and Timothy Lee Knowledge Sciences & Analytics, Equifax Credit Information Services, Inc. Abstract

More information

The Submission Data File System Automating the Creation of CDISC SDTM and ADaM Datasets

The Submission Data File System Automating the Creation of CDISC SDTM and ADaM Datasets Paper AD-08 The Submission Data File System Automating the Creation of CDISC SDTM and ADaM Datasets Marcus Bloom, Amgen Inc, Thousand Oaks, CA David Edwards, Amgen Inc, Thousand Oaks, CA ABSTRACT From

More information

Technical Overview. Access control lists define the users, groups, and roles that can access content as well as the operations that can be performed.

Technical Overview. Access control lists define the users, groups, and roles that can access content as well as the operations that can be performed. Technical Overview Technical Overview Standards based Architecture Scalable Secure Entirely Web Based Browser Independent Document Format independent LDAP integration Distributed Architecture Multiple

More information

AppGate 11.0 RELEASE NOTES

AppGate 11.0 RELEASE NOTES Changes in 11.0 AppGate 11.0 RELEASE NOTES 1. New packet filter engine. The server-side IP tunneling packet filter engine has been rewritten from scratch, reducing memory usage drastically and improving

More information

9.1 Design-Time Controls. SAS/IntrNet SAS

9.1 Design-Time Controls. SAS/IntrNet SAS 9.1 Design-Time Controls SAS/IntrNet SAS The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2004. SAS/IntrNet 9.1: SAS Design-Time Controls. Cary, NC: SAS Institute Inc.

More information

SAS/IntrNet 9.3. Overview. SAS Documentation

SAS/IntrNet 9.3. Overview. SAS Documentation SAS/IntrNet 9.3 Overview SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc 2011. SAS/IntrNet 9.3: Overview. Cary, NC: SAS Institute Inc. SAS/IntrNet

More information

Active Server Pages Architecture

Active Server Pages Architecture Active Server Pages Architecture Li Yi South Bank University Contents 1. Introduction... 2 1.1 Host-based databases... 2 1.2 Client/server databases... 2 1.3 Web databases... 3 2. Active Server Pages...

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

Managed Reporting Environment

Managed Reporting Environment Managed Reporting Environment WebFOCUS MANAGED REPORTING What is MRE and what does it mean for FLAIR users? MRE extends services to agencies giving them secure, self-service Web access to information they

More information

Internet/Intranet, the Web & SAS

Internet/Intranet, the Web & SAS Web Enable Your SAS Applications Teresia Arthur, SAS, Cary, NC Mary Jafri, SAS, Cary, NC ABSTRACT How many times do we write applications only to rewrite them later because a new operating system comes

More information

A Guided Tour Through the SAS Windowing Environment Casey Cantrell, Clarion Consulting, Los Angeles, CA

A Guided Tour Through the SAS Windowing Environment Casey Cantrell, Clarion Consulting, Los Angeles, CA A Guided Tour Through the SAS Windowing Environment Casey Cantrell, Clarion Consulting, Los Angeles, CA ABSTRACT The SAS system running in the Microsoft Windows environment contains a multitude of tools

More information

Oracle Reports 6.0 New Features. Technical White Paper November 1998

Oracle Reports 6.0 New Features. Technical White Paper November 1998 Oracle Reports 6.0 New Features Technical White Paper Oracle Reports 6.0 New Features PRODUCT SUMMARY In today's fast-moving, competitive business world up to date information is needed for the accurate,

More information

VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database

VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database For multiple versions Have documentation feedback? Submit a Documentation Feedback support ticket using

More information

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide Multi-Sponsor Environment SAS Clinical Trial Data Transparency User Guide Version 6.0 01 December 2017 Contents Contents 1 Overview...1 2 Setting up Your Account...3 2.1 Completing the Initial Email and

More information

COMPAS ID Author: Jack Barnard TECHNICAL MEMORANDUM

COMPAS ID Author: Jack Barnard TECHNICAL MEMORANDUM MesaRidge Systems Subject: COMPAS Document Control Date: January 27, 2006 COMPAS ID 30581 Author: Jack Barnard info@mesaridge.com TECHNICAL MEMORANDUM 1. Changing this Document Change requests (MRs) for

More information

Liberate, a component-based service orientated reporting architecture

Liberate, a component-based service orientated reporting architecture Paper TS05 PHUSE 2006 Liberate, a component-based service orientated reporting architecture Paragon Global Services Ltd, Huntingdon, U.K. - 1 - Contents CONTENTS...2 1. ABSTRACT...3 2. INTRODUCTION...3

More information

Installing the PC-Kits SQL Database

Installing the PC-Kits SQL Database 1 Installing the PC-Kits SQL Database The Network edition of VHI PC-Kits uses a SQL database. Microsoft SQL is a database engine that allows multiple users to connect to the same database. This document

More information

DQpowersuite. Superior Architecture. A Complete Data Integration Package

DQpowersuite. Superior Architecture. A Complete Data Integration Package DQpowersuite Superior Architecture Since its first release in 1995, DQpowersuite has made it easy to access and join distributed enterprise data. DQpowersuite provides an easy-toimplement architecture

More information

Report Commander 2 User Guide

Report Commander 2 User Guide Report Commander 2 User Guide Report Commander 2.5 Generated 6/26/2017 Copyright 2017 Arcana Development, LLC Note: This document is generated based on the online help. Some content may not display fully

More information

SAS. Installation Guide Fifth Edition Intelligence Platform

SAS. Installation Guide Fifth Edition Intelligence Platform SAS Installation Guide Fifth Edition 9.1.3 Intelligence Platform The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS 9.1.3 Intelligence Platform: Installation

More information

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved.

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved. Configuring the Oracle Network Environment Objectives After completing this lesson, you should be able to: Use Enterprise Manager to: Create additional listeners Create Oracle Net Service aliases Configure

More information

Enterprise Miner Version 4.0. Changes and Enhancements

Enterprise Miner Version 4.0. Changes and Enhancements Enterprise Miner Version 4.0 Changes and Enhancements Table of Contents General Information.................................................................. 1 Upgrading Previous Version Enterprise Miner

More information

Hands-On Perl Scripting and CGI Programming

Hands-On Perl Scripting and CGI Programming Hands-On Course Description This hands on Perl programming course provides a thorough introduction to the Perl programming language, teaching attendees how to develop and maintain portable scripts useful

More information

Oracle Application Express: Administration 1-2

Oracle Application Express: Administration 1-2 Oracle Application Express: Administration 1-2 The suggested course agenda is displayed in the slide. Each lesson, except the Course Overview, will be followed by practice time. Oracle Application Express:

More information

BusinessObjects OLAP Intelligence XI

BusinessObjects OLAP Intelligence XI Configuring Overview BusinessObjects OLAP Intelligence XI allows users to connect to and design custom applications against OLAP data sources. OLAP Intelligence XI and its web components use the Microsoft

More information

AppDev StudioTM 3.2 SAS. Migration Guide

AppDev StudioTM 3.2 SAS. Migration Guide SAS Migration Guide AppDev StudioTM 3.2 The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS AppDev TM Studio 3.2: Migration Guide. Cary, NC: SAS Institute Inc.

More information

ControlPoint. Advanced Installation Guide. September 07,

ControlPoint. Advanced Installation Guide. September 07, ControlPoint Advanced Installation Guide September 07, 2017 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH., 2008-2017 All rights reserved. No part or section of the contents

More information

Document Management System GUI. v6.0 User Guide

Document Management System GUI. v6.0 User Guide Document Management System GUI v6.0 User Guide Copyright Copyright HelpSystems, LLC. All rights reserved. www.helpsystems.com US: +1 952-933-0609 Outside the U.S.: +44 (0) 870 120 3148 IBM, AS/400, OS/400,

More information

Real Application Security Administration

Real Application Security Administration Oracle Database Real Application Security Administration Console (RASADM) User s Guide 12c Release 2 (12.2) E85615-01 June 2017 Real Application Security Administration Oracle Database Real Application

More information

How Managers and Executives Can Leverage SAS Enterprise Guide

How Managers and Executives Can Leverage SAS Enterprise Guide Paper 8820-2016 How Managers and Executives Can Leverage SAS Enterprise Guide ABSTRACT Steven First and Jennifer First-Kluge, Systems Seminar Consultants, Inc. SAS Enterprise Guide is an extremely valuable

More information

NETWRIX WINDOWS SERVER CHANGE REPORTER

NETWRIX WINDOWS SERVER CHANGE REPORTER NETWRIX WINDOWS SERVER CHANGE REPORTER ADMINISTRATOR S GUIDE Product Version: 4.0 June 2013. Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

Administering Cloud Pod Architecture in Horizon 7. Modified on 4 JAN 2018 VMware Horizon 7 7.4

Administering Cloud Pod Architecture in Horizon 7. Modified on 4 JAN 2018 VMware Horizon 7 7.4 Administering Cloud Pod Architecture in Horizon 7 Modified on 4 JAN 2018 VMware Horizon 7 7.4 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

A SAS and Java Application for Reporting Clinical Trial Data. Kevin Kane MSc Infoworks (Data Handling) Limited

A SAS and Java Application for Reporting Clinical Trial Data. Kevin Kane MSc Infoworks (Data Handling) Limited A SAS and Java Application for Reporting Clinical Trial Data Kevin Kane MSc Infoworks (Data Handling) Limited Reporting Clinical Trials Is Resource Intensive! Reporting a clinical trial program for a new

More information

The Paperless Classroom with Google Docs by - Eric Curts

The Paperless Classroom with Google Docs by - Eric Curts The Paperless Classroom with Google Docs by - Eric Curts Table of Contents Overview How to name documents and folders How to choose sharing options: Edit, Comment, and View How to share a document with

More information

Mascot Insight Installation and setup guide

Mascot Insight Installation and setup guide Mascot Insight Installation and setup guide System requirements These are the system requirements for a Mascot Insight server. On the client side, Mascot Insight can be accessed from most web browsers.

More information

Chapter 3. Technology Adopted. 3.1 Introduction

Chapter 3. Technology Adopted. 3.1 Introduction Chapter 3 Technology Adopted 3.1 Introduction The previous chapter described difference between the propose system and traditional methods and also about the existing similar systems. In this chapter,

More information

Cheat sheet: Data Processing Optimization - for Pharma Analysts & Statisticians

Cheat sheet: Data Processing Optimization - for Pharma Analysts & Statisticians Cheat sheet: Data Processing Optimization - for Pharma Analysts & Statisticians ABSTRACT Karthik Chidambaram, Senior Program Director, Data Strategy, Genentech, CA This paper will provide tips and techniques

More information

Extended Search Administration

Extended Search Administration IBM Lotus Extended Search Extended Search Administration Version 4 Release 0.1 SC27-1404-02 IBM Lotus Extended Search Extended Search Administration Version 4 Release 0.1 SC27-1404-02 Note! Before using

More information

Crystal Enterprise. Overview. Contents. Web Server Overview - Internet Information System (IIS)

Crystal Enterprise. Overview. Contents. Web Server Overview - Internet Information System (IIS) Overview Contents This document provides an overview to web server technology particularly Microsoft s Internet Information Server (IIS) and its relationship with. Although this article has been written

More information

Micro Focus Desktop Containers

Micro Focus Desktop Containers White Paper Security Micro Focus Desktop Containers Whether it s extending the life of your legacy applications, making applications more accessible, or simplifying your application deployment and management,

More information

SAS Studio: A New Way to Program in SAS

SAS Studio: A New Way to Program in SAS SAS Studio: A New Way to Program in SAS Lora D Delwiche, Winters, CA Susan J Slaughter, Avocet Solutions, Davis, CA ABSTRACT SAS Studio is an important new interface for SAS, designed for both traditional

More information

How to Configure Authentication and Access Control (AAA)

How to Configure Authentication and Access Control (AAA) How to Configure Authentication and Access Control (AAA) Overview The Barracuda Web Application Firewall provides features to implement user authentication and access control. You can create a virtual

More information

SAS Cost and Profitability Management 8.3. Installation, Migration, and Configuration Guide

SAS Cost and Profitability Management 8.3. Installation, Migration, and Configuration Guide SAS Cost and Profitability Management 8.3 Installation, Migration, and Configuration Guide Copyright Notice The correct bibliographic citation for this manual is as follows: SAS Institute Inc., SAS Cost

More information

Migration of SAS Software From VMS to Windows NT : A Real Life Story

Migration of SAS Software From VMS to Windows NT : A Real Life Story Migration of Software From VMS to Windows NT : A Real Life Story Paul Gilbert & Steve Light at DataCeutics, Inc., John Scott Grainger at ClinTrials Research Introduction At ClinTrials Research, Inc. clinical

More information

JDMS - A Java Based Alternative to Motif DMS Windows Susanna Wallenberger, Janice Replogle, SAS Institute Inc., Cary NC

JDMS - A Java Based Alternative to Motif DMS Windows Susanna Wallenberger, Janice Replogle, SAS Institute Inc., Cary NC JDMS - A Java Based Alternative to Motif DMS Windows Susanna Wallenberger, Janice Replogle, SAS Institute Inc., Cary NC ABSTRACT JDMS harnesses the power of a SAS using Java technologies. JDMS is a Java

More information

Submitting Code in the Background Using SAS Studio

Submitting Code in the Background Using SAS Studio ABSTRACT SAS0417-2017 Submitting Code in the Background Using SAS Studio Jennifer Jeffreys-Chen, SAS Institute Inc., Cary, NC As a SAS programmer, how often does it happen that you would like to submit

More information

Perceptive Intelligent Capture Visibility

Perceptive Intelligent Capture Visibility Perceptive Intelligent Capture Visibility Installation and Setup Guide Version: 3.x Written by: Product Knowledge, R&D Date: September 2016 2015 Lexmark International Technology, S.A. All rights reserved.

More information

Oracle Database. Installation and Configuration of Real Application Security Administration (RASADM) Prerequisites

Oracle Database. Installation and Configuration of Real Application Security Administration (RASADM) Prerequisites Oracle Database Real Application Security Administration 12c Release 1 (12.1) E61899-04 May 2015 Oracle Database Real Application Security Administration (RASADM) lets you create Real Application Security

More information

Using SAS Enterprise Guide with the WIK

Using SAS Enterprise Guide with the WIK Using SAS Enterprise Guide with the WIK Philip Mason, Wood Street Consultants Ltd, United Kingdom ABSTRACT Enterprise Guide provides an easy to use interface to SAS software for users to create reports

More information

Why SAS Programmers Should Learn Python Too

Why SAS Programmers Should Learn Python Too PharmaSUG 2018 - Paper AD-12 ABSTRACT Why SAS Programmers Should Learn Python Too Michael Stackhouse, Covance, Inc. Day to day work can often require simple, yet repetitive tasks. All companies have tedious

More information

Workspace Administrator Help File

Workspace Administrator Help File Workspace Administrator Help File Table of Contents HotDocs Workspace Help File... 1 Getting Started with Workspace... 3 What is HotDocs Workspace?... 3 Getting Started with Workspace... 3 To access Workspace...

More information

WHITE PAPER. Good Mobile Intranet Technical Overview

WHITE PAPER. Good Mobile Intranet Technical Overview WHITE PAPER Good Mobile Intranet CONTENTS 1 Introduction 4 Security Infrastructure 6 Push 7 Transformations 8 Differential Data 8 Good Mobile Intranet Server Management Introduction Good Mobile Intranet

More information

DEPLOYMENT GUIDE DEPLOYING F5 WITH ORACLE ACCESS MANAGER

DEPLOYMENT GUIDE DEPLOYING F5 WITH ORACLE ACCESS MANAGER DEPLOYMENT GUIDE DEPLOYING F5 WITH ORACLE ACCESS MANAGER Table of Contents Table of Contents Introducing the F5 and Oracle Access Manager configuration Prerequisites and configuration notes... 1 Configuration

More information

SAS/IntrNet 9.2. Overview. SAS Documentation

SAS/IntrNet 9.2. Overview. SAS Documentation SAS/IntrNet 9.2 Overview SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2008. SAS/IntrNet 9.2: Overview. Cary, NC: SAS Institute Inc. SAS/IntrNet

More information

Qvidian Proposal Automation provides several options to help you accelerate the population of your content database.

Qvidian Proposal Automation provides several options to help you accelerate the population of your content database. Qvidian Proposal Automation Advantage: The Pragmatech Migration Opportunity This document describes the primary benefits that Pragmatech clients receive by migrating to Sant Suite 9, which through its

More information

WHAT IS THE CONFIGURATION TROUBLESHOOTER?

WHAT IS THE CONFIGURATION TROUBLESHOOTER? Paper 302-2008 Best Practices for SAS Business Intelligence Administrators: Using the Configuration Troubleshooter to Keep SAS Solutions and SAS BI Applications Running Smoothly Tanya Kalich, SAS Institute

More information

An Interactive GUI Front-End for a Credit Scoring Modeling System by Jeffrey Morrison, Futian Shi, and Timothy Lee

An Interactive GUI Front-End for a Credit Scoring Modeling System by Jeffrey Morrison, Futian Shi, and Timothy Lee An Interactive GUI Front-End for a Credit Scoring Modeling System by Jeffrey Morrison, Futian Shi, and Timothy Lee Abstract The need for statistical modeling has been on the rise in recent years. Banks,

More information

ZENworks Reporting System Reference. January 2017

ZENworks Reporting System Reference. January 2017 ZENworks Reporting System Reference January 2017 Legal Notices For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government rights, patent

More information

TIBCO Spotfire Web Player Release Notes. Software Release May 2012

TIBCO Spotfire Web Player Release Notes. Software Release May 2012 TIBCO Spotfire Web Player Release Notes Software Release 4.5.0 May 2012 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE

More information

5.1 Configuring Authentication, Authorization, and Impersonation. 5.2 Configuring Projects, Solutions, and Reference Assemblies

5.1 Configuring Authentication, Authorization, and Impersonation. 5.2 Configuring Projects, Solutions, and Reference Assemblies LESSON 5 5.1 Configuring Authentication, Authorization, and Impersonation 5.2 Configuring Projects, Solutions, and Reference Assemblies 5.3 Publish Web Applications 5.4 Understand Application Pools MTA

More information

Laserfiche Avante 9.2 Frequently Asked Questions. White Paper

Laserfiche Avante 9.2 Frequently Asked Questions. White Paper Laserfiche Avante 9.2 Frequently Asked Questions White Paper September 2014 Table of Contents Laserfiche Avante Basics... 3 What s the difference between a Laserfiche Avante installation and a Laserfiche

More information

JMP to LSAF Add-in. User Guide v1.1

JMP to LSAF Add-in. User Guide v1.1 JMP to LSAF Add-in User Guide v1.1 Table of Contents Terms and Conditions... 3 System Requirements... 3 Installation... 3 Configuration... 4 API Setup... 4 Java Configuration... 5 Logging In... 5 Launching

More information

Paper ###-YYYY. SAS Enterprise Guide: A Revolutionary Tool! Jennifer First, Systems Seminar Consultants, Madison, WI

Paper ###-YYYY. SAS Enterprise Guide: A Revolutionary Tool! Jennifer First, Systems Seminar Consultants, Madison, WI Paper ###-YYYY SAS Enterprise Guide: A Revolutionary Tool! Jennifer First, Systems Seminar Consultants, Madison, WI ABSTRACT Whether you are a novice or a pro with SAS, Enterprise Guide has something for

More information

EMC Ionix ControlCenter (formerly EMC ControlCenter) 6.0 StorageScope

EMC Ionix ControlCenter (formerly EMC ControlCenter) 6.0 StorageScope EMC Ionix ControlCenter (formerly EMC ControlCenter) 6.0 StorageScope Best Practices Planning Abstract This white paper provides advice and information on practices that will enhance the flexibility of

More information

DEL or DELETE - Deletes the character at cursor and/or characters to the right of the cursor and all highlighted (or selected) text.

DEL or DELETE - Deletes the character at cursor and/or characters to the right of the cursor and all highlighted (or selected) text. Computer Basics II Handout Objectives: 1. Getting familiar with your Keyboard. 2. How to Install Programs. a. From Web b. From CD c. How to Uninstall 3. How to Create Users 4. Group Permissions and Full

More information

ControlPoint. Installation Guide for SharePoint August 23,

ControlPoint. Installation Guide for SharePoint August 23, ControlPoint Installation Guide for SharePoint 2007 August 23, 2017 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH., 2008-2017 All rights reserved. No part or section of

More information

Print Audit 6. Print Audit 6 Documentation Apr :07. Version: Date:

Print Audit 6. Print Audit 6 Documentation Apr :07. Version: Date: Print Audit 6 Version: Date: 37 21-Apr-2015 23:07 Table of Contents Browse Documents:..................................................... 3 Database Documentation.................................................

More information

Red Hat Enterprise Virtualization 3.6

Red Hat Enterprise Virtualization 3.6 Red Hat Enterprise Virtualization 3.6 Introduction to the Administration Portal Accessing and Using the Administration Portal Last Updated: 2017-09-27 Red Hat Enterprise Virtualization 3.6 Introduction

More information

Scheduling in SAS 9.4, Second Edition

Scheduling in SAS 9.4, Second Edition Scheduling in SAS 9.4, Second Edition SAS Documentation September 5, 2017 The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2016. Scheduling in SAS 9.4, Second Edition.

More information

Installation and Configuration Guide

Installation and Configuration Guide Installation and Configuration Guide 2013 DataNet Quality Systems. All rights reserved. Printed in U.S.A. WinSPC and QualTrend are registered trademarks of DataNet Quality Systems. All other trademarks

More information

Enterprise Java Unit 1- Chapter 3 Prof. Sujata Rizal Introduction to Servlets

Enterprise Java Unit 1- Chapter 3 Prof. Sujata Rizal Introduction to Servlets 1. Introduction How do the pages you're reading in your favorite Web browser show up there? When you log into your favorite Web site, how does the Web site know that you're you? And how do Web retailers

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

Red Hat Virtualization 4.0

Red Hat Virtualization 4.0 Red Hat Virtualization 4.0 Introduction to the Administration Portal Accessing and Using the Administration Portal Last Updated: 2017-11-28 Red Hat Virtualization 4.0 Introduction to the Administration

More information

Administering Cloud Pod Architecture in Horizon 7. Modified on 26 JUL 2017 VMware Horizon 7 7.2

Administering Cloud Pod Architecture in Horizon 7. Modified on 26 JUL 2017 VMware Horizon 7 7.2 Administering Cloud Pod Architecture in Horizon 7 Modified on 26 JUL 2017 VMware Horizon 7 7.2 Administering Cloud Pod Architecture in Horizon 7 You can find the most up-to-date technical documentation

More information

DefendX Software Control-Audit for Hitachi Installation Guide

DefendX Software Control-Audit for Hitachi Installation Guide DefendX Software Control-Audit for Hitachi Installation Guide Version 4.1 This guide details the method for the installation and initial configuration of DefendX Software Control-Audit for NAS, Hitachi

More information

Logi Ad Hoc Reporting System Administration Guide

Logi Ad Hoc Reporting System Administration Guide Logi Ad Hoc Reporting System Administration Guide Version 12 July 2016 Page 2 Table of Contents INTRODUCTION... 4 APPLICATION ARCHITECTURE... 5 DOCUMENT OVERVIEW... 6 GENERAL USER INTERFACE... 7 CONTROLS...

More information

Accops HyWorks v3.0. Installation Guide

Accops HyWorks v3.0. Installation Guide Accops HyWorks v3.0 Installation Guide Last Update: 4/25/2017 2017 Accops Technologies Pvt. Ltd. All rights reserved. The information contained in this document represents the current view of Propalms

More information

Investigator Site OC RDC PDF User Guide

Investigator Site OC RDC PDF User Guide Investigator Site OC RDC PDF User Guide Version 1.0 Page 1 of 40 TABLE OF CONTENTS Accessing OC RDC Steps for Access 3 Logging On 4 Change Password 4 Laptop and System Security 5 Change Study 5 Navigating

More information

TANDBERG Management Suite - Redundancy Configuration and Overview

TANDBERG Management Suite - Redundancy Configuration and Overview Management Suite - Redundancy Configuration and Overview TMS Software version 11.7 TANDBERG D50396 Rev 2.1.1 This document is not to be reproduced in whole or in part without the permission in writing

More information

EnterpriseLink and LDAP

EnterpriseLink and LDAP Case Requirement A client has an EnterpriseLink application and wishes to utilize their Linux LDAP server to validate Users against, then use the EnterpriseLink feature of pooled logons to the mainframe.

More information

INSTALL GUIDE BIOVIA INSIGHT 2016

INSTALL GUIDE BIOVIA INSIGHT 2016 INSTALL GUIDE BIOVIA INSIGHT 2016 Copyright Notice 2015 Dassault Systèmes. All rights reserved. 3DEXPERIENCE, the Compass icon and the 3DS logo, CATIA, SOLIDWORKS, ENOVIA, DELMIA, SIMULIA, GEOVIA, EXALEAD,

More information

Introduction to AppDev Studio Software

Introduction to AppDev Studio Software Introduction to AppDev Studio Software Olivier Zaech SAS Switzerland Introduction This paper is an introduction to AppDev Studio software. AppDev Studio is a complete Standalone Information Delivery Java

More information

Halo Administrator GUIDE

Halo Administrator GUIDE Halo Administrator GUIDE Contents Welcome to Halo... 3 Secure Sign-In... 4 Forgot Password... 4 Messages... 5 Create and Send a Message... 5 Message Enhancements... 6 Quick Note... 6 Mark as Urgent...

More information

OrgPublisher 8.1 PluginX Implementation Guide

OrgPublisher 8.1 PluginX Implementation Guide OrgPublisher 8.1 PluginX Implementation Guide Introduction Table of Contents Introduction... 3 OrgPublisher Architecture Overview... 4 OrgPublisher Architecture Components... 4 Data Source... 5 Org Chart

More information

Module I: Clinical Trials a Practical Guide to Design, Analysis, and Reporting 1. Fundamentals of Trial Design

Module I: Clinical Trials a Practical Guide to Design, Analysis, and Reporting 1. Fundamentals of Trial Design Module I: Clinical Trials a Practical Guide to Design, Analysis, and Reporting 1. Fundamentals of Trial Design Randomized the Clinical Trails About the Uncontrolled Trails The protocol Development The

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

Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging. Quick-Start Manual

Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging. Quick-Start Manual Mobiketa Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging Quick-Start Manual Overview Mobiketa Is a full-featured Bulk SMS and Voice SMS marketing script that gives you control over your

More information

TRIS Teaching Resource Information Service

TRIS Teaching Resource Information Service TRIS Teaching Resource Information Service Newsletter Issue 4 The TRIS - team at the Faculty of Sciences, University of Kent, Canterbury Funded by Challenge Fund, UELT P DF (portable document format) documents

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

SOFTWARE AND HARDWARE REQUIREMENTS In order to use Design-time Controls, you must meet the following software and hardware requirements.

SOFTWARE AND HARDWARE REQUIREMENTS In order to use Design-time Controls, you must meet the following software and hardware requirements. Point and Click Web Pages with Design-Time Controls and SAS/IntrNet Vincent DelGobbo, SAS Institute Inc., Cary, NC John Leveille, ibiomatics LLC, Cary, NC ABSTRACT SAS Design-Time Controls (DTCs) are a

More information