Date/Time Stamped Files and Audit Trails: What Part 11 Compliant SAS Systems are Made of. Carolyn Dougherty, ViroPharma Incorporated, Exton, PA

Size: px
Start display at page:

Download "Date/Time Stamped Files and Audit Trails: What Part 11 Compliant SAS Systems are Made of. Carolyn Dougherty, ViroPharma Incorporated, Exton, PA"

Transcription

1 PH003 /Time Stamped Files and Audit Trails: What Part 11 Compliant SAS Systems are Made of. Carolyn Dougherty, ViroPharma Incorporated, Exton, PA ABSTRACT Clinical data reporting systems are considered high risk with respect to 21 CFR Part 11 compliance. The FDA s recent change in scope for Part 11 is simply a narrower interpretation; Part 11 is still a requirement and therefore, clinical data reporting systems are still subject to Part 11. Analysis of clinical trial data is usually conducted using SAS software. s extracted from a clinical data management database (raw datasets) and submission/analysis datasets are created with SAS. In addition, data are summarized using SAS. How can processes followed to produce these datasets and analyses be made compliant? /time stamped files and audit trails are two key components of Part 11 that, if maintained in the process of reporting clinical trial data, will greatly improve compliance. Maintaining an audit trail for dataset and table generation, and tracking date/time stamps of these files and the SAS programs used to create them are not small tasks. This tracking, including who created what and when, is often a manual process or a non-existent process. This paper describes an automated system that tracks generation of all SAS programs, datasets and analyses; a capability not inherently available from SAS. This system improves Part 11 compliance in a clinical reporting environment. INTRODUCTION Reporting of clinical trial data for a clinical study report requires a large amount of programming to produce analyses of the data. Beginning with raw datasets, programs are created to generate submission or analysis datasets followed by programs created to produce analyses as required in the statistical analysis plan. This means, for a single clinical study, there could be one hundred or more programs used to produce multiple datasets and sometimes hundreds of summary tables. 21 CFR Part 11 requires data controls be implemented within systems that create, modify, maintain, or transmit electronic records. Therefore, reporting of clinical trial data clearly falls within Part 11 requirements. The requirements further state: Such procedures and controls should include use of secure, computer generated, time-stamped audit trails to independently record the date and time of operator entries and actions that create, modify, or delete electronic records. Record changes shall not obscure previously recorded information. Such audit trail documentation shall be retained for a period at least as long as that required for the subject electronic records and shall be available for agency review and copying. Therefore, it is important per Part 11 to maintain an audit trail of programs, datasets and output included in the process of reporting clinical trial data. Per the FDA Guidance on Computerized Systems Used in Clinical Trials, an audit trail is a secure, time stamped record that allows reconstruction of the course of events relating to the creation, modification and deletion of an electronic study record. This paper will describe three macros created to produce an audit trail containing information about summary tables in a clinical study report, including information about the datasets used to generate the summary tables. We took the approach described below to generate an audit trail because SAS and PDF (Portable Document Format; the file format of summary tables) did not have an easy mechanism for storing specific metadata about submission datasets and tables. CLINICAL REPORTING DELIVERABLES INCLUDED IN THE AUDIT TRAIL First, we began with identifying what information and physical files could be tracked as part of the audit trail from our existing process for reporting clinical trial data. As mentioned, analysis programming for a clinical trial begins with raw datasets and continues through production of summary tables. The process is depicted in the following basic figure and identifies the main deliverables for tracking in an audit trail: 1

2 Clinical Data Management Database Raw s DataSetram.sas.sas7bdat ram.sas Summary.pdf ram Audit Trail File (DataSetram.sas7bdat) ram Audit Trail File (ram.sas7bdat) The above process is easier to understand by focusing on only one specific CRF panel. For example, the figure below describes the reporting process for medical history data. Medical History Database Mhx_r.sas7bdat u_medhis.sas Medhis.sas7bdat smhx.sas smhx.pdf Summary of Medical History Audit trail file: u_medhis.sas7bdat Audit trail file: Smhx.sas7bdat , Summary of Medical History, is only one summary table from a complete table of contents for a clinical study report. The remaining examples in this paper, will use medical history to identify audit trail information. However, the same information collected for the audit trail of medical history is collected for all submission datasets and all summary tables for a study. SUBMISSION OR ANALYSIS DATASETS When producing the submission dataset medhis.sas7bdat, the macro %trackraw is executed in the program u_medhis.sas. %trackraw produces the audit trail file, u_medhis.sas7bdat, with the following information: 2

3 Audit trail file: u_medhis.sas7bdat: Name of raw dataset(s) used to generate the submission dataset Raw dataset(s) date/time stamp Name of program (DataSetram.sas) used to generate the submission dataset Userid of programmer who generated the submission dataset (i.e. executed the program) Location/server on which the submission dataset was generated The audit trail file for each submission dataset includes one record per raw dataset used to generate the submission dataset. Below is an example of an audit trail file for a submission dataset. In this example, only one raw dataset was required to generate the submission dataset medhis.sas7bdat. Contents of the dataset program audit trail file, u_medhis.sas7bdat: Raw Raw /Time ram User ID Location ID mhx_r 20DEC2002:10:39:00 u_medhis cdougherty statsrv01 In addition, when a submission dataset is generated, the name of the program used to generate the submission dataset is stored as the label of the submission dataset. This allows us to easily identify what program generated the dataset; an important piece of the audit trail information noted later in the paper when producing the audit trail reports. SUMMARY TABLES The macro %mtltrack is executed within the table program, smhx.sas, to generate the summary table, smhx.pdf. %mtltrack produces the audit trail file smhx.sas7bdat with the following information: Audit trail file: smhx.sas7bdat Number, Title and Subset (extracted from an electronic table of contents) Name of submission dataset(s) used to generate the table Name of program (DataSetram.sas) used to generate the submission dataset (taken from the label on the submission dataset) dataset date/time stamp Name of program (ram.sas) used to generate the table (Summary.pdf) ram.sas date/time stamp /time the table (Summary.pdf) was generated Total number of pages in the table Userid of programmer who generated the table (Summary.pdf) Location/server on which the table (Summary.pdf) was generated The audit trail file for the each summary table includes one record per submission dataset used to generate the summary table. Below is an example of an audit trail file for a summary table. In this example, two submission datasets were required to generate the summary table smhx.pdf. 3

4 Contents of the table program audit trail file, smhx.sas7bdat: # Title Summary of Medical History Subset All Randomized ram. sas /Time Stamp medhis u_medhis 11MAR2003: 12:44:11 ram. sas smhx /Time Stamp ram.sas 22JAN2003: 11:32:00 /Time Stamp Generated 11MAR2003: 12:47:00 Total Pages User ID Location ID 1 cdougherty statsrv Summary of Medical History All Randomized demo u_demo : smhx 22JAN2003: 11:32:00 11MAR2003: 12:47:00 1 cdougherty statsrv01 4

