An Overview of REDCap, a secure web-based application for Electronic Data Capture

Size: px
Start display at page:

Download "An Overview of REDCap, a secure web-based application for Electronic Data Capture"

Transcription

1 PharmaSUG Paper PO19 An Overview of REDCap, a secure web-based application for Electronic Data Capture Kevin Viel; inventiv Health Clinical and Histonis, Incorporated; Atlanta, GA ABSTRACT REDCap (Research Electronic Data Capture) is a secure web application for building and managing online surveys and databases. With the simplest use, REDCap automates the interactions with the SAS System, providing an option to manually download files, including SAS code to create a SAS dataset and format library. Involvement of the SAS System in order of increasing sophistication includes using SAS to write the data dictionary or template for the electronic forms, using an API to access the projects, or to read the MySQL databases directly. This paper provides a very brief introduction to REDCap and a superficial overview of the using SAS System with REDCap. INTRODUCTION Electronic Data Capture (EDC) expands the ability of researchers to use questionnaires and surveys, while improving the integrity and completeness of the responses and eliminating replicate manual data entry. The REDCap Consortium provides a secure, web-based EDC application (REDCap 1 ) hosted by the partner institutes and organizations that supports EDC for research studies by providing: 1) an intuitive interface for validated data entry; 2) audit trails for tracking data manipulation and export procedures; 3) automated export procedures for seamless data downloads to common statistical packages; and 4) procedures for importing data from external sources. Importantly, under certain standard operating procedures (SOP), REDCap can be (FDA) 21 CFR Part 11 2 compliant. The REDCap website ( offers (extensive) libraries including templates, suggested language for IRB protocol applications, and video tutorials. The list serve and Consortium Wiki has generally been extremely helpful. Importantly, if one s organization qualifies as an institutional partner, the software and support are available at no-charge. REDCap requires, at a minimum, a Web server with PHP, a MySQL database server and a SMTP server. From absolute scratch, a very modest institutional partner should not be unduly tasked with obtaining and executing the agreement forms (contracts), submitting them to the REDCap consortium for approval, registering a web domain, obtaining a SSL certificate, downloading and installing the software. Having an experienced IT person, as the author did, obviously makes the process easier. Once the software is correctly installed, an intuitive SAS programmer could probably navigate as the administrator to create a project and bring it to the production state. For the less brave or for those with less time to experiment, following the videos provided by the website is another route. This paper will also briefly describe the process, but it is not intended to be authoritative or current; the reader should consider what follows as guidance only. CREATING A REDCap PROJECT Upon logging onto an account with administrative privileges, this REDCap user will select the "Create New Project" tab (Figure 1). After entering details such as "Project title", the user will click the "Create Project" button. Further project details can then be edited or created (Figure 2). To explore REDCap, select the "Online Designer" button under "Design your data collection instruments". The collection of instruments (forms or questionnaires, for instance) of the project are displayed. Since this is our first project and we did not copy it, the default "My First Instrument" is the only instrument available. For this introduction, we will not rename it. Clicking the instrument brings us to the fields of the instrument. The only field available is the required primary key of the table, given the default name "Record ID". By clicking the Pencil icon in the variable field (Figure 3a), one can edit the field (Figure 3b). Instead, we will click Add Field to obtain a list of possible choices (Figure 3c). We have select Multiple Choice Drop-down List (Single Answer) and provide the Variable Name, a Field Lable, and the Choices (Figure 4b). We create another variable, Issue, as Text Box (Short Answer). After clicking Save (not shown), the screen returns to the fields of the instrument. Clicking the branching logic icon allows us to employ conditional logic, namely show this field in the online form only if the person answering the questionnaire answered None to the question Learn. Finally, we add a variable Date. The field type, however, is again Text Box (Short Answer). To distinguish the field as a date field, we select the Date(Y-M-D) in the Validation? pull-down list (Figure 5). Page 1 of 14

2 At this point, the design is complete for our purposes. One can access the form by either clicking on "My Projects" or "My First Instrument" in the left column. The latter accesses the form directly (Figure 6). Note that the author entered a 1 in the field "Enter a new or existing Record ID". Hitting Enter or Tab will bring the user to questionnaire screen (Figure 7a). The question Issue is not displayed (Figure 7a) unless Learn is None (Figure 7b). A warning about REDCap is pertinent. If one enters (extensive) data into variables that are subject to branching and then change the value of the variable upon which branching depends, then REDCap may set to missing the values of those variables subject to branching. It does so only after a warning. If the user employs the practice of frequently saving by clicking the "Save and Continue" button at the bottom of the screen, then the value will be subject to the audit trail available by clicking the H button to the top left of the field entry (Figure 8). Note that the value in the field is "A Great Amount" but is not among the Data History of the field. The author did not save this value. Also note that the Issue field is not displayed. To see it, and thus to click its H button, the user would have to supply the answer None to the Learn field. Other ways to view the audit trail exists. By returning to the Project Home (Figure 9), the user can access tasks and reports for the project. Of great interest to the SAS programmer who may employ REDCap or work with a REDCap user is the Quick link: Download the current Data Dictionary. DATA DICTIONARY The Data Dictionary is a CSV file defining a table with 17 columns (Table 1). This template defines the variables, the branching, and special appearances. Not unusually, questionnaires can extend many pages spanning hundreds if not thousands of questions and items. Even with a manageable number of variables, a typical SAS programmer would probably prefer a more automated way to create the data dictionaries. If, as expected, the list of variables and their descriptions are available electronically, then one can use the SAS System to write the CSV file that creates the various questionnaires and the questions they contain. The SAS code in CODE 1 suggests such an alternative. TABLE 1. Data Dictionary CSV file header Column Name 1 Variable / Field Name 2 Form Name 3 Section Header 4 Field Type 5 Field Label 6 Choices, Calculations, OR Slider Labels 7 Field Note 8 Text Validation Type OR Show Slider Number 9 Text Validation Min 10 Text Validation Max 11 Identifier? 12 Branching Logic (Show field only if...) 13 Required Field? 14 Custom Alignment 15 Question Number (surveys only) 16 Matrix Group Name 17 Matrix Ranking? Page 2 of 14

3 CUSTOMIZING THE FORMS REDCap does an excellent job of rendering a readable questionnaire. Providing some Validation such as ranges or even formats will help control both the data entry and quality. The possibilities are extensive, but a few examples follow: Text Validation Type OR Show Slider Number: date_mdy Section Header: <font size = "3" color = "blue">coagulation Data</font> Choices, Calculations, OR Slider Labels: 0 1, 1-5 2, , , , > 150 1, Yes 0, No 2, don't know , 4 or more With regard to the Choices, the ability to generate a long or complicated list programmatically is helpful. The use of text labels for the coded values translates to a FORMAT in the SAS System, which is discussed briefly in the Export section. Once the REDCap updates the data dictionary or creates new one, then he or she may upload the data dictionary (Figure 10). ACCESSING DATA DATABASE STRUCTURE For the most part, the structure of the database matters little to the SAS programmer. Nonetheless, the structure of the database might be unusual to the SAS programmer with little to no experience with other databases. The projects of REDCap are kept within on MySQL database the relational tables of which follow the Entity Attribute Value model (EAV) model. This model is common in the medical record field and may have efficiencies with sparse data 3. In short, do not expect to find a tabular format (rows/columns or, in the SAS system, observations/variables). API REDCap provides both an API (Application Programming Interface) and video demonstrating its use. Worley and Yang 4 have written an accessible paper about using the API with SAS. Finally, the REDCap List serve is an excellent resource. The API Token generated restricts access to only the project for which the administrator created it requiring the user to have access to that project (FIGURE 11). ODBC In the Microsoft Windows operating system, one can create an ODBC Data Source Name [DSN: Control Panel > System and Security > Administrative Tools > Data Sources (ODBC)] that can then be used in a LIBNAME statement (suggested): Libname MySQL ODBC Datasrc = MySQL_3_51 User = &MySQL_User. PWD = &MySQL_PWD. Schema = psug_test ; Coordination with the MySQL database and web-site administrator may be necessary, for instance to allow communication via a certain port and, potential, by restricted (static) IP addresses. When accessing the data in via ODBC, the database structure (EAV) will not only be obvious, but an understanding of it will be necessary to create a SAS datasets. The author, at this time, offers no opinion concerning efficacy or security, other than to note that it appeared to him that permission to certain projects may have been circumvented; the ODBC method of access might be best restricted to only those individual who have access to the entire database, not just certain projects. For instance, those who should be blinded to certain data or do not have (HIPAA) approval to certain data should perhaps not use this data access method. Page 3 of 14

4 EXPORT REDCap will export (Figure 12) three files to create a SAS dataset and formats with the click of three buttons (Figure 13). The data are in CSV format with no header, in the simple example of this paper: "1",1,""," ",0 It also creates a.sas file (Code 2), although the formatting of the original file could be improved and has been slightly edited for presentation purposes here. A third.bat file is also available as a driver. Note that the output of these files is temporary datasets. The author does not use the.bat file, but rather edits the.sas file to create permanent SAS datasets and formats. Note that the code includes a FORMAT procedure (lines 39-44) and applies them as permanent formats. The SAS programmer will have create permanent dataset and library for formats. CONCLUSION REDCap is a secure, web-based application that a SAS programmer should be able to use intuitively to build forms and export their data. The REDCap consortium lists an impressive number of partners, some of whom are using REDCap for clinical trials in a regulated environment (FDA, for instance). In the most basic use, REDCap provides a simple method to export the data from the forms of a project and to run a SAS program that REDCap generated to create temporary datasets and formats. As the number of download to export the data increases, a SAS programmer can choose between at least two different programmatic approaches to avoid the GUI: the API and ODBC methods. Finally, to further reduce the manual interaction with the GUI, a SAS programmer can use current data dictionaries to create a project template with multiple forms and questions (variables) that REDCap also refers to as a data dictionary. ACKNOWLEGEMENTS This work was supported in part by the following grants: NIH-5RC2HL , NIH-5R01HL , and NIH-5K08HL In addition, Greg and Rebecca Kaneb graciously supported this effort. Contact Information Your comments and questions are valued and encouraged. Contact the author at: Name: Kevin Viel Enterprise: inventiv Health Clinical Histonis, Incorporated kevin.viel@inventivhealth.com, kviel@histonis.org Web: SAS and all other SAS Institute Inc. product or service names are registered trademarks or trademarks of SAS Institute Inc. in the USA and other countries. indicates USA registration. REDCap is a registered trademark of Vanderbilt University, Nashville, Tennessee Other brand and product names are trademarks of their respective companies. REFERENCES 1 Paul A. Harris, Robert Taylor, Robert Thielke, Jonathon Payne, Nathaniel Gonzalez, Jose G. Conde, Research electronic data capture (REDCap) - A metadata-driven methodology and workflow process for providing translational research informatics support, J Biomed Inform Apr;42(2): Dinu, V. and P. Nadkarni (2007). "Guidelines for the effective use of entity-attribute-value modeling for biomedical databases." Int J Med Inform 76(11-12): Page 4 of 14

5 4 Worley S and Yang D. SAS and REDCap API: Efficient and Reproducible Data Import and Export. Proceedings of MidWest SAS Users Group Page 5 of 14

6 FIGURES (SCREEN CAPTURES) Figure 1. Figure 2. Page 6 of 14

7 Figure 3b. Figure 3a. Figure 4a. Figure 3c. Figure 4b. Page 7 of 14

8 Figure 5. Figure 6. Page 8 of 14

9 Figure 7a. Figure 7b. Figure 8. Page 9 of 14

10 Figure 9. Figure 10. Page 10 of 14

11 Figure 11. Figure 12. Page 11 of 14

12 Figure 13. Page 12 of 14

13 CODE 1 Data _null_ ; File "C:\REDCap\Data_Dictionary\PharmaSUG_2014\DD_ csv" DSD Dlm = "2C"x LRECL = 2000 ; If _n_ = 1 Then Put "Variable / Field Name" ",Form Name" ",Section Header" ",Field Type" ",Field Label" ',"Choices,Calculations,OR Slider Labels"' ",Field Note" ",Text Validation Type OR Show Slider Number" ",Text Validation Min" ",Text Validation Max" ",Identifier?" ",Branching Logic (Show field only if...)" ",Required Field?" ",Custom Alignment" ",Question Number (surveys only)" ",Matrix Group Name" ; /* Set DD ; Array RC_Col ( 18 ) $ 500 ; Do _N_ = 1 To 18 ; Put RC_Col( _N_ ; End ; Put ; */ Run ; Page 13 of 14

14 CODE %macro removeoldfile(bye); %if %sysfunc(exist(&bye.)) %then %do; proc delete data=&bye.; run; %end; %mend removeoldfile; %removeoldfile(work.redcap); data REDCAP; %let _EFIERR_ = 0; infile 'PharmaSUG2014PO19_DATA_NOHDRS_ _1328.csv' delimiter = ',' MISSOVER DSD lrecl=32767 firstobs=1 ; informat record_id $500. ; informat learn best32. ; informat issue $500. ; informat date yymmdd10. ; informat my_first_instrument_complete best32. ; format record_id $500. ; format learn best12. ; format issue $500. ; format date yymmdd10. ; format my_first_instrument_complete best12. ; input record_id $ learn issue $ date my_first_instrument_complete ; if _ERROR_ then call symput('_efierr_',"1"); run; proc contents;run; data redcap; set redcap; label record_id='record ID'; label learn='how much did this paper increase your knowledge of REDCap?'; label issue='if you learned nothing, please tell us why?'; label date='todays Date'; label my_first_instrument_complete='complete?'; run; proc format; value learn_ 0='None' 1='A Modest Amount' 2='A Great Amount'; value my_first_instrument_complete_ 0='Incomplete' 1='Unverified' 2='Complete'; run; data redcap; set redcap; format learn learn_.; format my_first_instrument_complete my_first_instrument_complete_.; run; proc contents data=redcap; proc print data=redcap; run; quit; Page 14 of 14

REDCap Data Management

REDCap Data Management REDCap Data Management How to begin using REDCap to collect and manage your research data CTSC Biomedical Informatics Program What is REDCap? REDCap (Research Electronic Data Capture) is a secure web application

More information

Introduction to REDCap for Clinical Data Collection Shannon M. Morrison, M.S. Quantitative Health Sciences Cleveland Clinic Foundation, Cleveland, OH

Introduction to REDCap for Clinical Data Collection Shannon M. Morrison, M.S. Quantitative Health Sciences Cleveland Clinic Foundation, Cleveland, OH Paper RX-01-2013 Introduction to REDCap for Clinical Data Collection Shannon M. Morrison, M.S. Quantitative Health Sciences Cleveland Clinic Foundation, Cleveland, OH Abstract REDCap (Research Electronic

More information

How To Use Redcap

How To Use Redcap Basic REDCap Tutorial 101 UCSF ITS Academic Research Systems Presented by warren.steele@ucsf.edu 415 476 9830 Please complete a survey about this class: Basic REDCap Tutorial 101 https://redcap.ucsfopenresearch.org/surveys

More information

REDCap Web-interface Database System

REDCap Web-interface Database System REDCap Web-interface Database System Jonathan D. Mahnken, Ph.D. Associate Professor, Department of Biostatistics Director, October 6, 2012 1 What is REDCap? Research Electronic Data Capture (REDCap) [REDCap]

More information

Research Electronic Data Capture Prepared by Angela Juan

Research Electronic Data Capture Prepared by Angela Juan REDCAP OVERVIEW Research Electronic Data Capture Prepared by Angela Juan What is REDCap? REDCap (Research Electronic Data Capture) is a browser-based, data-driven software solution for designing and building

More information

Creating and Managing Online Surveys LEVEL 2

Creating and Managing Online Surveys LEVEL 2 Creating and Managing Online Surveys LEVEL 2 Accessing your online survey account 1. If you are logged into UNF s network, go to https://survey. You will automatically be logged in. 2. If you are not logged

More information

Research Electronic Data Capture (REDCap)

Research Electronic Data Capture (REDCap) Research Electronic Data Capture (REDCap) An Introduction and Training Seminar Kenna Whitley Center for Research Methods and Data Analysis What is REDCap? A secure, web based electronic data capture system

More information

MERS-CoV Outbreak Management Database Case Management, Contact Tracing, and Symptom Monitoring

MERS-CoV Outbreak Management Database Case Management, Contact Tracing, and Symptom Monitoring MERS-CoV Outbreak Management Database Case Management, Contact Tracing, and Symptom Monitoring Presenter Information Tennessee Department of Health (TDH), Nashville, TN Presented by Shannon Harney, CDC/CSTE

More information

The Clinical Research Center

The Clinical Research Center The Clinical Research Center Clinical Research Database and Web Survey Technologies An Overview of products available to Children s Hospital Boston Investigators The Clinical Research Center Page 2 Data

More information

Novell ZENworks Asset Management 7.5

Novell ZENworks Asset Management 7.5 Novell ZENworks Asset Management 7.5 w w w. n o v e l l. c o m October 2006 USING THE WEB CONSOLE Table Of Contents Getting Started with ZENworks Asset Management Web Console... 1 How to Get Started...

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

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

ABSTRACT INTRODUCTION FILE IMPORT WIZARD

ABSTRACT INTRODUCTION FILE IMPORT WIZARD SAS System Generates Code for You while Using Import/Export Procedure Anjan Matlapudi and J. Daniel Knapp Pharmacy Informatics, PerformRx, The Next Generation PBM, 200 Stevens Drive, Philadelphia, PA 19113

More information

William E Benjamin Jr, Owl Computer Consultancy, LLC

William E Benjamin Jr, Owl Computer Consultancy, LLC So, You ve Got Data Enterprise Wide (SAS, ACCESS, EXCEL, MySQL, Oracle, and Others); Well, Let SAS Enterprise Guide Software Point-n-Click Your Way to Using It. William E Benjamin Jr, Owl Computer Consultancy,

More information

Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ

Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ PharmaSUG 2014 PO10 Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ ABSTRACT As more and more organizations adapt to the SAS Enterprise Guide,

More information

Search help. More on Office.com: images templates

Search help. More on Office.com: images templates Page 1 of 14 Access 2010 Home > Access 2010 Help and How-to > Getting started Search help More on Office.com: images templates Access 2010: database tasks Here are some basic database tasks that you can

More information

Salesforce Customer Portal Implementation Guide

Salesforce Customer Portal Implementation Guide Salesforce Customer Portal Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Data Collection Database options and Data Management considerations. Paul Donnelly George Clinical The George Institute for Global Health

Data Collection Database options and Data Management considerations. Paul Donnelly George Clinical The George Institute for Global Health Data Collection Database options and Data Management considerations Paul Donnelly George Clinical The George Institute for Global Health 1 Overview Introduction and types of studies Scope of research studies

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

Importing Excel Files Into SAS Using DDE Curtis A. Smith, Defense Contract Audit Agency, La Mirada, CA

Importing Excel Files Into SAS Using DDE Curtis A. Smith, Defense Contract Audit Agency, La Mirada, CA Importing Excel Files Into SAS Using DDE Curtis A. Smith, Defense Contract Audit Agency, La Mirada, CA ABSTRACT With the popularity of Excel files, the SAS user could use an easy way to get Excel files

More information

SigmaSoft International Software Features

SigmaSoft International Software Features SigmaSoft International Software Features www.sigmasoftintl.com SigmaSoft International SigmaSoft International is a global provider of data management software for clinical trials - DMSys. We provide

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

More information

Choosing the Best Method to Create an Excel Report Romain Miralles, Clinovo, Sunnyvale, CA

Choosing the Best Method to Create an Excel Report Romain Miralles, Clinovo, Sunnyvale, CA Choosing the Best Method to Create an Excel Report Romain Miralles, Clinovo, Sunnyvale, CA ABSTRACT PROC EXPORT, LIBNAME, DDE or excelxp tagset? Many techniques exist to create an excel file using SAS.

More information

Qualtrics Survey Software. Create an Account

Qualtrics Survey Software. Create an Account Qualtrics Survey Software Qualtrics is online survey software with the ability to create and distribute surveys, quizzes, and polls. Katz and CBA faculty, staff, and students may create accounts. There

More information

Paul Harris, PhD. Planning, Collecting and Managing Data For Clinical And Translational Research

Paul Harris, PhD. Planning, Collecting and Managing Data For Clinical And Translational Research Planning, Collecting and Managing Data For Clinical And Translational Research Paul Harris, PhD Associate Professor Department of Biomedical Informatics Vanderbilt University Agenda Data Planning for Clinical

More information

Creating Online Surveys with Qualtrics Survey Tool

Creating Online Surveys with Qualtrics Survey Tool Creating Online Surveys with Qualtrics Survey Tool Copyright 2015, Faculty and Staff Training, West Chester University. A member of the Pennsylvania State System of Higher Education. No portion of this

More information

Starting User Guide 11/29/2011

Starting User Guide 11/29/2011 Table of Content Starting User Guide... 1 Register... 2 Create a new site... 3 Using a Template... 3 From a RSS feed... 5 From Scratch... 5 Edit a site... 6 In a few words... 6 In details... 6 Components

More information

MS Outlook 2002/2003. V1.0 BullsEye Telecom Email

MS Outlook 2002/2003. V1.0 BullsEye Telecom Email IMAP Settings Manual Our application allows you to access your email in many different ways. For those of you who do not wish to use the Webmail interface, you may also manage your email and custom folder

More information

Apparo Fast Edit. Excel data import via email 1 / 19

Apparo Fast Edit. Excel data import via email 1 / 19 Apparo Fast Edit Excel data import via email 1 / 19 1 2 3 4 5 Definition 3 Benefits at a glance 3 Example 4 3.1 Use Case 4 3.2 How users experience this feature 4 Email ImportBusiness Case 6 4.1 Creating

More information

SAS Business Data Network 3.1

SAS Business Data Network 3.1 SAS Business Data Network 3.1 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2014. SAS Business Data Network 3.1: User's Guide. Cary,

More information

REx: An Automated System for Extracting Clinical Trial Data from Oracle to SAS

REx: An Automated System for Extracting Clinical Trial Data from Oracle to SAS REx: An Automated System for Extracting Clinical Trial Data from Oracle to SAS Edward McCaney, Centocor Inc., Malvern, PA Gail Stoner, Centocor Inc., Malvern, PA Anthony Malinowski, Centocor Inc., Malvern,

More information

THE TOP TEN TIPS FOR USING QUALTRICS AT BYU

THE TOP TEN TIPS FOR USING QUALTRICS AT BYU THE TOP TEN TIPS FOR USING QUALTRICS AT BYU TIP #1: CREATING A SURVEY FROM A COPY AND COLLABORATING ON SURVEYS TIP #2: CREATING AND USING PANELS TIP #3: LIBRARIES AND HOW TO USE THEM TIP #4: BASIC SKIP

More information

Visualization with Excel Tools and Microsoft Azure

Visualization with Excel Tools and Microsoft Azure Visualization with Excel Tools and Microsoft Azure Introduction Power Query and Power Map are add-ins that are available as free downloads from Microsoft to enhance the data access and data visualization

More information

WorkKeys Internet Version Test Administration and User Guide

WorkKeys Internet Version Test Administration and User Guide WorkKeys Internet Version Test Administration and User Guide ACT endorses the Code of Fair Testing Practices in Education and the Code of Professional Responsibilities in Educational Measurement, guides

More information

Seamless Web Data Entry for SAS Applications D.J. Penix, Pinnacle Solutions, Indianapolis, IN

Seamless Web Data Entry for SAS Applications D.J. Penix, Pinnacle Solutions, Indianapolis, IN Seamless Web Data Entry for SAS Applications D.J. Penix, Pinnacle Solutions, Indianapolis, IN ABSTRACT For organizations that need to implement a robust data entry solution, options are somewhat limited

More information

Strategic Asset Tracking System User Guide

Strategic Asset Tracking System User Guide Strategic Asset Tracking System User Guide Contents 1 Overview 2 Web Application 2.1 Logging In 2.2 Navigation 2.3 Assets 2.3.1 Favorites 2.3.3 Purchasing 2.3.4 User Fields 2.3.5 History 2.3.6 Import Data

More information

VX Search File Search Solution. VX Search FILE SEARCH SOLUTION. User Manual. Version 8.2. Jan 2016. www.vxsearch.com info@flexense.com. Flexense Ltd.

VX Search File Search Solution. VX Search FILE SEARCH SOLUTION. User Manual. Version 8.2. Jan 2016. www.vxsearch.com info@flexense.com. Flexense Ltd. VX Search FILE SEARCH SOLUTION User Manual Version 8.2 Jan 2016 www.vxsearch.com info@flexense.com 1 1 Product Overview...4 2 VX Search Product Versions...8 3 Using Desktop Product Versions...9 3.1 Product

More information

File Management Utility User Guide

File Management Utility User Guide File Management Utility User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held

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

Xerox Multifunction Devices. Verify Device Settings via the Configuration Report

Xerox Multifunction Devices. Verify Device Settings via the Configuration Report Xerox Multifunction Devices Customer Tips March 15, 2007 This document applies to these Xerox products: X WC 4150 X WCP 32/40 X WCP 35/45/55 X WCP 65/75/90 X WCP 165/175 X WCP 232/238 X WCP 245/255 X WCP

More information

Transferring Your Hosting Account

Transferring Your Hosting Account Transferring Your Hosting Account Setting up your Web site on our secure hosting servers So you want to host your Web site on our secure servers, but you want to avoid costly mistakes and excessive site

More information

5.2.3 Thank you message 5.3 - Bounce email settings Step 6: Subscribers 6.1. Creating subscriber lists 6.2. Add subscribers 6.2.1 Manual add 6.2.

5.2.3 Thank you message 5.3 - Bounce email settings Step 6: Subscribers 6.1. Creating subscriber lists 6.2. Add subscribers 6.2.1 Manual add 6.2. Step by step guide Step 1: Purchasing an RSMail! membership Step 2: Download RSMail! 2.1. Download the component 2.2. Download RSMail! language files Step 3: Installing RSMail! 3.1: Installing the component

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

ECLIPSE & Faircom ODBC Driver

ECLIPSE & Faircom ODBC Driver A division of HNA Computer Systems, Inc. ECLIPSE & Faircom ODBC Driver Getting started is actually quite simple and like most things if you follow all the right steps you should not have any problems.

More information

Suite. How to Use GrandMaster Suite. Exporting with ODBC

Suite. How to Use GrandMaster Suite. Exporting with ODBC Suite How to Use GrandMaster Suite Exporting with ODBC This page intentionally left blank ODBC Export 3 Table of Contents: HOW TO USE GRANDMASTER SUITE - EXPORTING WITH ODBC...4 OVERVIEW...4 WHAT IS ODBC?...

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Introduction... 3 What is Pastel Partner (BIC)?... 3 System Requirements... 4 Getting Started Guide... 6 Standard Reports Available... 6 Accessing the Pastel Partner (BIC) Reports...

More information

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 Often the most compelling way to introduce yourself to a software product is to try deliver value as soon as possible. Simego DS3 is designed to get you

More information

CIMHT_006 How to Configure the Database Logger Proficy HMI/SCADA CIMPLICITY

CIMHT_006 How to Configure the Database Logger Proficy HMI/SCADA CIMPLICITY CIMHT_006 How to Configure the Database Logger Proficy HMI/SCADA CIMPLICITY Outline The Proficy HMI/SCADA CIMPLICITY product has the ability to log point data to a Microsoft SQL Database. This data can

More information

UCSF Academic Research Systems

UCSF Academic Research Systems Research Electronic Data Capture (REDCap) 102 REDCap Tutorial 102 UCSF Academic Research Systems Presented by Warren.Steele@ucsf.edu 415 476 9830 ARS Services MyResearch Secure, HIPAA compliant web-based

More information

SAS Visual Analytics 7.2 for SAS Cloud: Quick-Start Guide

SAS Visual Analytics 7.2 for SAS Cloud: Quick-Start Guide SAS Visual Analytics 7.2 for SAS Cloud: Quick-Start Guide Introduction This quick-start guide covers tasks that account administrators need to perform to set up SAS Visual Statistics and SAS Visual Analytics

More information

USER GUIDE: MaaS360 Services

USER GUIDE: MaaS360 Services USER GUIDE: MaaS360 Services 05.2010 Copyright 2010 Fiberlink Corporation. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

PaperClip Audit System Installation Guide

PaperClip Audit System Installation Guide Installation Guide Version 1.0 Copyright Information Copyright 2005, PaperClip Software, Inc. The PaperClip32 product name and PaperClip Logo are registered trademarks of PaperClip Software, Inc. All brand

More information

Installation and Administration Guide

Installation and Administration Guide Installation and Administration Guide Release 8 This installation guide will walk you through how to install and deploy Conga Composer, including recommended settings for the application. Contact Support:

More information

Software Application Tutorial

Software Application Tutorial Software Application Tutorial Copyright 2005, Software Application Training Unit, West Chester University. No Portion of this document may be reproduced without the written permission of the authors. For

More information

Writer Guide. Chapter 15 Using Forms in Writer

Writer Guide. Chapter 15 Using Forms in Writer Writer Guide Chapter 15 Using Forms in Writer Copyright This document is Copyright 2005 2008 by its contributors as listed in the section titled Authors. You may distribute it and/or modify it under the

More information

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...

More information

Manual POLICY PATROL SECURE FILE TRANSFER

Manual POLICY PATROL SECURE FILE TRANSFER Manual POLICY PATROL SECURE FILE TRANSFER MANUAL Policy Patrol Secure File Transfer This manual, and the software described in this manual, are copyrighted. No part of this manual or the described software

More information

Sophos Mobile Control Super administrator guide. Product version: 3

Sophos Mobile Control Super administrator guide. Product version: 3 Sophos Mobile Control Super administrator guide Product version: 3 Document date: January 2013 Contents 1 About Sophos Mobile Control...3 2 Super administrator accounts...4 3 The super administrator customer...5

More information

Mobility Tool Guide for Beneficiaries of Leonardo da Vinci programme

Mobility Tool Guide for Beneficiaries of Leonardo da Vinci programme EUROPEAN COMMISSION Directorate-General for Education and Culture Lifelong Learning: policies and programme Coordination of the "Lifelong learning" programme Mobility Tool Guide for Beneficiaries of Leonardo

More information

Sitecore InDesign Connector 1.1

Sitecore InDesign Connector 1.1 Sitecore Adaptive Print Studio Sitecore InDesign Connector 1.1 - User Manual, October 2, 2012 Sitecore InDesign Connector 1.1 User Manual Creating InDesign Documents with Sitecore CMS User Manual Page

More information

Query 4. Lesson Objectives 4. Review 5. Smart Query 5. Create a Smart Query 6. Create a Smart Query Definition from an Ad-hoc Query 9

Query 4. Lesson Objectives 4. Review 5. Smart Query 5. Create a Smart Query 6. Create a Smart Query Definition from an Ad-hoc Query 9 TABLE OF CONTENTS Query 4 Lesson Objectives 4 Review 5 Smart Query 5 Create a Smart Query 6 Create a Smart Query Definition from an Ad-hoc Query 9 Query Functions and Features 13 Summarize Output Fields

More information

Tutorial 3 Maintaining and Querying a Database

Tutorial 3 Maintaining and Querying a Database Tutorial 3 Maintaining and Querying a Database Microsoft Access 2013 Objectives Session 3.1 Find, modify, and delete records in a table Hide and unhide fields in a datasheet Work in the Query window in

More information

INTERSPIRE EMAIL MARKETER

INTERSPIRE EMAIL MARKETER INTERSPIRE EMAIL MARKETER Interspire Pty. Ltd. User s Guide Edition 1.3 April 2009 3 About This User s Guide How to Use This User s Guide This user s guide describes Interspire Email Marketer s Graphical

More information

Access Tutorial 3 Maintaining and Querying a Database. Microsoft Office 2013 Enhanced

Access Tutorial 3 Maintaining and Querying a Database. Microsoft Office 2013 Enhanced Access Tutorial 3 Maintaining and Querying a Database Microsoft Office 2013 Enhanced Objectives Session 3.1 Find, modify, and delete records in a table Hide and unhide fields in a datasheet Work in the

More information

User Guide. Analytics Desktop Document Number: 09619414

User Guide. Analytics Desktop Document Number: 09619414 User Guide Analytics Desktop Document Number: 09619414 CONTENTS Guide Overview Description of this guide... ix What s new in this guide...x 1. Getting Started with Analytics Desktop Introduction... 1

More information

SysPatrol - Server Security Monitor

SysPatrol - Server Security Monitor SysPatrol Server Security Monitor User Manual Version 2.2 Sep 2013 www.flexense.com www.syspatrol.com 1 Product Overview SysPatrol is a server security monitoring solution allowing one to monitor one or

More information

ABSTRACT INTRODUCTION CLINICAL PROJECT TRACKER OF SAS TASKS. Paper PH-02-2015

ABSTRACT INTRODUCTION CLINICAL PROJECT TRACKER OF SAS TASKS. Paper PH-02-2015 Paper PH-02-2015 Project Management of SAS Tasks - Excel Dashboard without Using Any Program Kalaivani Raghunathan, Quartesian Clinical Research Pvt. Ltd, Bangalore, India ABSTRACT Have you ever imagined

More information

Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102

Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102 Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102 Interneer, Inc. Updated on 2/22/2012 Created by Erika Keresztyen Fahey 2 Workflow - A102 - Basic HelpDesk Ticketing System

More information

Qlik REST Connector Installation and User Guide

Qlik REST Connector Installation and User Guide Qlik REST Connector Installation and User Guide Qlik REST Connector Version 1.0 Newton, Massachusetts, November 2015 Authored by QlikTech International AB Copyright QlikTech International AB 2015, All

More information

Once you have gone through this document you will have a form that, when completed, will create an Account & Contact in Oracle.

Once you have gone through this document you will have a form that, when completed, will create an Account & Contact in Oracle. Using Clicktools with Oracle CRM On Demand Once you have gone through this document you will have a form that, when completed, will create an Account & Contact in Oracle. Whilst this example is relatively

More information

Project Zip Code. Version 13.0. CUNA s Powerful Grassroots Program. User Manual. Copyright 2012, All Rights Reserved

Project Zip Code. Version 13.0. CUNA s Powerful Grassroots Program. User Manual. Copyright 2012, All Rights Reserved Project Zip Code Version 13.0 CUNA s Powerful Grassroots Program User Manual Copyright 2012, All Rights Reserved Project Zip Code Version 13.0 Page 1 Table of Contents Topic Page About Project Zip Code

More information

How To Use Longitudinal Database On Redcap

How To Use Longitudinal Database On Redcap Research Electronic Data Capture (REDCap) 202 Intermediate REDCap Tutorial 202 UCSF Academic Research Systems Presented by warren.steele@ucsf.edu 415 476 9830 Academic Research Systems (ARS) Services MyResearch

More information

Converting InfoPlus.21 Data to a Microsoft SQL Server 2000 Database

Converting InfoPlus.21 Data to a Microsoft SQL Server 2000 Database Technical Bulletin Issue Date August 14, 2003 Converting InfoPlus.21 Data to a Microsoft SQL Server 2000 Database Converting InfoPlus.21 Data to a Microsoft SQL Server 2000 Database...2 Introduction...

More information

How to design a database for electronic data capture in

How to design a database for electronic data capture in How to design a database for electronic data capture in 1 Outline REDCap background REDCap features - System features - Database design features - Data Entry(DE) & management features Real- Bme CRF creabon

More information

A Macro to Create Data Definition Documents

A Macro to Create Data Definition Documents A Macro to Create Data Definition Documents Aileen L. Yam, sanofi-aventis Inc., Bridgewater, NJ ABSTRACT Data Definition documents are one of the requirements for NDA submissions. This paper contains a

More information

Module 2 Using the Database

Module 2 Using the Database Health Information System (HIS) Part Three: Data Management Module 2 Using the Database CONTENTS 2.1 Before you start...................................................11 2.2 The first time you start..............................................12

More information

9.1 SAS/ACCESS. Interface to SAP BW. User s Guide

9.1 SAS/ACCESS. Interface to SAP BW. User s Guide SAS/ACCESS 9.1 Interface to SAP BW User s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2004. SAS/ACCESS 9.1 Interface to SAP BW: User s Guide. Cary, NC: SAS

More information

We begin by defining a few user-supplied parameters, to make the code transferable between various projects.

We begin by defining a few user-supplied parameters, to make the code transferable between various projects. PharmaSUG 2013 Paper CC31 A Quick Patient Profile: Combining External Data with EDC-generated Subject CRF Titania Dumas-Roberson, Grifols Therapeutics, Inc., Durham, NC Yang Han, Grifols Therapeutics,

More information

Figure 1. Example of an Excellent File Directory Structure for Storing SAS Code Which is Easy to Backup.

Figure 1. Example of an Excellent File Directory Structure for Storing SAS Code Which is Easy to Backup. Paper RF-05-2014 File Management and Backup Considerations When Using SAS Enterprise Guide (EG) Software Roger Muller, Data To Events, Inc., Carmel, IN ABSTRACT SAS Enterprise Guide provides a state-of-the-art

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

TSM Studio Server User Guide 2.9.0.0

TSM Studio Server User Guide 2.9.0.0 TSM Studio Server User Guide 2.9.0.0 1 Table of Contents Disclaimer... 4 What is TSM Studio Server?... 5 System Requirements... 6 Database Requirements... 6 Installing TSM Studio Server... 7 TSM Studio

More information

NETWRIX EVENT LOG MANAGER

NETWRIX EVENT LOG MANAGER NETWRIX EVENT LOG MANAGER ADMINISTRATOR S GUIDE Product Version: 4.0 July/2012. Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment

More information

CA Nimsoft Monitor Snap

CA Nimsoft Monitor Snap CA Nimsoft Monitor Snap Configuration Guide for Email Gateway emailgtw v2.7 series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as

More information

Getting Started Guide SAGE ACCPAC INTELLIGENCE

Getting Started Guide SAGE ACCPAC INTELLIGENCE Getting Started Guide SAGE ACCPAC INTELLIGENCE Table of Contents Introduction... 1 What is Sage Accpac Intelligence?... 1 What are the benefits of using Sage Accpac Intelligence?... 1 System Requirements...

More information

Uploading Ad Cost, Clicks and Impressions to Google Analytics

Uploading Ad Cost, Clicks and Impressions to Google Analytics Uploading Ad Cost, Clicks and Impressions to Google Analytics This document describes the Google Analytics cost data upload capabilities of NEXT Analytics v5. Step 1. Planning Your Upload Google Analytics

More information

Managing Qualtrics Survey Distributions and Response Data with SAS

Managing Qualtrics Survey Distributions and Response Data with SAS Paper 3399-2015 Managing Qualtrics Survey Distributions and Response Data with SAS ABSTRACT Faith E Parsons, Sean J Mota and Yan Quan Center for Behavioral Cardiovascular Health, Columbia University Medical

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

Intellect Platform - Tables and Templates Basic Document Management System - A101

Intellect Platform - Tables and Templates Basic Document Management System - A101 Intellect Platform - Tables and Templates Basic Document Management System - A101 Interneer, Inc. 4/12/2010 Created by Erika Keresztyen 2 Tables and Templates - A101 - Basic Document Management System

More information

EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators

EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators Version 1.0 Last Updated on 15 th October 2011 Table of Contents Introduction... 3 File Manager... 5 Site Log...

More information

Magento module Documentation

Magento module Documentation Table of contents 1 General... 4 1.1 Languages... 4 2 Installation... 4 2.1 Search module... 4 2.2 Installation in Magento... 6 2.3 Installation as a local package... 7 2.4 Uninstalling the module... 8

More information

Activity Builder TP-1908-V02

Activity Builder TP-1908-V02 Activity Builder TP-1908-V02 Copyright Information TP-1908-V02 2014 Promethean Limited. All rights reserved. All software, resources, drivers and documentation supplied with the product are copyright Promethean

More information

Plug-In for Informatica Guide

Plug-In for Informatica Guide HP Vertica Analytic Database Software Version: 7.0.x Document Release Date: 2/20/2015 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements

More information

Chapter 15 Using Forms in Writer

Chapter 15 Using Forms in Writer Writer Guide Chapter 15 Using Forms in Writer OpenOffice.org Copyright This document is Copyright 2005 2006 by its contributors as listed in the section titled Authors. You can distribute it and/or modify

More information

Informatica Cloud & Redshift Getting Started User Guide

Informatica Cloud & Redshift Getting Started User Guide Informatica Cloud & Redshift Getting Started User Guide 2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording

More information

SDTM, ADaM and define.xml with OpenCDISC Matt Becker, PharmaNet/i3, Cary, NC

SDTM, ADaM and define.xml with OpenCDISC Matt Becker, PharmaNet/i3, Cary, NC PharmaSUG 2012 - Paper HW07 SDTM, ADaM and define.xml with OpenCDISC Matt Becker, PharmaNet/i3, Cary, NC ABSTRACT Standards are an ongoing focus of the health care and life science industry. Common terms

More information

Seamless Dynamic Web Reporting with SAS D.J. Penix, Pinnacle Solutions, Indianapolis, IN

Seamless Dynamic Web Reporting with SAS D.J. Penix, Pinnacle Solutions, Indianapolis, IN Seamless Dynamic Web Reporting with SAS D.J. Penix, Pinnacle Solutions, Indianapolis, IN ABSTRACT The SAS Business Intelligence platform provides a wide variety of reporting interfaces and capabilities

More information

Create a New Database in Access 2010

Create a New Database in Access 2010 Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...

More information

MathXL Getting Started Guide for Instructors

MathXL Getting Started Guide for Instructors MathXL Getting Started Guide for Instructors Copyright Notice Copyright 2013 by Pearson Education. All rights reserved. No part of the contents of this book may be reproduced or transmitted in any form

More information

Customer Tips. Xerox Network Scanning TWAIN Configuration for the WorkCentre 7328/7335/7345. for the user. Purpose. Background

Customer Tips. Xerox Network Scanning TWAIN Configuration for the WorkCentre 7328/7335/7345. for the user. Purpose. Background Xerox Multifunction Devices Customer Tips dc07cc0432 October 19, 2007 This document applies to these Xerox products: X WC 7328/7335/7345 for the user Xerox Network Scanning TWAIN Configuration for the

More information

System Administration Training Guide. S100 Installation and Site Management

System Administration Training Guide. S100 Installation and Site Management System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5

More information