5 AUDIT REPORT Although some of the above information which is stored in audit trail files may seem redundant, the files are human readable and therefore can be referenced easily at any time in the process. Storing these files makes the following information readily available when the generation of summary tables for a clinical study report is completed. Execution of the macro %audittrl combines all audit trail data and real-time date/time stamps into one dataset and audit_trail.pdf is created. Audit Trail File: u_medhis.sas7bdat Audit Trail File: smhx.sas7bdat Real-Time Data: Current date/time of submission dataset Current date/time of Summary.sas Current date/time of raw dataset Audit_Trail.pdf The three macros executed in this audit trail process can be validated to confirm that expected results are provided. However, it is important to note that a piece of the system relies on programming practices. If the submission dataset program macro (%trackraw) or the summary table program macro (%mtltrack) is not called in the appropriate programs, the Audit_Trail.pdf would be a failing audit and appropriate submission dataset programs and summary table programs would have to be re-executed to produce a passing audit. The following reports are included in Audit_Trail.pdf. Examples of each report are included on subsequent pages. AUDIT TRAIL REPORT #1: This report identifies whether the audit trail is a passing or failing audit trail. It confirms that the datasets and tables are acceptable (date/time stamps are in the appropriate order and the sequence of events can be traced) or will identify where problems exist. Note that the parenthetical letters for each bullet item below correspond to the letters in the example on the next page. (A) The report confirms the submission dataset(s) has not changed since the Summary.pdf was generated (medhis.sas7bdat is dated before the smhx.pdf and date/time stamp of medhis.sas7bdat used to create smhx.sas is equal to current date/time stamp of medhis.sas7bdat). (B) The report confirms the ram.sas has not changed since the Summary.pdf was generated (smhx.sas is dated before smhx.pdf and date/time stamp of smhx.sas used to create smhx.pdf is equal to current date/time stamp of smhx.sas). Notice the example audit fails this test because the table program (SDISP) is currently dated (:14:48) after the table was generated (:11:59). (C) The report confirms the ram.sas has not been changed since the submission dataset was generated (u_medhis.sas is dated before medhis.sas7bdat). This is why attaching the name of the submission dataset program as the label for the submission dataset was necessary. (D) The report confirms the raw data has not changed since submission datasets and tables were generated (current mhx_r.sas7bdat must be dated before current medhis.sas7bdat and smhx.pdf). AUDIT TRAIL REPORT #2: The report identifies the order in which submission datasets were generated as well as the user ID of the programmer who generated each dataset and the server name on which each dataset was generated. AUDIT TRAIL REPORT #3: The report provides a complete list of tables and the date/time of each table for medical writers as well as identification of who generated each table and the server name on which the table was generated. AUDIT TRAIL REPORT #4: The report identifies the submission dataset(s) used when generating each summary table. This report easily identifies all ram.sas programs that must be re-run if a specific submission dataset is changed. 5

6 CONCLUSION Three macros incorporated into a process from CRF data to final summary tables for a clinical study report can help maintain a thorough audit trail for SAS deliverables and improve Part 11 compliance. First, the macro %trackraw is executed during the generation of each submission dataset to store metadata of the raw datasets and submission dataset. Second, the macro %mtltrack is executed in each table program to store metadata for the summary table when the summary table is generated. Last, %auditrtl is executed when tables are complete, or at an interim timepoint, to combine all of the audit trail data into audit trail reports. Integration of the audit trail data for the audit trail reports enables any programmer or manager to identify who generated what and when. In addition, it allows individuals to verify that the sequence of editing programs, creating datasets and generating tables is appropriate and that the sequence of these events can be easily traced. All of this information gathered from the audit trail can be summarized in only a few minutes; much less time than if checked manually. Most importantly, if audited by the FDA to confirm compliance with 21 CFR Part 11, the audit trail is readily available to the FDA auditors. 6

7 SAS Conference Protocol DUMMY123 Jun 6, :36 Audit Trail AUDIT_TRAIL Audit Trail #1 - All Tracking Information from Raw s to s # Title Name Run Name Name Sub-mission (A) = (B) = (C) < (D) Raw = Raw for ADS Summary of Subject Disposition All Enrolled SDISP 11:59:00 14:48:00 12:00:00 A_AE U_A_AE 10MAR :26:40 10MAR :26:40 24FEB :06:00 ERROR DISP U_DISP 11MAR :22:44 11MAR :22:44 11MAR :21:00 ERROR DEMO U_DEMO 10:24:00 ERROR Summary of Subject Enrollment All Enrolled SENRL 12:08:00 12:08:00 12:08:00 DEMO U_DEMO 10:24: Summary of Subject Demographics All Enrolled SDEM 11:58:00 11:58:00 11:59:00 DEMO U_DEMO 10:24: Summary of Medical History All Enrolled SMHX 12:13:00 12:13:00 12:13:00 MEDHIS U_MEDHIS 11MAR :44:11 11MAR :44:11 11MAR :43:00 DEMO U_DEMO 10:24:00 [Note: cells for the four columns on the right are green if the criteria for acceptance are met, or red if the criteria for acceptance are not met] 7

8 SAS Conference Protocol DUMMY123 Jun 6, :36 Audit Trail AUDIT_TRAIL Audit Trail #2 - Order s Generated Name Name User ID Location ID DEMO U_DEMO : cdougherty statsrv01 EXCL U_EXCLUS :10:58:37 cdougherty statsrv01 COMMENTS U_COMM :17:01:31 cdougherty statsrv01 VAS U_VAS 14FEB2003:11:29:41 cdougherty statsrv01 A_VITAL U_AVITAL 14FEB2003:14:22:09 cdougherty statsrv01 VITALS U_VITALS 20FEB2003:12:09:59 cdougherty statsrv01 PE U_PHYSEX 24FEB2003:16:54:02 cdougherty statsrv01 A_AE U_A_AE 10MAR2003:16:26:40 cdougherty statsrv01 ECG U_ECG 11MAR2003:10:13:20 cdougherty statsrv01 A_ECG U_A_ECG 11MAR2003:10:17:56 cdougherty statsrv01 LAB U_LAB 11MAR2003:11:31:15 cdougherty statsrv01 A_LAB U_A_LAB 11MAR2003:11:36:37 cdougherty statsrv01 LABRANGE U_LABRNG 11MAR2003:11:40:41 cdougherty statsrv01 CONMEDS U_CONMED 11MAR2003:12:08:14 cdougherty statsrv01 DISP U_DISP 11MAR2003:12:22:44 cdougherty statsrv01 INCL U_INCLUS 11MAR2003:12:37:19 cdougherty statsrv01 MEDHIS U_MEDHIS 11MAR2003:12:44:11 cdougherty statsrv01 PKSAMP U_PKSAMP 11MAR2003:12:51:35 cdougherty statsrv01 8

9 SAS Conference Protocol DUMMY123 Jun 6, :36 Audit Trail # Title Audit Trail #3 - Final /Time Stamps Subset Name Run rammer AUDIT_TRAIL Summary of Subject Disposition All Enrolled SDISP :12:00:00 cdougherty statsrv Summary of Subject Enrollment All Enrolled SENRL :12:08:00 cdougherty statsrv Summary of Subject Demographics All Enrolled SDEM :11:59:00 cdougherty statsrv Summary of Medical History All Enrolled SMHX :12:13:00 cdougherty statsrv Summary of Abnormal Physical Examination Findings at Baseline All Treated SPE :12:15:00 cdougherty statsrv Summary of Study Drug Exposure All Treated SSMED :12:16:00 cdougherty statsrv Overall Summary of Treatment Emergent Adverse Events All Treated SAE :11:41:00 cdougherty statsrv Overall Summary of Treatment Emergent Study Drug Related Adverse Events Summary of Treatment Emergent Adverse Events and Their Relationship to Study Drug: No. Observed and Severity Summary of Treatment Emergent Adverse Events By System Organ Class, Preferred Term and Severity Summary of Treatment Emergent Study Drug Related Adverse Events By System Organ Class, Preferred Term All Treated SAE :11:41:00 cdougherty All Treated SAEPID :11:42:00 cdougherty All Treated SAES :11:44:00 cdougherty All Treated SAES :11:44:00 cdougherty Location ID statsrv01 statsrv01 statsrv01 statsrv01 9

10 SAS Conference Protocol DUMMY123 Jun 6, :36 Audit Trail Name Audit Trail #4 - Identify Which rams Use Which s A_AE Adverse Events Causing Death, and Other Serious or Significant Adverse Events LAE Overall Summary of Treatment Emergent Adverse Events Summary of Treatment Emergent Adverse Events and Their Relationship to Study Drug: No. Observed and Summary of Treatment Emergent Adverse Events By System Organ Class, Preferred Term and Severity Summary of Treatment Emergent Adverse Events by Frequency Summary of Treatment Emergent Adverse Events of Interest Summary of Treatment Emergent Laboratory Adverse Events Summary of Subject Disposition A_ECG 12-Lead ECG: Change from Baseline QTc Intervals LECGC A_LAB Summary of All Borderline and Prolonged QT Intervals Summary of Abnormal 12-Lead ECG Intervals at End of Study Summary of Changes in 12-Lead ECG Intervals Title Summary of Clinically Significant 12-Lead ECG Intervals per Investigator Listing of Clinical Laboratory Tests for with Treatment Emergent Clinically Significant Abnormal Laboratory Values per Investigator Summary of Treatment Emergent Clinically Significant Abnormal Laboratory Values per Investigator Summary of Clinical Laboratory Evaluations: Change from Baseline Summary of Laboratory Values >= 3 Times the Upper Limit of Reference Range MEDHIS General Medical History LMEDH Summary of Medical History AUDIT_TRAIL Pr og Name SAE SAEPID SAES SAESF SAESH SAESL SDISP SECG SECGA SECGC SECGCS LLABS SLABC SLABS SLABT SMHX 10

11 ACKLEDGMENTS SAS is a Registered Trademark of the SAS Institute, Inc. of Cary, North Carolina. Thanks to Spencer Hudson, whose idea it was to generate this audit trail system. Additional thanks to those who helped review this paper so that it could be possible to present at NESUG: Spencer Hudson, ViroPharma Incorporated; Heidi Shea, ViroPharma Incorporated; Dan Wang, ViroPharma Incorporated; Louisa Feeley, ViroPharma Incorporated; Souma Chattopadhyay, ViroPharma Incorporated; and Daphne Ewing, Synteract, Inc. CONTACT INFORMATION Your comments and questions are greatly valued and appreciated. Please contact the author at: Carolyn Dougherty ViroPharma Incorporated 405 Eagleview Boulevard Exton, PA Work Phone: (610) Fax: (610) Carolyn.Dougherty@ViroPharma.com Web: 11

ABSTRACT INTRODUCTION PATIENT PROFILES SESUG 2012. Paper PH-07

ABSTRACT INTRODUCTION PATIENT PROFILES SESUG 2012. Paper PH-07 Paper PH-07 Developing a Complete Picture of Patient Safety in Clinical Trials Richard C. Zink, JMP Life Sciences, SAS Institute, Cary, NC, United States Russell D. Wolfinger, JMP Life Sciences, SAS Institute,

More information

Statistical Operations: The Other Half of Good Statistical Practice

Statistical Operations: The Other Half of Good Statistical Practice Integrating science, technology and experienced implementation Statistical Operations: The Other Half of Good Statistical Practice Alan Hopkins, Ph.D. Theravance, Inc. Presented at FDA/Industry Statistics

More information

Comparing JMP and SAS for Validating Clinical Trials Sandra D. Schlotzhauer, Chapel Hill, NC

Comparing JMP and SAS for Validating Clinical Trials Sandra D. Schlotzhauer, Chapel Hill, NC Paper 6-2010 Comparing JMP and SAS for Validating Clinical Trials Sandra D. Schlotzhauer, Chapel Hill, NC Abstract When validating clinical trial analyses, an independent programmer typically confirms

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

How To Use Sas With A Computer System Knowledge Management (Sas)

How To Use Sas With A Computer System Knowledge Management (Sas) Paper AD13 Medical Coding System for Clinical Trials 21 CFR Part 11 Compliant SAS/AF Application Annie Guo, ICON Clinical Research, Redwood City, CA ABSTRACT Medical coding in clinical trials is to classify

More information

Data Management Unit Research Institute for Health Sciences, Chiang Mai University

Data Management Unit Research Institute for Health Sciences, Chiang Mai University Data Management Unit Research Institute for Health Sciences, Chiang Mai University Clinical Data Management is the process of handling data from clinical trials. The inherent goal of any clinical data

More information

Nova Southeastern University Standard Operating Procedure for GCP. Title: Electronic Source Documents for Clinical Research Study Version # 1

Nova Southeastern University Standard Operating Procedure for GCP. Title: Electronic Source Documents for Clinical Research Study Version # 1 Nova Southeastern University Standard Operating Procedure for GCP Title: Electronic Source Documents for Clinical Research Study Version # 1 SOP Number: OCR-RDM-006 Effective Date: August 2013 Page 1 of

More information

Guidance for Industry Computerized Systems Used in Clinical Investigations

Guidance for Industry Computerized Systems Used in Clinical Investigations Guidance for Industry Computerized Systems Used in Clinical Investigations U.S. Department of Health and Human Services Food and Drug Administration (FDA) Office of the Commissioner (OC) May 2007 Guidance

More information

rsdm and 21 CFR Part 11

rsdm and 21 CFR Part 11 rsdm and 21 CFR Part 11 Meeting the 21 CFR Part 11 Burden without Overburdening The right solutions for smaller biopharma. Nothing more. Nothing less. Prepared by: Ken VanLuvanee www.virtualregulatorysolutions.com

More information

Clinical Data Management (Process and practical guide) Dr Nguyen Thi My Huong WHO/RHR/RCP/SIS

Clinical Data Management (Process and practical guide) Dr Nguyen Thi My Huong WHO/RHR/RCP/SIS Clinical Data Management (Process and practical guide) Dr Nguyen Thi My Huong WHO/RHR/RCP/SIS Training Course in Sexual and Reproductive Health Research Geneva 2012 OUTLINE Clinical Data Management CDM

More information

PharmaSUG2010 HW06. Insights into ADaM. Matthew Becker, PharmaNet, Cary, NC, United States

PharmaSUG2010 HW06. Insights into ADaM. Matthew Becker, PharmaNet, Cary, NC, United States PharmaSUG2010 HW06 Insights into ADaM Matthew Becker, PharmaNet, Cary, NC, United States ABSTRACT ADaM (Analysis Dataset Model) is meant to describe the data attributes such as structure, content, and

More information

Full Compliance Contents

Full Compliance Contents Full Compliance for and EU Annex 11 With the regulation support of Contents 1. Introduction 2 2. The regulations 2 3. FDA 3 Subpart B Electronic records 3 Subpart C Electronic Signatures 9 4. EU GMP Annex

More information

QUALITY CONTROL AND QUALITY ASSURANCE IN CLINICAL RESEARCH

QUALITY CONTROL AND QUALITY ASSURANCE IN CLINICAL RESEARCH QUALITY CONTROL AND QUALITY ASSURANCE IN CLINICAL RESEARCH Martin Valania, Executive Director, Corporate QA and Compliance Introduction Pharmaceutical companies recognize the benefits of carefully managing

More information

Eclipsys Sunrise Clinical Manager Enterprise Electronic Medical Record (SCM) and Title 21 Code of Federal Regulations Part 11 (21CFR11)

Eclipsys Sunrise Clinical Manager Enterprise Electronic Medical Record (SCM) and Title 21 Code of Federal Regulations Part 11 (21CFR11) Eclipsys Sunrise Clinical Manager Enterprise Electronic Medical Record (SCM) and Title 21 Code of Federal Regulations Part 11 (21CFR11) The title 21 code of federal regulations part 11 deals with an institutions

More information

Guidance for Industry COMPUTERIZED SYSTEMS USED IN CLINICAL TRIALS

Guidance for Industry COMPUTERIZED SYSTEMS USED IN CLINICAL TRIALS Guidance for Industry COMPUTERIZED SYSTEMS USED IN CLINICAL TRIALS U.S. Department of Health and Human Services Food and Drug Administration Center for Biologic Evaluation and Research (CBER) Center for

More information

Oracle WebCenter Content

Oracle WebCenter Content Oracle WebCenter Content 21 CFR Part 11 Certification Kim Hutchings US Data Management Phone: 888-231-0816 Email: khutchings@usdatamanagement.com Introduction In May 2011, US Data Management (USDM) was

More information

REGULATIONS COMPLIANCE ASSESSMENT

REGULATIONS COMPLIANCE ASSESSMENT ALIX is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation. REGULATIONS COMPLIANCE ASSESSMENT BUSINESS

More information

How To Write A Clinical Trial In Sas

How To Write A Clinical Trial In Sas PharmaSUG2013 Paper AD11 Let SAS Set Up and Track Your Project Tom Santopoli, Octagon, now part of Accenture Wayne Zhong, Octagon, now part of Accenture ABSTRACT When managing the programming activities

More information

Clinical Data Warehouse Functionality Peter Villiers, SAS Institute Inc., Cary, NC

Clinical Data Warehouse Functionality Peter Villiers, SAS Institute Inc., Cary, NC Clinical Warehouse Functionality Peter Villiers, SAS Institute Inc., Cary, NC ABSTRACT Warehousing is a buzz-phrase that has taken the information systems world by storm. It seems that in every industry

More information

Development of Case Report Forms

Development of Case Report Forms Development of Case Report Forms Introduction to the Principles and Practice of Clinical Research February 12, 2013 Diane St. Germain, RN, MS Nurse Consultant Division of Cancer Prevention National Cancer

More information

Implementing an Audit Trail within a Clinical Reporting Tool Paul Gilbert, Troy A. Ruth, Gregory T. Weber DataCeutics, Inc.

Implementing an Audit Trail within a Clinical Reporting Tool Paul Gilbert, Troy A. Ruth, Gregory T. Weber DataCeutics, Inc. Paper AD12 Implementing an Audit Trail within a Clinical Reporting Tool Paul Gilbert, Troy A. Ruth, Gregory T. Weber DataCeutics, Inc., Pottstown, PA ABSTRACT This paper is a follow-up to Overview of a

More information

Clinical Data Management (Process and practical guide) Nguyen Thi My Huong, MD. PhD WHO/RHR/SIS

Clinical Data Management (Process and practical guide) Nguyen Thi My Huong, MD. PhD WHO/RHR/SIS Clinical Data Management (Process and practical guide) Nguyen Thi My Huong, MD. PhD WHO/RHR/SIS Training Course in Sexual and Reproductive Health Research Geneva 2013 OUTLINE Overview of Clinical Data

More information

ABSTRACT TECHNICAL DESIGN INTRODUCTION FUNCTIONAL DESIGN

ABSTRACT TECHNICAL DESIGN INTRODUCTION FUNCTIONAL DESIGN Overview of a Browser-Based Clinical Report Generation Tool Paul Gilbert, DataCeutics, Pottstown PA Greg Weber, DataCeutics Teofil Boata, Purdue Pharma ABSTRACT In an effort to increase reporting quality

More information

Bridging Statistical Analysis Plan and ADaM Datasets and Metadata for Submission

Bridging Statistical Analysis Plan and ADaM Datasets and Metadata for Submission , October 24-26, 2012, San Francisco, USA Bridging Statistical Analysis Plan and ADaM Datasets and Metadata for Submission Abstract In this article, the relationship between the Statistical Analysis Plan

More information

HESI: Fetal Imaging Workshop 21 CFR Part 11 Electronic Records & Signatures. Presented by: Jonathan S. Helfgott

HESI: Fetal Imaging Workshop 21 CFR Part 11 Electronic Records & Signatures. Presented by: Jonathan S. Helfgott HESI: Fetal Imaging Workshop 21 CFR Part 11 Electronic Records & Signatures Presented by: Jonathan S. Helfgott Director of Regulatory Affairs, Stage 2 Innovations Jonathan@stage2innovations.com Disclaimer

More information

Data Management PACT Workshop: Design & Operation of GMP Cell Therapy Facilities April 10 th -11 th, 2007

Data Management PACT Workshop: Design & Operation of GMP Cell Therapy Facilities April 10 th -11 th, 2007 Data Management PACT Workshop: Design & Operation of GMP Cell Therapy Facilities April 10 th -11 th, 2007 Data Management Discuss Database Development Design Process Tips Data Normalization Reporting Ideas

More information

Training/Internship Brochure Advanced Clinical SAS Programming Full Time 6 months Program

Training/Internship Brochure Advanced Clinical SAS Programming Full Time 6 months Program Training/Internship Brochure Advanced Clinical SAS Programming Full Time 6 months Program Domain Clinical Data Sciences Private Limited 8-2-611/1/2, Road No 11, Banjara Hills, Hyderabad Andhra Pradesh

More information

A ChemoMetec A/S White Paper September 2013

A ChemoMetec A/S White Paper September 2013 NucleoCounter NC-3000, NucleoView NC-3000 Software and Code of Federal Regulation 21 Part 11; Electronic Records, Electronic Signatures (21 CFR Part 11) A ChemoMetec A/S White Paper September 2013 ChemoMetec

More information

Guidance for Industry

Guidance for Industry Guidance for Industry Electronic Source Data in Clinical Investigations U.S. Department of Health and Human Services Food and Drug Administration Center for Drug Evaluation and Research (CDER) Center for

More information

Data Conversion to SDTM: What Sponsors Can Do to Facilitate the Process

Data Conversion to SDTM: What Sponsors Can Do to Facilitate the Process Data Conversion to SDTM: What Sponsors Can Do to Facilitate the Process Fred Wood VP, Data Standards Consulting Octagon Research Solutions CDISC U.S. Interchange Baltimore, MD November 2009 1 Outline Background

More information

Implementing Title 21 CFR Part 11 (Electronic Records ; Electronic Signatures) in Manufacturing Presented by: Steve Malyszko, P.E.

Implementing Title 21 CFR Part 11 (Electronic Records ; Electronic Signatures) in Manufacturing Presented by: Steve Malyszko, P.E. Implementing Title 21 CFR Part 11 (Electronic Records ; Electronic Signatures) in Manufacturing Presented by: Steve Malyszko, P.E. President & CEO Agenda Introduction Who is Malisko Engineering? Title

More information

The Importance of Good Clinical Data Management and Statistical Programming Practices to Reproducible Research

The Importance of Good Clinical Data Management and Statistical Programming Practices to Reproducible Research The Importance of Good Clinical Data Management and Statistical Programming Practices to Reproducible Research Eileen C King, PhD Research Associate Professor, Biostatistics Acting Director, Data Management

More information

FDA Title 21 CFR Part 11:Electronic Records; Electronic Signatures; Final Rule (1997)

FDA Title 21 CFR Part 11:Electronic Records; Electronic Signatures; Final Rule (1997) www.qadata.co.za Introduction FDA Title 21 CFR Part 11:Electronic Records; Electronic Signatures; Final Rule (1997) INITIAL REGULATION RELEASED High profile audit findings Industry complaints to wasting

More information

Managing Clinical Trials Data using SAS Software

Managing Clinical Trials Data using SAS Software Paper DM08 Managing Clinical Trials Data using SAS Software Martin J. Rosenberg, Ph.D., MAJARO InfoSystems, Inc. ABSTRACT For over five years, one of the largest clinical trials ever conducted (over 670,000

More information

Data Management and Good Clinical Practice Patrick Murphy, Research Informatics, Family Health International

Data Management and Good Clinical Practice Patrick Murphy, Research Informatics, Family Health International Data Management and Good Clinical Practice Patrick Murphy,, Family Health International 1 What is GCP? Good Clinical Practice is an international ethical and scientific quality standard for designing,

More information

Assessment of Vaisala Veriteq vlog Validation System Compliance to 21 CFR Part 11 Requirements

Assessment of Vaisala Veriteq vlog Validation System Compliance to 21 CFR Part 11 Requirements / WHITE PAPER Assessment of Vaisala Veriteq vlog Validation System Compliance to 21 CFR Part 11 Requirements The 21 CFR Part 11 rule states that the FDA view is that the risks of falsification, misinterpretation,

More information

Subject: No. Page PROTOCOL AND CASE REPORT FORM DEVELOPMENT AND REVIEW Standard Operating Procedure

Subject: No. Page PROTOCOL AND CASE REPORT FORM DEVELOPMENT AND REVIEW Standard Operating Procedure 703 1 of 11 POLICY The Beaumont Research Coordinating Center (BRCC) will provide advice to clinical trial investigators on protocol development, content and format. Upon request, the BRCC will review a

More information

Section 1 Project Management, Project Communication/Process Design, Mgmt, Documentation, Definition & Scope /CRO-Sponsor Partnership

Section 1 Project Management, Project Communication/Process Design, Mgmt, Documentation, Definition & Scope /CRO-Sponsor Partnership Section 1 Project Management, Project Communication/Process Design, Mgmt, Documentation, Definition & Scope /CRO-Sponsor Partnership PROJECT MANAGEMENT - SCOPE DEFINITION AND MANAGEMENT Understands the

More information

Supplement to the Guidance for Electronic Data Capture in Clinical Trials

Supplement to the Guidance for Electronic Data Capture in Clinical Trials Supplement to the Guidance for Electronic Data Capture in Clinical Trials January 10, 2012 Drug Evaluation Committee, Japan Pharmaceutical Manufacturers Association Note: The original language of this

More information

USE CDISC SDTM AS A DATA MIDDLE-TIER TO STREAMLINE YOUR SAS INFRASTRUCTURE

USE CDISC SDTM AS A DATA MIDDLE-TIER TO STREAMLINE YOUR SAS INFRASTRUCTURE USE CDISC SDTM AS A DATA MIDDLE-TIER TO STREAMLINE YOUR SAS INFRASTRUCTURE Kalyani Chilukuri, Clinovo, Sunnyvale CA WUSS 2011 Annual Conference October 2011 TABLE OF CONTENTS 1. ABSTRACT... 3 2. INTRODUCTION...

More information

Paper-less Reporting: On-line Data Review and Analysis Using SAS/PH-Clinical Software

Paper-less Reporting: On-line Data Review and Analysis Using SAS/PH-Clinical Software Paper-less Reporting: On-line Data Review and Analysis Using SAS/PH-Clinical Software Eileen Ching, SmithKline Beecham Pharmaceuticals, Collegeville, PA Rosemary Oakes, SmithKline Beecham Pharmaceuticals,

More information

Gregory S. Nelson ThotWave Technologies, Cary, North Carolina

Gregory S. Nelson ThotWave Technologies, Cary, North Carolina Using SAS 9 in Clinical Research Gregory S. Nelson ThotWave Technologies, Cary, North Carolina Abstract For 30 years SAS has been used in pharmaceutical research settings for data management, analytics

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

Guidance for electronic trial data capturing of clinical trials

Guidance for electronic trial data capturing of clinical trials Guidance for electronic trial data capturing of clinical trials 1 st November, 2007 Japan Pharmaceutical Manufacturing Association pg. 1 Table of Contents 1. Background... 3 2. Purpose... 3 3. Scope...

More information

TEMPLATE DATA MANAGEMENT PLAN

TEMPLATE DATA MANAGEMENT PLAN TEMPLATE DATA MANAGEMENT PLAN ICRIN (QM sub group) Version: XX Date: XXXXXXX Page 1 of 6 1.0 Document Ownership The Data Management Plan (DMP) will be initiated and subsequently owned by the Data Manager

More information

Computerized Systems Used in Medical Device Clinical Investigations

Computerized Systems Used in Medical Device Clinical Investigations Computerized Systems Used in Medical Device Clinical Investigations Presented by Jonathan Helfgott Consumer Safety Officer Division of Bioresearch Monitoring Office of Compliance Center for Devices and

More information

Health Care Job Information Sheet #20. Clinical Research

Health Care Job Information Sheet #20. Clinical Research Health Care Job Information Sheet #20 Clinical Research A. Background B. Occupations 1) Clinical Research Associate (Study Monitor) 2) Clinical Research Coordinator 3) Other positions in the field C. Labour

More information

CLINICAL DATA MONITORING PLAN (CDMoP) PROTOCOL # [0000] [TITLE]

CLINICAL DATA MONITORING PLAN (CDMoP) PROTOCOL # [0000] [TITLE] CLINICAL DATA MONITORING PLAN (CDMoP) PROTOCOL # [0000] [TITLE] CONTRACT RESEARCH ORGANIZATION SPONSOR [NAME] [ADDRESS] 1 TABLE OF CONTENTS 1. Purpose 3 2. References 3 3. Study Roles and Responsibilities

More information

Use of Electronic Health Record Data in Clinical Investigations

Use of Electronic Health Record Data in Clinical Investigations Use of Electronic Health Record Data in Clinical Investigations Guidance for Industry DRAFT GUIDANCE This guidance document is being distributed for comment purposes only. Comments and suggestions regarding

More information

TIBCO Spotfire and S+ Product Family

TIBCO Spotfire and S+ Product Family TIBCO Spotfire and S+ Product Family Compliance with 21 CFR Part 11, GxP and Related Software Validation Issues The Code of Federal Regulations Title 21 Part 11 is a significant regulatory requirement

More information

FILEHOLD DOCUMENT MANAGEMENT SYSTEM 21 CFR PART 11 COMPLIANCE WHITE PAPER

FILEHOLD DOCUMENT MANAGEMENT SYSTEM 21 CFR PART 11 COMPLIANCE WHITE PAPER FILEHOLD DOCUMENT MANAGEMENT SYSTEM 21 CFR PART 11 COMPLIANCE WHITE PAPER Copyright 2012 FileHold Systems Inc. All rights reserved. For further information about this manual or other FileHold Systems products,

More information

Handling of electronic data in Clinical Trials part II - Practical Considerations and Implementation

Handling of electronic data in Clinical Trials part II - Practical Considerations and Implementation Handling of electronic data in Clinical Trials part II - Practical Considerations and Implementation Anders Åkesson, Director Clinical Data Management Michael Seest, Associate Director, Development Compliance

More information

Managing Data in Clinical Research. Developed by Center for Cancer Research, National Cancer Institute, NIH Endorsed by the CTN SIG Leadership Group

Managing Data in Clinical Research. Developed by Center for Cancer Research, National Cancer Institute, NIH Endorsed by the CTN SIG Leadership Group Managing Data in Clinical Research Developed by Center for Cancer Research, National Cancer Institute, NIH Endorsed by the CTN SIG Leadership Group Objectives Clinical data management (CDM) is a multidisciplinary

More information

Implement best practices by using FileMaker Pro 7 as the backbone of your 21 CFR 11 compliant system.

Implement best practices by using FileMaker Pro 7 as the backbone of your 21 CFR 11 compliant system. 21 CRF 11 Electronic Records and Signatures Implement best practices by using FileMaker Pro 7 as the backbone of your 21 CFR 11 compliant system. By Todd Duell What does Title 21 of the Code of Federal

More information

Methodologies for Converting Microsoft Excel Spreadsheets to SAS datasets

Methodologies for Converting Microsoft Excel Spreadsheets to SAS datasets Methodologies for Converting Microsoft Excel Spreadsheets to SAS datasets Karin LaPann ViroPharma Incorporated ABSTRACT Much functionality has been added to the SAS to Excel procedures in SAS version 9.

More information

Guidance for Industry. 21 CFR Part 11; Electronic. Records; Electronic Signatures. Time Stamps

Guidance for Industry. 21 CFR Part 11; Electronic. Records; Electronic Signatures. Time Stamps Guidance for Industry 21 CFR Part 11; Electronic Records; Electronic Signatures Time Stamps Draft Guidance This guidance document is being distributed for comment purposes only. Comments and suggestions

More information

PharmaSUG 2013 - Paper DG06

PharmaSUG 2013 - Paper DG06 PharmaSUG 2013 - Paper DG06 JMP versus JMP Clinical for Interactive Visualization of Clinical Trials Data Doug Robinson, SAS Institute, Cary, NC Jordan Hiller, SAS Institute, Cary, NC ABSTRACT JMP software

More information

21 CFR Part 11 Electronic Records & Signatures

21 CFR Part 11 Electronic Records & Signatures Gap Analysis - Checklist 21 CFR Part 11 Electronic Records & Signatures his document is a proposal and starting point only. he type and extent of documentation depends on the process environment. he proposed

More information

ORACLE CLINICAL. Globalization. Flexibility. Efficiency. Competition ORACLE DATA SHEET OVERVIEW ROBUST CLINICAL DATA MANAGEMENT SOLUTION

ORACLE CLINICAL. Globalization. Flexibility. Efficiency. Competition ORACLE DATA SHEET OVERVIEW ROBUST CLINICAL DATA MANAGEMENT SOLUTION ORACLE CLINICAL OVERVIEW ROBUST CLINICAL DATA MANAGEMENT SOLUTION Smoothly transition from paper to EDC trials Annotated CRFs provides an intuitive means of creating submission-ready annotations Improved

More information

From paper to electronic data

From paper to electronic data From paper to electronic data Bioindustrypark, October 10, 2013 Dr Alessandra Grande Ivrea GxP Test Facility QA Manager, Head Global BMT QA Research & Development Quality Assurance MerckSerono RBM Outline

More information

OPERATIONAL STANDARD

OPERATIONAL STANDARD 1 of 11 1. Introduction The International Safe Transit Association (ISTA), a non-profit association whose objective is to prevent product damage and excess packaging usage within the distribution environment.

More information

PharmaSUG2010 - Paper HS01. CDASH Standards for Medical Device Trials: CRF Analysis. Parag Shiralkar eclinical Solutions, a Division of Eliassen Group

PharmaSUG2010 - Paper HS01. CDASH Standards for Medical Device Trials: CRF Analysis. Parag Shiralkar eclinical Solutions, a Division of Eliassen Group PharmaSUG2010 - Paper HS01 CDASH Standards for Medical Device Trials: CRF Analysis Parag Shiralkar eclinical Solutions, a Division of Eliassen Group Jennie Tedrow Boston Scientific Kit Howard Kestrel Consultants

More information

Review and Approve Results in Empower Data, Meta Data and Audit Trails

Review and Approve Results in Empower Data, Meta Data and Audit Trails Review and Approve Results in Empower Data, Meta Data and Audit Trails 2013 Waters Corporation 1 What is an audit trail? Systematic story of the data from creation, through interpretation and final assessment

More information

Clinical Data Management Overview

Clinical Data Management Overview The 2 nd Clinical Data Management Training Clinical Data Management Overview Andrew Taylor ( 安 泰 乐 ), M.S. Head of Clinical Data Management August 30, 2010 Learning Objectives Overview of Process Related

More information

Auditing Chromatographic Electronic Data. Jennifer Bravo, M.S. QA Manager Agilux Laboratories

Auditing Chromatographic Electronic Data. Jennifer Bravo, M.S. QA Manager Agilux Laboratories Auditing Chromatographic Electronic Data Jennifer Bravo, M.S. QA Manager Agilux Laboratories Outline Raw data paper or electronic record? Controls for electronic data Auditing electronic records Warning

More information

WHITE PAPER. CONVERTING SDTM DATA TO ADaM DATA AND CREATING SUBMISSION READY SAFETY TABLES AND LISTINGS. SUCCESSFUL TRIALS THROUGH PROVEN SOLUTIONS

WHITE PAPER. CONVERTING SDTM DATA TO ADaM DATA AND CREATING SUBMISSION READY SAFETY TABLES AND LISTINGS. SUCCESSFUL TRIALS THROUGH PROVEN SOLUTIONS WHITE PAPER CONVERTING SDTM DATA TO ADaM DATA AND CREATING SUBMISSION READY SAFETY TABLES AND LISTINGS. An innovative approach to deliver statistical analysis and data in a CDISC ADaM complient manner

More information

ADaM Implications from the CDER Data Standards Common Issues and SDTM Amendment 1 Documents Sandra Minjoe, Octagon Research Solutions, Wayne, PA

ADaM Implications from the CDER Data Standards Common Issues and SDTM Amendment 1 Documents Sandra Minjoe, Octagon Research Solutions, Wayne, PA ABSTRACT: ADaM Implications from the CDER Data Standards Common Issues and SDTM Amendment 1 Documents Sandra Minjoe, Octagon Research Solutions, Wayne, PA Over the past few years, the United States Food

More information

Guidance for Industry

Guidance for Industry Guidance for Industry Electronic Source Data in Clinical Investigations DRAFT GUIDANCE This guidance document is being distributed for comment purposes only. Comments and suggestions regarding this draft

More information

Implementation of SDTM in a pharma company with complete outsourcing strategy. Annamaria Muraro Helsinn Healthcare Lugano, Switzerland

Implementation of SDTM in a pharma company with complete outsourcing strategy. Annamaria Muraro Helsinn Healthcare Lugano, Switzerland Italian-Speaking CDISC User Group 2008 Implementation of SDTM in a pharma company with complete outsourcing strategy Annamaria Muraro Helsinn Healthcare Lugano, Switzerland Background Full outsourcing

More information

ScreenMaster RVG200 Paperless recorder FDA-approved record keeping. Measurement made easy

ScreenMaster RVG200 Paperless recorder FDA-approved record keeping. Measurement made easy Information INF13/147 EN ScreenMaster RVG200 Paperless recorder FDA-approved record keeping Measurement made easy Guidance on the use of the RVG200 paperless recorder for electronic record keeping in FDA-approved

More information

Declaration of Conformity 21 CFR Part 11 SIMATIC WinCC flexible 2007

Declaration of Conformity 21 CFR Part 11 SIMATIC WinCC flexible 2007 Declaration of Conformity 21 CFR Part 11 SIMATIC WinCC flexible 2007 SIEMENS AG Industry Sector Industry Automation D-76181 Karlsruhe, Federal Republic of Germany E-mail: pharma.aud@siemens.com Fax: +49

More information

INSERT COMPANY LOGO HERE BEST PRACTICES RESEARCH

INSERT COMPANY LOGO HERE BEST PRACTICES RESEARCH INSERT COMPANY LOGO HERE BEST PRACTICES RESEARCH Background and Company Performance Industry Challenges esource: Electronic Clinical Trial Solution Clinical trial sponsors and clinical research organizations

More information

Guidance for Industry. 21 CFR Part 11; Electronic Records; Electronic Signatures. Electronic Copies of Electronic Records

Guidance for Industry. 21 CFR Part 11; Electronic Records; Electronic Signatures. Electronic Copies of Electronic Records Guidance for Industry 21 CFR Part 11; Electronic Records; Electronic Signatures Electronic Copies of Electronic Records Draft Guidance This guidance document is being distributed for comment purposes only.

More information

Guidance for Industry

Guidance for Industry Guidance for Industry Cancer Drug and Biological Products Clinical Data in Marketing Applications U.S. Department of Health and Human Services Food and Drug Administration Center for Drug Evaluation and

More information

An Introduction to Internal Audits

An Introduction to Internal Audits An BRC Global Standards. Trust in Quality Internal Audits (Section 3.4 excluding 3.4.4) An internal audit is any audit completed by or on behalf of the company, rather than conducted by a second or third

More information

SAS CLINICAL TRAINING

SAS CLINICAL TRAINING SAS CLINICAL TRAINING Presented By 3S Business Corporation Inc www.3sbc.com Call us at : 281-823-9222 Mail us at : info@3sbc.com Table of Contents S.No TOPICS 1 Introduction to Clinical Trials 2 Introduction

More information

ROLE OF THE RESEARCH COORDINATOR

ROLE OF THE RESEARCH COORDINATOR Clinical and Translational Science Institute / CTSI at the University of California, San Francisco Welcome to Online Training for Clinical Research Coordinators ROLE OF THE RESEARCH COORDINATOR Data Collection

More information

Synergizing global best practices in the CRO industry

Synergizing global best practices in the CRO industry Synergizing global best practices in the CRO industry KREARA - India Established on April 24 th 2004 Contract Research Services to Pharmaceutical companies Clinical Data management and Biometrics Interactive

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

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

Essential Project Management Reports in Clinical Development Nalin Tikoo, BioMarin Pharmaceutical Inc., Novato, CA

Essential Project Management Reports in Clinical Development Nalin Tikoo, BioMarin Pharmaceutical Inc., Novato, CA Essential Project Management Reports in Clinical Development Nalin Tikoo, BioMarin Pharmaceutical Inc., Novato, CA ABSTRACT Throughout the course of a clinical trial the Statistical Programming group is

More information

21 CFR Part 11 Compliance Using STATISTICA

21 CFR Part 11 Compliance Using STATISTICA 21 CFR Part 11 Compliance Using STATISTICA Last Updated: April 2003 This document was updated to reflect the FDA s latest guidance (released February, 2003) and the withdrawal of previous guidance.! STATSOFT

More information

21 CFR Part 11 Administrative Tools Part 11 Trackable Changes Maintenance Plans Upgrades Part 11 LDAP Support QC-SORT

21 CFR Part 11 Administrative Tools Part 11 Trackable Changes Maintenance Plans Upgrades Part 11 LDAP Support QC-SORT Product Catalog Software Solutions Prolink offers an entire suite of software solutions to address and automate the data collection and quality analysis tasks performed throughout your organization. As

More information

21 CFR PART 11 ELECTRONIC RECORDS, ELECTRONIC SIGNATURES 21.11.2013. 21 CFR Part 11 Compliance PLA 2.1

21 CFR PART 11 ELECTRONIC RECORDS, ELECTRONIC SIGNATURES 21.11.2013. 21 CFR Part 11 Compliance PLA 2.1 21 CFR PART 11 ELECTRONIC RECORDS, ELECTRONIC SIGNATURES Compliance of PLA 2.1 21.11.2013 21 CFR Part 11 Compliance PLA 2.1 SEC. 11.2 IMPLEMENTATION. (a) For records required to be maintained but not submitted

More information

21 CFR Part 11 Checklist

21 CFR Part 11 Checklist 21 CFR Part 11 Checklist GUIDE NOTOCORD - 113 Chemin de Ronde - 78290 Croissy-sur-Seine www.notocord.com my.notocord.com support@notocord.com +33 (0)1 34 80 00 00 1. Preliminary information 1.1. Purpose

More information

How to build ADaM from SDTM: A real case study

How to build ADaM from SDTM: A real case study PharmaSUG2010 - Paper CD06 How to build ADaM from SDTM: A real case study JIAN HUA (DANIEL) HUANG, FOREST LABORATORIES, NJ ABSTRACT: Building analysis data based on the ADaM model is highly recommended

More information

SDTM AND ADaM: HANDS-ON SOLUTIONS

SDTM AND ADaM: HANDS-ON SOLUTIONS SDTM AND ADaM: HANDS-ON SOLUTIONS CDISC French Speaking User Group Paris, France 17 February 2012 Joris De Bondt, Head Data Standards & Process Improvements Tineke Callant, Senior Biostatistical Analyst

More information

IT Service Level Management 2.1 User s Guide SAS

IT Service Level Management 2.1 User s Guide SAS IT Service Level Management 2.1 User s Guide SAS The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS IT Service Level Management 2.1: User s Guide. Cary, NC:

More information

What is Clinical Data Management

What is Clinical Data Management What is Clinical Data Management Clinical Data Management is involved in all aspects of processing the clinical data, working with a range of computer applications, database systems to support collection,

More information

QT analysis: A guide for statistical programmers. Prabhakar Munkampalli Statistical Analyst II Hyderabad, 7 th September 2012

QT analysis: A guide for statistical programmers. Prabhakar Munkampalli Statistical Analyst II Hyderabad, 7 th September 2012 QT analysis: A guide for statistical programmers Prabhakar Munkampalli Statistical Analyst II Hyderabad, 7 th September 2012 Agenda ECG ICH E14 Thorough QT/QTc study Role of Statistical Programmer References

More information

Using SharePoint 2013 for Managing Regulated Content in the Life Sciences. Presented by Paul Fenton President and CEO, Montrium

Using SharePoint 2013 for Managing Regulated Content in the Life Sciences. Presented by Paul Fenton President and CEO, Montrium Using SharePoint 2013 for Managing Regulated Content in the Life Sciences Presented by Paul Fenton President and CEO, Montrium Overview Informative Webinar that aims to provide an overview of how SharePoint

More information

Streamlining the drug development lifecycle with Adobe LiveCycle enterprise solutions

Streamlining the drug development lifecycle with Adobe LiveCycle enterprise solutions White paper Streamlining the drug development lifecycle with Adobe LiveCycle enterprise solutions Using intelligent PDF documents to optimize collaboration, data integrity, authentication, and reuse Table

More information

Barnett International and CHI's Inaugural Clinical Trial Oversight Summit June 4-7, 2012 Omni Parker House Boston, MA

Barnett International and CHI's Inaugural Clinical Trial Oversight Summit June 4-7, 2012 Omni Parker House Boston, MA Barnett International and CHI's Inaugural Clinical Trial Oversight Summit June 4-7, 2012 Omni Parker House Boston, MA This presentation is the property of DynPort Vaccine Company LLC, a CSC company, and

More information

DHHS/NIH/OD/OIR/OHSRP 1/2/2015

DHHS/NIH/OD/OIR/OHSRP 1/2/2015 DHHS/NIH/OD/OIR/OHSRP 1/2/2015 The audience for this course is Principal Investigators (PIs), investigators and Research Coordinators (RCs) serving on the study team of human clinical studies and trials.

More information

POLICY ISSUES IN E-COMMERCE APPLICATIONS: ELECTRONIC RECORD AND SIGNATURE COMPLIANCE FDA 21 CFR 11 ALPHATRUST PRONTO ENTERPRISE PLATFORM

POLICY ISSUES IN E-COMMERCE APPLICATIONS: ELECTRONIC RECORD AND SIGNATURE COMPLIANCE FDA 21 CFR 11 ALPHATRUST PRONTO ENTERPRISE PLATFORM W H I T E P A P E R POLICY ISSUES IN E-COMMERCE APPLICATIONS: ELECTRONIC RECORD AND SIGNATURE COMPLIANCE FDA 21 CFR 11 ALPHATRUST PRONTO ENTERPRISE PLATFORM This white paper is written for senior executives

More information

Einführung in die CDISC Standards CDISC Standards around the World. Bron Kisler (CDISC) & Andrea Rauch DVMD Tagung 11.-14.

Einführung in die CDISC Standards CDISC Standards around the World. Bron Kisler (CDISC) & Andrea Rauch DVMD Tagung 11.-14. Einführung in die CDISC Standards CDISC Standards around the World Bron Kisler (CDISC) & Andrea Rauch DVMD Tagung 11.-14. März 2015 1 Outline Overview of CDISC Therapeutic Area Standards SHARE Metadata

More information

Guidance for Industry Part 11, Electronic Records; Electronic Signatures Scope and Application

Guidance for Industry Part 11, Electronic Records; Electronic Signatures Scope and Application Guidance for Industry Part 11, Electronic Records; Electronic Signatures Scope and Application U.S. Department of Health and Human Services Food and Drug Administration Center for Drug Evaluation and Research

More information

Compliance Response Edition 07/2009. SIMATIC WinCC V7.0 Compliance Response Electronic Records / Electronic Signatures. simatic wincc DOKUMENTATION

Compliance Response Edition 07/2009. SIMATIC WinCC V7.0 Compliance Response Electronic Records / Electronic Signatures. simatic wincc DOKUMENTATION Compliance Response Edition 07/2009 SIMATIC WinCC V7.0 Compliance Response Electronic Records / Electronic Signatures simatic wincc DOKUMENTATION Compliance Response Electronic Records / Electronic Signatures

More information

KEY FEATURES OF SOURCE CONTROL UTILITIES

KEY FEATURES OF SOURCE CONTROL UTILITIES Source Code Revision Control Systems and Auto-Documenting Headers for SAS Programs on a UNIX or PC Multiuser Environment Terek Peterson, Alliance Consulting Group, Philadelphia, PA Max Cherny, Alliance

More information

Business & Decision Life Sciences

Business & Decision Life Sciences Business & Decision Life Sciences Define-it: Demo webinar Anne-Sophie Bekx / 20th May 2014 INSERT COMPANY LOGO IN MASTER SLIDE HERE History of Define.xml Define-it Software Demo Define-it versions Q &

More information