Standardizing Data Processing and e-publishing for the Pharmaceutical Industry

Size: px
Start display at page:

Download "Standardizing Data Processing and e-publishing for the Pharmaceutical Industry"

Transcription

1 Standardizing Data Processing and e-publishing for the Pharmaceutical Industry Shawn Wang MedXview, Inc.,Cambridge, MA ABSTRACT As timing and efficiency become ever more important for every company to secure a winning position in New Drug Development, after FDA requirements for e-submissions after 2002, how are we going to get the job done quickly and accurately? Standardization is an effective generic solution applied in business re-engineering. Applying standard at every step will yield large time-compression that will result in more efficient use of available resources. This paper briefly discusses standardizing data process and e- Publishing in clinical trial and electronic submission, providing real-life examples to demonstrate the superiority of standardization processing over other approaches. 1 INTRODUCTION 1.1 Needs for Standardization: Standardization can save the pharmaceutical industry up to 80% of data processing and e-publishing time. Without standardization, the likelihood of duplicating work is imminently present. Standardization, however, provides the opportunity of leveraging resources globally by re-using data base designs and program structure design from one trial to another. Since 1999, FDA has been preparing standards for different types of electronic submissions. Beginning in 2002, FDA requires paperless submissions to improve efficiency. Pharmaceutical companies need to bring their current systems up to date to meet the new FDA requirements. The following business imperatives have changed the way we do our work: FDA has been continually characterizing the standards for data, such as content, structure, and format. FDA reviewers have been upping the ante in demanding that your company must submit the SAS programming used for item 10 so that they can get exactly the same output as your submission. The volume of work is rapidly increasing because new drugs are simultaneously being developed. Dramatic changes in new computation techniques. To do our work faster and more effectively, better business practices are needed. Standardization is a generic solution applied in business re-engineering. Applying standardization in each drug development phase will yield large time-compression that will result in more effective use of available resources. 1.2 General Ideas for Standardization: Managing, analyzing and reporting individual clinical trials can be completed independently. However, integrating all of the data and the results can become a very challenging task when the data bases and SAS programs of the individual clinical trials were designed and constructed without having globalization and standardization in mind. Therefore it is necessary to define and construct similar data bases and SAS programming environments for each trial in terms of structure and content that are based on similar protocols and CRFs. Most companies are increasingly aligning their globalization and standardization activities with the International Conference on Harmonization (ICH), which supports Software Development Life Cycle (SDLC) principles. The SDLC has been defined by NIST (National Institute for Standards and Technology) as: The period of time beginning when a software product is conceived and ending when the product is no longer available for use. The software development life cycle is typically broken into phases denoting activities such as requirement, design, programming, testing, installation, and operation and maintenance. SDLC is certainly the key for building standardizing report systems. 1.3 Phases of Standardization Requirements Review the company s guidelines, such as SOP, SAP, AnnotatedCRF and FDA guidance. Discuss inconsistencies in information with other team members. Resolve any data discrepancies and finalize the requirements Design Identify standard and non-standard tables, listings, and figures. Use existing SAS programming tools and read the specifications from the statistician to process standard tables, listings and figures, and annotated mock-ups of nonstandard tables, listings and figures. Propose quality control test plans. Discuss and revise the draft tables, listings and figures with other team members Development Convert programming specifications into SAS code. Produce quality control test scripts. Conduct testing and debugging. Conduct software toolkits or programs in review meetings with the other team members. Provide draft tables, listings and figures to the other team members for reviewing and approval Maintenance Collect feedback from FDA reviewers and other team members. Determine new software toolkits or SAS programs for nonstandard TLF to be promoted to project-level standard TLF. Update validation documentation. To summarize this: Three principles: standards, modeling, regulatory compliance. One tip: modular approach. 2. OVERVIEW OF DATA PROCESSING AND E-PUBLISHING 2.1 Key Point: Two-dimensional Rectangular Form All the data sets, tables and listings are presented in a twodimensional rectangular form rows and columns. Furthermore, no matter whether we using standardizing systems or writing programs without standardizing, we actually deal with two different sections in each table: (1) marginal section, which includes titles, headers, footers and labels on the side.

2 (2) interior section, the pure data value from the SAS data set. All the data, tables, listings and figures can be standardized by setting up standards and models. Under certain specific standards and models, the data structure and TLF can be wellestablished by sets of SAS macros or SCL methods. There are several standards and models that are used as the basis for development. Guidance for Industry Providing Regulatory Submissions to the Center for Biologics Evaluation and Research (CBER) in Electronic Format, Providing Regulatory Submission in Electronic Format NDA, and CDISC Submission Meta Data Model, Version 2.0 are all good references. FDA guidance is more a general consideration than an actual model. CDISC standards and models are based on the 80% rule (only 80% of coverage at most is guaranteed to match) and have some deviations. There is no unique and perfect fit solution for all pharmaceutical companies. Different companies need to build the standards and models which will bridge the gap between FDA requirements and their specific organizational preferences and practices. A tailor-made standard report system does not just suddenly appear, it needs to be developed. 2.2 Data Standardization To paraphrase Tolstoy in Anna Karenina, All of the standardization approaches are the same, but every nonstandardization adventure is different in its own labor-intensive way. There are a lot of ideas flowing around for building e-sub standards, models, and systems. But it s important to think about what is basic. What we are dealing with is nothing but a twodimensional rectangular form, as section 2.1 states. The actions we can take in a two-dimensional rectangular data structure are very limited. For example, we can sort by either row (observation) or by column (variables), or both. That s all we can do for sorting. In the sorting action, we write standard reusable macros to handle sorting. There are eight important actions we may need to perform on raw data in order to create CRT data (FDA guidance item 11), and these are: 1) SORTEDBY, which sorts Key Variables that can be used for define.pdf generation. And thus sorted data values (horizontal in table) and data vectors (vertical in table) will be convenient for statistical analysis. 2) KEEP, which transfers variables from raw data (CRF) into CRT data sets, without needing any changes. 3) DROP, which removes from raw data (CRF) only the variables for data management purposes. 4) NAME CHANGE, which gives new names to variables in the raw data (CRF) which do not meet CRT data requirements - such as variable names of over 8 characters, or duplicated name, or names with notexplicit meaning. 5) CHARACTER TO NUMERIC CHANGE, which converts time/date characters to numeric for statistical calculations. 6) NUMERIC TO CHARACTER CHANGE, which converts numeric raw data (CRF) entries to letter codes. (1 to Yes and 2 to No) 7) VALUE CHANGE, which converts improper raw data (CRF) values, such as negative height or weight, or improperly defined values, such as missing value -99, to appropriate CRT statistical values and definitions. 8) LABEL CHANGE, which renames non-explicit or improperly made labels, such as those with over 40 characters, to conform to FDA requirements. It s obvious that these can be done automatically by well-defined SAS macros or SCL methods, and can be easily implemented by setting the standards and models. All the user requirements can be put in an Excel file -- SAS can read the Excel file and create the individual SAS program for the specific domain very easily. A new trick from SAS/ODS exchanges information between SAS and Excel CSV files without opening the Excel file. We have been successful in developing all of the required generic macros and SAS/SCL interfaces and toolkits to help automate procedures, so the above eight actions can be accurately and efficiently achieved right now. The following is an example of standards and models to create CRT data sets: Standards The following standards are being implemented as part of the pharmaceutical industry s standards to incorporate FDA guidelines into a company s developmental process: Standard for creating CRT data sets and variables: Define Data set Name Define Key Variables Define Common Variables Modify Remaining Variables Sort by Key, Common, and Remaining Variables. Avoid Software Issue Avoid Attribute Issue CRT Data set name must be <=8 characters. Data set name must be identified by using 6 or 7 characters; the last one or two characters can be 0 or _0 such as demog0. And make sure there are no duplicate data set names, since all the data sets will be placed in the same folder at submission. Key variables which uniquely identify each record in the data set. The variables that are added to each CRT data set (such as subjid, trtgrp, sex, age). Eight actions should be applied to each variable to further clean up any uncertainties and conflicts in raw data sets and reduce ambiguity for submission reviewers. The data set can be sorted by key variables and common variables, then the order collected on CRF. The SORTEDBY key variable will be reflected in the data definition table. All the verbatim variables and original variables should stay together. Versions 6 or higher to create version 5 XPT files. Make sure there are no version conflicts, such as length of label, variable name, and format. Variable name should be unique, <=7 characters, the last character can be used for identifying special meanings for variables in CRT data sets (such as VISITID, VISITIDZ). Variable names will not exceed 8 characters. Version 5 requires a label of <=40 characters. All numeric variables will create new twin variables associated by using its format decoding Model for CRT Data Set The model contains the following components in each domain: variable name, variable label, key order, variable type, variable length, formats, and comments. The Data Definition table (Define PDF) is the reflection of the data model defined by the company s own practice. SAS can create hyperlinks and bookmarks in PDF. There are several vendors out there creating define.pdf by using VB, C++, and other software languages. What they do is to use SAS as the backbone software to manipulate SAS data sets and to create SAS output; they create a VB or VC interface for transferring the SAS output into a Microsoft Word file and later convert into a PDF file. This process is too laborious. Since there are several

3 softwares involved, sometimes manually entered data is needed, such as hand-typing the page numbers and other information. If the variables appear in multiple CRF pages, or if formats have been created from multiple SAS catalogs, there is going to be a problem. To customize a third party software can be very difficult, since all the output files are from SAS. It makes sense to use SAS to create all e-publishing tools directly. We have successfully used SAS to create SAS transport files and all our PDF reports, such as define.pdf, and combine all the tables, listings, and figures, together with bookmarks and hyperlinks Summary The first component of data processing contains all data collected in a clinical trial - whether it is paper CRFs, ancillary data on tape, or other paper- or computer-based data. These are named raw data. The second component is the CRT data. This data is organized in a normalized structure that is most suited for FDA guidance item 11. Data standardization implies 8 actions to transfer raw data (CRF) into standard data (CRT). The third component, the analysis data, is intended for two usages: (1) it constructs row and column group variables and outcome variables. (2) it adds calculated values, derived variables, and analysis decisions onto (1), and creates a data set that includes the statistical summary for final presentation in tables, listings and figures. Standardizing this type of data is associated with TLF standardization, which follows. 2.3 TLF Standardization Four Phases in TLF Generation 1. Obtaining the clinical trial raw data from CRF and QCing it. 2. Creating CRT data sets by using FDA guidance based on CRF data, for instance DEMOG0 data sets. 3. Creating analysis data sets based on CRT data sets: (i)analysis data sets extracted from CRT data sets, such as DEMOG1 extracted from DEMOG0, contain only row group identifiers, column group identifiers and outcome variables. (ii)all statistics and data reconstruction are applied on the extracted data set, such as DEMOG1, and a final report data set is generated, such as DemogFinal (DEMOG2). 4. Report generation Methodologies There are two types of methodologies that are available quickly and efficiently to generate tables, listings and figures: 1. Format-driven 2. Template-driven The Template-Driven Approach DIAGRAM OF TEMPLATE DRIVEN MECHANISIM Start at SEPCS Get CRT data sets Demog 0 Create analysis Data AnalyDs1 Create Final report data FinalDs Reporting Macro T.L.F PDF/RPF SPEC TEMPLATE (ASCII) SAS/ODS SAS/MACRO EXCEL PDF/RTF Output Statistician SAS programmer The Format-Driven Approach FDA has required submission of all formats used. To present all the meta data in SAS format not only will help the FDA reviewer to find quickly all the information you have provided by looking into the format folder, but it will also help your company standardize data processing and e-publishing. Here is a example to create drug name format: proc catalog cat=library.newfmts kill; quit; proc format library=library.newfmts ;

4 value $drugnm 'DRUGNM' ='ALVCC'; proc format library=library.newfmts fmtlib; within the SAS program, the SAS macro %set_drugnm(lib=library,fmtcat=newfmts,format=drugnm); will automate the information into a proper place. The SAS format has some very nice features, such as other and picture, and Version 9 and upcoming new versions will provide more options to save a lot of time spent in typing information. We have been using 100% SAS format to input all meta data, such as comments, titles, footnotes and headers, and to change any discrepant data Comparison of Template-driven and Formatdriven Approaches: In general, the pros and cons of format-driven vs. template-driven are: format-driven is more automatic, and requires fewer modifications. template-driven is better for making as-needed modifications over time. They both have great advantages over any non-standardizing programming approach. Using a template-driven or a format driven approach will collect all the value added information or marginal information which is not from the SAS data set into one place either a template (an ASCII file) or a format (in FDA guidance item 10 format folder). The FDA reviewer will appreciate that any non-sas data set information can be easily found, and your company can access or modify that information quickly Modification of Marginal Information. The difference between the format-driven approach and the template-driven approach is in how the marginal section is presented. In the template-driven approach, the Life Cycle started at two meta data files: (1) the specs from the statistician which include all user requirements, and (2) the template to define and amend the final table marginal sections. A project-free SAS macro can read both the final data set (the second analysis data set) and the template at the same time to create a table output. A set of pre-defined SAS macros will apply the statistical tests and specs to create the second analysis data set from the first analysis data set. A set of SAS macros will create row, column, and outcome variables from CRT data derived from the specs. In the format-driven approach, all the margins in formation can be stored in one SAS format catalog file. To modify the final TLF, you only need to change the format in a newfmts.sas. Recreate the format once, and the corresponding titles, footnotes and headers, as well as any other information you may want to insert into the final report will change immediately. Here is a format that has been generated for titles: value $f_title '1'='ABC Pharmarceutical, Inc. '2'='DRUG A: ACD-mI PR-T Conjugate '3'='Study Report: '4'='Figure 9.&num_fig..&g '5'='Distribution Curves for &testname' '6'='&&bld&g.-4th Dose ; Here is how the titles have been created simultaneously. %macro titles; data _null_; %do l= 1 %to &num_titles; %global f_title&l;; %let f_title&l =%sysfunc(putc(&l,$f_title.)); %if &l < 4 %then %do; title&l h=0.6 j = l ls = 0.3 f=times "&&f_title&l"; % %else %do; title&l h=0.6 ls = 0.3 f=times "&&f_title&l"; % % ods proclabel="&f_title4"; %m You don t need to change any code in the program if you want to change the title, footnote and header. You only need to change the format in the format library by rerunning newfmts.sas Modification of Interior Section We are working on the two-dimensional rectangular form rows and columns. The data intersection of tables can be summarized to some models. Here are some examples MODEL 1: one column and categorical data MODEL 2: one column of continuous data MODEL 3: one column of mixed continuous and categorical data MODEL 4: multiple columns of categorical data MODEL 5: multiple columns of continuous data MODEL 6: multiple columns of mixed continuous and categorical data MODEL 7: multiple columns of categorical data with p-values MODEL 8: multiple columns of continuous data with p-values There are only a few models you may need to use. For example, we only need descriptive statistics n and pct for categorical data. And n, mean, median, S.D. Min, Max are descriptive statistics for continuous data. Sometimes we need to calculate p-values as well. They can be generated by well-defined SAS macros, as long as we have the row group identifier variable, the column group identifier variable, and the outcome variable. The macros for one column and for multiple column calculation can be different, but the idea is the same. For example, the macro to calculate n and pct for one-column categorical data can be written as: %macro GetNpctOneCol(varnm =, i =, where_ =, pct_y_n =, totalpat = ); proc sql; create table &varnm._ as select &i as row_grp, count(distinct patid) as count from &indata &where_ order by row_grp; quit; data out&i (keep=label_ pct row_grp); length label_ $50 pct $15; set &varnm._; label_="&varnm"; %if %upcase(&pct_y_n)=no %then %do; pct=' ' put(count,3.); % %else %do; pct_=100*count/&totalpat; pct=put(count,3.) "(" put(pct_,4.1 -L) ")"; % row_grp = &i; %m The macro to calculate n, median, mean, std and pct for onecolumn continuous data can be written as: %macro GetStatOneCol(varnm=,i=);

5 proc univariate data=&indata noprint; var &varnm; output out=&varnm._out n=n mean=mean median=median std=std min=min max=max; data &varnm._out(drop=n_n mean_n median_n std_n); length range $30; set &varnm._out(rename=(n=n_n mean=mean_n median=median_n std=std_n)); n = put(n_n,6.); mean = put(mean_n,7.1); median = put(median_n,7.1); std = put(std_n,7.1); range "," trim(put(max,12.1 -L)) ')'; row_grp = &i; proc transpose data=&varnm._out out=&varnm._out2 ; by row_grp; var n mean median std range; data out&i(drop=_name_ col1); length label_ $50 c1 $30; set &varnm._out2; select(_name_); when("n") do; = '(' trim(left(put(min,12.1))) row_ord = 1; label_ = "N"; when("mean") do; row_ord = 2; label_ = "Mean"; when("median") do; row_ord =3; label_ = "Median"; when("std") do; row_ord = 4; label_ = "SD"; when("range") do; row_ord = 5; label_ = "Min, Max"; otherwise; pct=col1; c1=pct; %m For example, for MODEL 3: one column of mixed continuous and categorical data the table looks like this: ABC Corporation Page 1 of 1 Protocol No. VCC TABLE Summary of Subject Demographics Parameter Statistic Total Number of Subjects n 120 Gender Male n (%) 70(58) Female n (%) 50(42) Age (yrs) n 120 Mean 18.2 Median 17 Std. Dev (Min., Max.) (16,19) Height (cm) n 120 Mean 170 Median 172 Std. Dev (Min., Max.) (152,183) Weight (kg) n 120 Mean 142 Median 151 Std. Dev. 5.2 (Min., Max.) (80,210) The macro for creating the final data set can be written as: %let indata=crt.demog0; %GetNpctOneCol( varnm=totalpat, i=1, where_=%str(where ittflag=1), pct_y_n=no, totalpat=120 ); %GetNpctOne Col( varnm=sex1, i=2, where_=%str(where sex=1 ), pct_y_n=, totalpat=120 ); %GetNpctOneCol( varnm=sex2, i=3, where_=%str(where sex=2 ),

6 pct_y_n=, totalpat=120); %GetStatOneCol(varnm=age,i=9); %let indata=crt.wtht_1; %GetStatOneCol(varnm=ht,i=10); %GetStatOneCOl(varnm=wt,i=11); To create the interior section of a table is to create the final data set. After the final data set has been created, the last step of programming the report generation can also be standardized Report Generation in TLF Standardization It s important to separate the final data set from the report section. Often we need to change or QC final data sets, and to change the final report format and layout separately. It s necessary to define a standard TLF layout. Here is an example for defining the TLF output standard: The first row is for the company name (left justified); and for page of (right justified). The second row is for the protocol number. The third row is blank. The fourth row is for table numbers. The fifth row is blank. The sixth row is for titles (center; if too long, wrap it up into the next (seventh) line) Otherwise, The seventh row is blank. The eighth row is the horizontal line. The ninth row is blank. The tenth row is the start of the header (center). The eleventh and subsequent rows will continue the header as needed. After finishing the header comes the middle section where the data is presented. Then comes the footer: The first row is the horizontal line The second row is blank or footnotes The third row is for program name (left justified) and creation date (right justified) Total page size: 44 to 66 lines Line size: 132 to 160 characters It s critical to set up an option such as page size. When the width of a variable is too long to fit in a column, we can use flow options in proc report to wrap it to the next line. It s better to set a macro variable to allow the user to justify the PAGESIZE. Another issue in the report sections is the PDF output. As FDA requires, the TLF outputs have to be in PDF format. In creating PDF format, SAS/ODS can be easily used to produce PDF or RTF. We should pay attention to the following issues: (1) To have one bookmark is easy if we use proclabel. And content= to remove the second child bookmark. But to add more children bookmarks, or to change the font and size of bookmarks, is not an option for currently released SAS. You can still use proc template to add and modify default bookmarks, but you need to write a lot of code to do it. (2) Font size changes in tables: Version 8.2 has an issue in changing the font size when you use an ASCII file as the input file. The default is 6.7 for the font size magnification, and you may need to set an ODS-style element in the proc report, do not try to input ASCII file by using Data _null_. You also can use SAS Version 9 to solve the font issue. (3) Hyperlinks: SAS/ODS can create PDF directly. But to link TLF output back and forth, you need to create a postscript file, and the distiller to PDF which is still much better than to convert RTF to PDF. For links to other types of files, you may use http: and file://. It works very well when we create define.pdf and links to different pages, or links to SAS Transport (XPT) files. There is always a possibility, no matter how complicated a task you may want to do, that SAS Data _null_ can manipulate PDF or postscript code to create anything beyond ordinary. There are some SAS shortcut tricks in the system development software that you should know about, but obviously it s impossible to show everything in such a short paper. 3. CONCLUSION To standardize data processes and e-publishing is necessary and feasible. We have been creating various tools and programs by using SAS in standardizing data processing and e-publishing. We have the SAS/ODS toolkits for e-publishing purposes. Each time it may take a few seconds to run the standard procedure and to produce electronic submission documents, such as SAS Transport (XPT) files and define.pdf, as well as other required bookmarking and hyperlinking documents. Standardization is the only choice for pharmaceutical companies to save time and to increase efficiency in drug development. It is important to understand the basic idea and to do it right. To have customized toolkits ready is part of standardization and globalization procedure, and toolkits that we use are created by SAS only. The software tools and programs generated by SAS to create a standardized data processing and e-publishing system have become available for the pharmaceutical industry, and I think the new version released by SAS will offer even more advanced features which will help us reduce a great deal of cost and time in new drug development. ACKNOWLEDGEMENTS: I would like to acknowledge and thank John Green, John Wenston, Andy Siegel, Linda Barrett, Jennifer Angell, Kathleen Greene, Anthony Homer, Carlos Diaz, Qi Zhang and Min Zhang. Without their inspiration and help this paper could not have been written. REFERENCES: SAS is a registered trademark of SAS Institute Inc. FDA (1999a), Guidance for Industry Providing Regulatory Submissions to the Center for Biological Evaluation and Research (CBER) in Electronic Format Biologics Marketing Applications, Food and Drug Administration, November FDA (1999b) Providing Regulatory Submissions in Electronic Format NDAs, Food and Drug Administration, January FDA (2000), Application to Market a New Drug, Biologic, or an Antibiotic Drug for Human Use, April, CONTACT INFORMATION Your comments and questions are valued and encouraged Shawn Wang MedXview, Inc 124 Mt. Auburn Street Cambridge, MA Work Phone: (617) Fax: (617) shawnwang@medxview.com Web:

PharmaSUG China 2018 Paper AD-62

PharmaSUG China 2018 Paper AD-62 PharmaSUG China 2018 Paper AD-62 Decomposition and Reconstruction of TLF Shells - A Simple, Fast and Accurate Shell Designer Chengeng Tian, dmed Biopharmaceutical Co., Ltd., Shanghai, China ABSTRACT Table/graph

More information

Automating the Creation of Data Definition Tables (Define.pdf) Using SAS Version 8.2

Automating the Creation of Data Definition Tables (Define.pdf) Using SAS Version 8.2 Automating the Creation of Data Definition Tables (Define.pdf) Using SAS Version 8.2 Eugene Yeh, PharmaNet, Inc., Cary, NC Syamala Kasichainula, PharmaNet, Inc., Cary, NC Katie Lanier, PharmaNet, Inc.,

More information

Data Integrity through DEFINE.PDF and DEFINE.XML

Data Integrity through DEFINE.PDF and DEFINE.XML Data Integrity through DEFINE.PDF and DEFINE.XML Sy Truong, Meta Xceed, Inc, Fremont, CA ABSTRACT One of the key questions asked in determining if an analysis dataset is valid is simply, what did you do

More information

Making a List, Checking it Twice (Part 1): Techniques for Specifying and Validating Analysis Datasets

Making a List, Checking it Twice (Part 1): Techniques for Specifying and Validating Analysis Datasets PharmaSUG2011 Paper CD17 Making a List, Checking it Twice (Part 1): Techniques for Specifying and Validating Analysis Datasets Elizabeth Li, PharmaStat LLC, Newark, California Linda Collins, PharmaStat

More information

Lex Jansen Octagon Research Solutions, Inc.

Lex Jansen Octagon Research Solutions, Inc. Converting the define.xml to a Relational Database to Enable Printing and Validation Lex Jansen Octagon Research Solutions, Inc. Leading the Electronic Transformation of Clinical R&D * PharmaSUG 2009,

More information

Lex Jansen Octagon Research Solutions, Inc.

Lex Jansen Octagon Research Solutions, Inc. Converting the define.xml to a Relational Database to enable Printing and Validation Lex Jansen Octagon Research Solutions, Inc. Leading the Electronic Transformation of Clinical R&D PhUSE 2009, Basel,

More information

SAS (Statistical Analysis Software/System)

SAS (Statistical Analysis Software/System) SAS (Statistical Analysis Software/System) Clinical SAS:- Class Room: Training Fee & Duration : 23K & 3 Months Online: Training Fee & Duration : 25K & 3 Months Learning SAS: Getting Started with SAS Basic

More information

Sandra Minjoe, Accenture Life Sciences John Brega, PharmaStat. PharmaSUG Single Day Event San Francisco Bay Area

Sandra Minjoe, Accenture Life Sciences John Brega, PharmaStat. PharmaSUG Single Day Event San Francisco Bay Area Sandra Minjoe, Accenture Life Sciences John Brega, PharmaStat PharmaSUG Single Day Event San Francisco Bay Area 2015-02-10 What is the Computational Sciences Symposium? CSS originally formed to help FDA

More information

How to write ADaM specifications like a ninja.

How to write ADaM specifications like a ninja. Poster PP06 How to write ADaM specifications like a ninja. Caroline Francis, Independent SAS & Standards Consultant, Torrevieja, Spain ABSTRACT To produce analysis datasets from CDISC Study Data Tabulation

More information

SAS CLINICAL SYLLABUS. DURATION: - 60 Hours

SAS CLINICAL SYLLABUS. DURATION: - 60 Hours SAS CLINICAL SYLLABUS DURATION: - 60 Hours BASE SAS PART - I Introduction To Sas System & Architecture History And Various Modules Features Variables & Sas Syntax Rules Sas Data Sets Data Set Options Operators

More information

Legacy to SDTM Conversion Workshop: Tools and Techniques

Legacy to SDTM Conversion Workshop: Tools and Techniques Legacy to SDTM Conversion Workshop: Tools and Techniques Mike Todd President Nth Analytics Legacy Data Old studies never die Legacy studies are often required for submissions or pharmacovigilence. Often

More information

Getting Up to Speed with PROC REPORT Kimberly LeBouton, K.J.L. Computing, Rossmoor, CA

Getting Up to Speed with PROC REPORT Kimberly LeBouton, K.J.L. Computing, Rossmoor, CA SESUG 2012 Paper HW-01 Getting Up to Speed with PROC REPORT Kimberly LeBouton, K.J.L. Computing, Rossmoor, CA ABSTRACT Learning the basics of PROC REPORT can help the new SAS user avoid hours of headaches.

More information

Customizing SAS Data Integration Studio to Generate CDISC Compliant SDTM 3.1 Domains

Customizing SAS Data Integration Studio to Generate CDISC Compliant SDTM 3.1 Domains Paper AD17 Customizing SAS Data Integration Studio to Generate CDISC Compliant SDTM 3.1 Domains ABSTRACT Tatyana Kovtun, Bayer HealthCare Pharmaceuticals, Montville, NJ John Markle, Bayer HealthCare Pharmaceuticals,

More information

Creating a Patient Profile using CDISC SDTM Marc Desgrousilliers, Clinovo, Sunnyvale, CA Romain Miralles, Clinovo, Sunnyvale, CA

Creating a Patient Profile using CDISC SDTM Marc Desgrousilliers, Clinovo, Sunnyvale, CA Romain Miralles, Clinovo, Sunnyvale, CA Creating a Patient Profile using CDISC SDTM Marc Desgrousilliers, Clinovo, Sunnyvale, CA Romain Miralles, Clinovo, Sunnyvale, CA ABSTRACT CDISC SDTM data is the standard format requested by the FDA for

More information

How to review a CRF - A statistical programmer perspective

How to review a CRF - A statistical programmer perspective Paper DH07 How to review a CRF - A statistical programmer perspective Elsa Lozachmeur, Novartis Pharma AG, Basel, Switzerland ABSTRACT The design of the Case Report Form (CRF) is critical for the capture

More information

Beyond OpenCDISC: Using Define.xml Metadata to Ensure End-to-End Submission Integrity. John Brega Linda Collins PharmaStat LLC

Beyond OpenCDISC: Using Define.xml Metadata to Ensure End-to-End Submission Integrity. John Brega Linda Collins PharmaStat LLC Beyond OpenCDISC: Using Define.xml Metadata to Ensure End-to-End Submission Integrity John Brega Linda Collins PharmaStat LLC Topics Part 1: A Standard with Many Uses Status of the Define.xml Standard

More information

Preparing the Office of Scientific Investigations (OSI) Requests for Submissions to FDA

Preparing the Office of Scientific Investigations (OSI) Requests for Submissions to FDA PharmaSUG 2018 - Paper EP15 Preparing the Office of Scientific Investigations (OSI) Requests for Submissions to FDA Ellen Lin, Wei Cui, Ran Li, and Yaling Teng Amgen Inc, Thousand Oaks, CA ABSTRACT The

More information

An Efficient Tool for Clinical Data Check

An Efficient Tool for Clinical Data Check PharmaSUG 2018 - Paper AD-16 An Efficient Tool for Clinical Data Check Chao Su, Merck & Co., Inc., Rahway, NJ Shunbing Zhao, Merck & Co., Inc., Rahway, NJ Cynthia He, Merck & Co., Inc., Rahway, NJ ABSTRACT

More information

There s No Such Thing as Normal Clinical Trials Data, or Is There? Daphne Ewing, Octagon Research Solutions, Inc., Wayne, PA

There s No Such Thing as Normal Clinical Trials Data, or Is There? Daphne Ewing, Octagon Research Solutions, Inc., Wayne, PA Paper HW04 There s No Such Thing as Normal Clinical Trials Data, or Is There? Daphne Ewing, Octagon Research Solutions, Inc., Wayne, PA ABSTRACT Clinical Trials data comes in all shapes and sizes depending

More information

Using SAS Macro to Include Statistics Output in Clinical Trial Summary Table

Using SAS Macro to Include Statistics Output in Clinical Trial Summary Table Using SAS Macro to Include Statistics Output in Clinical Trial Summary Table Amy C. Young, Ischemia Research and Education Foundation, San Francisco, CA Sharon X. Zhou, Ischemia Research and Education

More information

Figure 1. Table shell

Figure 1. Table shell Reducing Statisticians Programming Load: Automated Statistical Analysis with SAS and XML Michael C. Palmer, Zurich Biostatistics, Inc., Morristown, NJ Cecilia A. Hale, Zurich Biostatistics, Inc., Morristown,

More information

Now let s take a look

Now let s take a look 1 2 3 4 Manage assets across the end to end life cycle of your studies This includes forms, datasets, terminologies, files, links and more, for example: - Studies may contain the protocol, a set of Forms,

More information

Biotechnology Industry Organization 1225 Eye Street NW, Suite 400 Washington, DC 20006

Biotechnology Industry Organization 1225 Eye Street NW, Suite 400 Washington, DC 20006 Biotechnology Industry Organization 1225 Eye Street NW, Suite 400 Washington, DC 20006 December 22, 2003 Dockets Management Branch (HFA-305) Food and Drug Administration 5630 Fishers Lane Room 1061 Rockville,

More information

How a Metadata Repository enables dynamism and automation in SDTM-like dataset generation

How a Metadata Repository enables dynamism and automation in SDTM-like dataset generation Paper DH05 How a Metadata Repository enables dynamism and automation in SDTM-like dataset generation Judith Goud, Akana, Bennekom, The Netherlands Priya Shetty, Intelent, Princeton, USA ABSTRACT The traditional

More information

Automate Clinical Trial Data Issue Checking and Tracking

Automate Clinical Trial Data Issue Checking and Tracking PharmaSUG 2018 - Paper AD-31 ABSTRACT Automate Clinical Trial Data Issue Checking and Tracking Dale LeSueur and Krishna Avula, Regeneron Pharmaceuticals Inc. Well organized and properly cleaned data are

More information

Data Edit-checks Integration using ODS Tagset Niraj J. Pandya, Element Technologies Inc., NJ Vinodh Paida, Impressive Systems Inc.

Data Edit-checks Integration using ODS Tagset Niraj J. Pandya, Element Technologies Inc., NJ Vinodh Paida, Impressive Systems Inc. PharmaSUG2011 - Paper DM03 Data Edit-checks Integration using ODS Tagset Niraj J. Pandya, Element Technologies Inc., NJ Vinodh Paida, Impressive Systems Inc., TX ABSTRACT In the Clinical trials data analysis

More information

SAS Online Training: Course contents: Agenda:

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

More information

Get ready for ectd in South Africa

Get ready for ectd in South Africa Get ready for ectd in South Africa Going from CTD to ectd Anita Smal, 14 & 15 February 2013 Agenda The goal Planning Prepare submission ready documents PDFs ectd content planning ectd structure planning

More information

SAS Application to Automate a Comprehensive Review of DEFINE and All of its Components

SAS Application to Automate a Comprehensive Review of DEFINE and All of its Components PharmaSUG 2017 - Paper AD19 SAS Application to Automate a Comprehensive Review of DEFINE and All of its Components Walter Hufford, Vincent Guo, and Mijun Hu, Novartis Pharmaceuticals Corporation ABSTRACT

More information

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

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

More information

The Wonderful World of Define.xml.. Practical Uses Today. Mark Wheeldon, CEO, Formedix DC User Group, Washington, 9 th December 2008

The Wonderful World of Define.xml.. Practical Uses Today. Mark Wheeldon, CEO, Formedix DC User Group, Washington, 9 th December 2008 The Wonderful World of Define.xml.. Practical Uses Today Mark Wheeldon, CEO, Formedix DC User Group, Washington, 9 th December 2008 Agenda Introduction to Formedix What is Define.xml? Features and Benefits

More information

A CMC Reviewer s Perspective on the Quality Overall Summary. Arthur B. Shaw, Ph.D. FDA/CDER/ONDQA FDA DMF Expert June 15, 2010.

A CMC Reviewer s Perspective on the Quality Overall Summary. Arthur B. Shaw, Ph.D. FDA/CDER/ONDQA FDA DMF Expert June 15, 2010. A CMC Reviewer s Perspective on the Quality Overall Summary and Module 3 Arthur B. Shaw, Ph.D. FDA/CDER/ONDQA FDA DMF Expert June 15, 2010 Disclaimer The views and opinions expressed in the following PowerPoint

More information

INTRODUCTION TO SAS HOW SAS WORKS READING RAW DATA INTO SAS

INTRODUCTION TO SAS HOW SAS WORKS READING RAW DATA INTO SAS TO SAS NEED FOR SAS WHO USES SAS WHAT IS SAS? OVERVIEW OF BASE SAS SOFTWARE DATA MANAGEMENT FACILITY STRUCTURE OF SAS DATASET SAS PROGRAM PROGRAMMING LANGUAGE ELEMENTS OF THE SAS LANGUAGE RULES FOR SAS

More information

Tips on Creating a Strategy for a CDISC Submission Rajkumar Sharma, Nektar Therapeutics, San Francisco, CA

Tips on Creating a Strategy for a CDISC Submission Rajkumar Sharma, Nektar Therapeutics, San Francisco, CA PharmaSUG 2015 - Paper IB09 Tips on Creating a Strategy for a CDISC Submission Rajkumar Sharma, Nektar Therapeutics, San Francisco, CA ABSTRACT A submission to FDA for an NDA (New Drug Application) or

More information

A Macro to replace PROC REPORT!?

A Macro to replace PROC REPORT!? Paper TS03 A Macro to replace PROC REPORT!? Katja Glass, Bayer Pharma AG, Berlin, Germany ABSTRACT Some companies have macros for everything. But is that really required? Our company even has a macro to

More information

Taming Rave: How to control data collection standards?

Taming Rave: How to control data collection standards? Paper DH08 Taming Rave: How to control data collection standards? Dimitri Kutsenko, Entimo AG, Berlin, Germany Table of Contents Introduction... 1 How to organize metadata... 2 How to structure metadata...

More information

Clinical Data Model and FDA Submissions

Clinical Data Model and FDA Submissions Clinical Data Model and FDA Submissions Shy Kumar, Datafarm, Inc., Marlboro, MA Gajanan Bhat, Boston Scientific Corporation, Natick, MA ABSTRACT Development of data model in clinical trial management environment

More information

Material covered in the Dec 2014 FDA Binding Guidances

Material covered in the Dec 2014 FDA Binding Guidances Accenture Accelerated R&D Services Rethink Reshape Restructure for better patient outcomes Sandra Minjoe Senior ADaM Consultant Preparing ADaM and Related Files for Submission Presentation Focus Material

More information

PharmaSUG Paper TT11

PharmaSUG Paper TT11 PharmaSUG 2014 - Paper TT11 What is the Definition of Global On-Demand Reporting within the Pharmaceutical Industry? Eric Kammer, Novartis Pharmaceuticals Corporation, East Hanover, NJ ABSTRACT It is not

More information

GDUFA s Impact on ectds / Case Study: Implementing PDF Standards

GDUFA s Impact on ectds / Case Study: Implementing PDF Standards GDUFA s Impact on ectds / Case Study: Implementing PDF Standards GPhA 2015 Fall Technical Conference GDUFA S Impact on ectds GPhA 2015 Fall Technical Conference 1 Introductions Kevin Tompkins Director,

More information

CDASH Standards and EDC CRF Library. Guang-liang Wang September 18, Q3 DCDISC Meeting

CDASH Standards and EDC CRF Library. Guang-liang Wang September 18, Q3 DCDISC Meeting CDASH Standards and EDC CRF Library Guang-liang Wang September 18, 2014 2014 Q3 DCDISC Meeting 1 Disclaimer The content of this presentation does not represent the views of my employer or any of its affiliates.

More information

Overview 14 Table Definitions and Style Definitions 16 Output Objects and Output Destinations 18 ODS References and Resources 20

Overview 14 Table Definitions and Style Definitions 16 Output Objects and Output Destinations 18 ODS References and Resources 20 Contents Acknowledgments xiii About This Book xv Part 1 Introduction 1 Chapter 1 Why Use ODS? 3 Limitations of SAS Listing Output 4 Difficulties with Importing Standard Listing Output into a Word Processor

More information

Paper S Data Presentation 101: An Analyst s Perspective

Paper S Data Presentation 101: An Analyst s Perspective Paper S1-12-2013 Data Presentation 101: An Analyst s Perspective Deanna Chyn, University of Michigan, Ann Arbor, MI Anca Tilea, University of Michigan, Ann Arbor, MI ABSTRACT You are done with the tedious

More information

One-PROC-Away: The Essence of an Analysis Database Russell W. Helms, Ph.D. Rho, Inc.

One-PROC-Away: The Essence of an Analysis Database Russell W. Helms, Ph.D. Rho, Inc. One-PROC-Away: The Essence of an Analysis Database Russell W. Helms, Ph.D. Rho, Inc. Chapel Hill, NC RHelms@RhoWorld.com www.rhoworld.com Presented to ASA/JSM: San Francisco, August 2003 One-PROC-Away

More information

Developing Graphical Standards: A Collaborative, Cross-Functional Approach Mayur Uttarwar, Seattle Genetics, Inc., Bothell, WA

Developing Graphical Standards: A Collaborative, Cross-Functional Approach Mayur Uttarwar, Seattle Genetics, Inc., Bothell, WA PharmaSUG 2014 - DG03 Developing Graphical Standards: A Collaborative, Cross-Functional Approach Mayur Uttarwar, Seattle Genetics, Inc., Bothell, WA ABSTRACT Murali Kanakenahalli, Seattle Genetics, Inc.,

More information

Streamline SDTM Development and QC

Streamline SDTM Development and QC Paper SI09 Streamline SDTM Development and QC Stephen Gormley, Amgen, United Kingdom ABSTRACT Amgen s Global Statistical Programming ( GSP ) function have one centralised team (The CDISC Consultancy and

More information

Data Standardisation, Clinical Data Warehouse and SAS Standard Programs

Data Standardisation, Clinical Data Warehouse and SAS Standard Programs Paper number: AD03 Data Standardisation, Clinical Data Warehouse and SAS Standard Programs Jean-Marc Ferran, Standardisation Manager, MSc 1 Mikkel Traun, Functional Architect, MSc 1 Pia Hjulskov Kristensen,

More information

ehepqual- HCV Quality of Care Performance Measure Program

ehepqual- HCV Quality of Care Performance Measure Program NEW YORK STATE DEPARTMENT OF HEALTH AIDS INSTITUTE ehepqual- HCV Quality of Care Performance Measure Program USERS GUIDE A GUIDE FOR PRIMARY CARE AND HEPATITIS C CARE PROVIDERS * * For use with ehepqual,

More information

PharmaSUG Paper AD09

PharmaSUG Paper AD09 PharmaSUG 2015 - Paper AD09 The Dependency Mapper: How to save time on changes post database lock Apoorva Joshi, Biogen, Cambridge, MA Shailendra Phadke, Eliassen Group, Wakefield, MA ABSTRACT We lay emphasis

More information

From Just Shells to a Detailed Specification Document for Tables, Listings and Figures Supriya Dalvi, InVentiv Health Clinical, Mumbai, India

From Just Shells to a Detailed Specification Document for Tables, Listings and Figures Supriya Dalvi, InVentiv Health Clinical, Mumbai, India PharmaSUG 2014 - Paper IB07 From Just Shells to a Detailed Specification Document for Tables, Listings and Figures Supriya Dalvi, InVentiv Health Clinical, Mumbai, India ABSTRACT We are assigned a new

More information

ODS/RTF Pagination Revisit

ODS/RTF Pagination Revisit PharmaSUG 2018 - Paper QT-01 ODS/RTF Pagination Revisit Ya Huang, Halozyme Therapeutics, Inc. Bryan Callahan, Halozyme Therapeutics, Inc. ABSTRACT ODS/RTF combined with PROC REPORT has been used to generate

More information

One SAS To Rule Them All

One SAS To Rule Them All SAS Global Forum 2017 ABSTRACT Paper 1042 One SAS To Rule Them All William Gui Zupko II, Federal Law Enforcement Training Centers In order to display data visually, our audience preferred Excel s compared

More information

Quality Control of Clinical Data Listings with Proc Compare

Quality Control of Clinical Data Listings with Proc Compare ABSTRACT Quality Control of Clinical Data Listings with Proc Compare Robert Bikwemu, Pharmapace, Inc., San Diego, CA Nicole Wallstedt, Pharmapace, Inc., San Diego, CA Checking clinical data listings with

More information

Paper AD16 MDMAP An innovative application utilized in the management of clinical trial metadata

Paper AD16 MDMAP An innovative application utilized in the management of clinical trial metadata Paper AD16 MDMAP An innovative application utilized in the management of clinical trial metadata Gregory Ridge and Neeru Bhardwaj The sanofi-aventis Group, Malvern, PA Abstract Since 1999, sanofi-aventis

More information

Word processing software

Word processing software Unit 351 Word processing software UAN: Level: 3 Credit value: 6 GLH: 45 Y/502/4629 Assessment type: Portfolio of Evidence or assignment (7574 ITQ Users) Relationship to NOS: Assessment requirements specified

More information

Study Data Reviewer s Guide Completion Guideline

Study Data Reviewer s Guide Completion Guideline Study Data Reviewer s Guide Completion Guideline 22-Feb-2013 Revision History Date Version Summary 02-Nov-2012 0.1 Draft 20-Nov-2012 0.2 Added Finalization Instructions 10-Jan-2013 0.3 Updated based on

More information

Word 2010 Skills Checklist

Word 2010 Skills Checklist S1 S2 Sharing and Maintaining Documents 1.1 Apply different views to a document Select zoom options Split windows Arrange windows Arrange document views Switch between windows Open a document in a new

More information

FDA XML Data Format Requirements Specification

FDA XML Data Format Requirements Specification FDA XML Data Format Barry Brown, Product Integration Manager, Mortara Instrument Mark Kohls, Engineering Director, GE Medical Systems-Information Technologies Norman Stockbridge, M.D., Ph. D., Medical

More information

OpenCDISC Validator 1.4 What s New?

OpenCDISC Validator 1.4 What s New? OpenCDISC Validator 1.4 What s New? Bay Area CDISC Implementation Network 23 May 2013 David Borbas Sr Director, Data Management Jazz Pharmaceuticals, Inc. Disclaimers The opinions expressed in this presentation

More information

Clinical Data Visualization using TIBCO Spotfire and SAS

Clinical Data Visualization using TIBCO Spotfire and SAS ABSTRACT SESUG Paper RIV107-2017 Clinical Data Visualization using TIBCO Spotfire and SAS Ajay Gupta, PPD, Morrisville, USA In Pharmaceuticals/CRO industries, you may receive requests from stakeholders

More information

CDISC SDTM and ADaM Real World Issues

CDISC SDTM and ADaM Real World Issues CDISC SDTM and ADaM Real World Issues Washington DC CDISC Data Standards User Group Meeting Sy Truong President MXI, Meta-Xceed, Inc. http://www.meta-x.com Agenda CDISC SDTM and ADaM Fundamentals CDISC

More information

SAS Clinical Data Integration 2.4

SAS Clinical Data Integration 2.4 SAS Clinical Data Integration 2.4 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2013. SAS Clinical Data Integration 2.4: User's Guide.

More information

Programming Gems that are worth learning SQL for! Pamela L. Reading, Rho, Inc., Chapel Hill, NC

Programming Gems that are worth learning SQL for! Pamela L. Reading, Rho, Inc., Chapel Hill, NC Paper CC-05 Programming Gems that are worth learning SQL for! Pamela L. Reading, Rho, Inc., Chapel Hill, NC ABSTRACT For many SAS users, learning SQL syntax appears to be a significant effort with a low

More information

B.E. Publishing Correlations to The Office Specialist.com, 2E to Microsoft Office Specialist Word 2016 Core (77-725)

B.E. Publishing Correlations to The Office Specialist.com, 2E to Microsoft Office Specialist Word 2016 Core (77-725) Correlations to The Office Specialist.com, 2E to Microsoft Office Specialist Word 2016 Core (77-725) B.E. Publishing Correlations to The Office Specialist.com, 2E to Microsoft Office Specialist Word 2016

More information

Practical Approaches for Using the CTN Datashare: Proposing Parameters, Creating Data Tables, and Analyzing Results.

Practical Approaches for Using the CTN Datashare: Proposing Parameters, Creating Data Tables, and Analyzing Results. Practical Approaches for Using the CTN Datashare: Proposing Parameters, Creating Data Tables, and Analyzing Results Abigail Matthews The EMMES Corporation June 14, 2014 amatthews@emmes.com Outline How

More information

Study Data Reviewer s Guide

Study Data Reviewer s Guide Revision History Date Study Data Reviewer s Guide Completion Guideline: Nonclinical (nnsdrg) Version Summary V1.1 03 March 2016 1.0 First Public Version: posted for Public Comment 1.1 Update from Public

More information

PharmaSUG Paper PO12

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

More information

ICH M8 Expert Working Group. Specification for Submission Formats for ectd v1.1

ICH M8 Expert Working Group. Specification for Submission Formats for ectd v1.1 INTERNATIONAL COUNCIL FOR HARMONISATION OF TECHNICAL REQUIREMENTS FOR PHARMACEUTICALS FOR HUMAN USE ICH M8 Expert Working Group Specification for Submission Formats for ectd v1.1 November 10, 2016 DOCUMENT

More information

SAS (Statistical Analysis Software/System)

SAS (Statistical Analysis Software/System) SAS (Statistical Analysis Software/System) SAS Analytics:- Class Room: Training Fee & Duration : 23K & 3 Months Online: Training Fee & Duration : 25K & 3 Months Learning SAS: Getting Started with SAS Basic

More information

PharmaSUG Paper PO22

PharmaSUG Paper PO22 PharmaSUG 2015 - Paper PO22 Challenges in Developing ADSL with Baseline Data Hongyu Liu, Vertex Pharmaceuticals Incorporated, Boston, MA Hang Pang, Vertex Pharmaceuticals Incorporated, Boston, MA ABSTRACT

More information

Managing your metadata efficiently - a structured way to organise and frontload your analysis and submission data

Managing your metadata efficiently - a structured way to organise and frontload your analysis and submission data Paper TS06 Managing your metadata efficiently - a structured way to organise and frontload your analysis and submission data Kirsten Walther Langendorf, Novo Nordisk A/S, Copenhagen, Denmark Mikkel Traun,

More information

Design of Case Report Forms. Case Report Form. Purpose. ..CRF Official clinical data-recording document or tool used in a clinical study

Design of Case Report Forms. Case Report Form. Purpose. ..CRF Official clinical data-recording document or tool used in a clinical study Design of Case Report Forms David W. Mailhot February 23, 2010 Case Report Form..CRF Official clinical data-recording document or tool used in a clinical study PAPER RDC/RDE (Remote Data Capture, Remote

More information

IT S THE LINES PER PAGE THAT COUNTS Jonathan Squire, C2RA, Cambridge, MA Johnny Tai, Comsys, Portage, MI

IT S THE LINES PER PAGE THAT COUNTS Jonathan Squire, C2RA, Cambridge, MA Johnny Tai, Comsys, Portage, MI IT S THE LINES PER PAGE THAT COUNTS Jonathan Squire, C2RA, Cambridge, MA Johnny Tai, Comsys, Portage, MI ABSTRACT When the bodytitle option is used to keep titles and footnotes independent of the table

More information

PhUSE EU Connect Paper PP15. Stop Copying CDISC Standards. Craig Parry, SyneQuaNon, Diss, England

PhUSE EU Connect Paper PP15. Stop Copying CDISC Standards. Craig Parry, SyneQuaNon, Diss, England Paper PP15 Abstract Stop Copying CDISC Standards Craig Parry, SyneQuaNon, Diss, England We repeatedly see repositories which require a large amount of front loading, a lot of duplicating of the Clinical

More information

Microsoft Certified Application Specialist Exam Objectives Map

Microsoft Certified Application Specialist Exam Objectives Map Microsoft Certified Application Specialist Exam s Map This document lists all Microsoft Certified Application Specialist exam objectives for (Exam 77-602) and provides references to corresponding coverage

More information

Submitting High Quality ectd Submissions to FDA/OGD

Submitting High Quality ectd Submissions to FDA/OGD Submitting High Quality ectd Submissions to FDA/OGD GPhA/FDA ANDA Labeling Workshop/ USP User Forum September 11, 2013 Constance Robinson Regulatory Information Specialist edata Management Solutions Team

More information

From raw data to submission: A metadata-driven, repository-based process of data conversion to CDISC models

From raw data to submission: A metadata-driven, repository-based process of data conversion to CDISC models Paper CD08 From raw data to submission: A metadata-driven, repository-based process of data conversion to CDISC models Dimitri Kutsenko, Entimo AG, Berlin, Germany ABSTRACT The paper presents a visionary

More information

Quick Reference Card Business Objects Toolbar Design Mode

Quick Reference Card Business Objects Toolbar Design Mode Icon Description Open in a new window Pin/Unpin this tab Close this tab File Toolbar New create a new document Open Open a document Select a Folder Select a Document Select Open Save Click the button to

More information

Main challenges for a SAS programmer stepping in SAS developer s shoes

Main challenges for a SAS programmer stepping in SAS developer s shoes Paper AD15 Main challenges for a SAS programmer stepping in SAS developer s shoes Sebastien Jolivet, Novartis Pharma AG, Basel, Switzerland ABSTRACT Whether you work for a large pharma or a local CRO,

More information

Advanced Reporting in the Online Report Designer Administration Guide

Advanced Reporting in the Online Report Designer Administration Guide SuccessFactors HCM Suite November 2014 Release Version: 1.0 - December 5, 2014 CUSTOMER Advanced Reporting in the Online Report Designer Administration Guide Content 1 Change History....3 2 Overview....4

More information

Mapping Clinical Data to a Standard Structure: A Table Driven Approach

Mapping Clinical Data to a Standard Structure: A Table Driven Approach ABSTRACT Paper AD15 Mapping Clinical Data to a Standard Structure: A Table Driven Approach Nancy Brucken, i3 Statprobe, Ann Arbor, MI Paul Slagle, i3 Statprobe, Ann Arbor, MI Clinical Research Organizations

More information

PharmaSUG Paper AD03

PharmaSUG Paper AD03 PharmaSUG 2017 - Paper AD03 Three Issues and Corresponding Work-Around Solution for Generating Define.xml 2.0 Using Pinnacle 21 Enterprise Jeff Xia, Merck & Co., Inc., Rahway, NJ, USA Lugang (Larry) Xie,

More information

From ODM to SDTM: An End-to-End Approach Applied to Phase I Clinical Trials

From ODM to SDTM: An End-to-End Approach Applied to Phase I Clinical Trials PhUSE 2014 Paper PP05 From ODM to SDTM: An End-to-End Approach Applied to Phase I Clinical Trials Alexandre Mathis, Department of Clinical Pharmacology, Actelion Pharmaceuticals Ltd., Allschwil, Switzerland

More information

Why organizations need MDR system to manage clinical metadata?

Why organizations need MDR system to manage clinical metadata? PharmaSUG 2018 - Paper SS-17 Why organizations need MDR system to manage clinical metadata? Abhinav Jain, Ephicacy Consulting Group Inc. ABSTRACT In the last decade, CDISC standards undoubtedly have transformed

More information

So Much Data, So Little Time: Splitting Datasets For More Efficient Run Times and Meeting FDA Submission Guidelines

So Much Data, So Little Time: Splitting Datasets For More Efficient Run Times and Meeting FDA Submission Guidelines Paper TT13 So Much Data, So Little Time: Splitting Datasets For More Efficient Run Times and Meeting FDA Submission Guidelines Anthony Harris, PPD, Wilmington, NC Robby Diseker, PPD, Wilmington, NC ABSTRACT

More information

Chronodat Issue Tracker Add-in. User Manual CHRONODAT, LLC. February 15, 2017 Version P age

Chronodat Issue Tracker Add-in. User Manual CHRONODAT, LLC. February 15, 2017 Version P age Chronodat Issue Tracker Add-in User Manual CHRONODAT, LLC February 15, 2017 Version 2.0 1 P age Introduction The introduction section of the document describes the scope and objective of Office 365 Chronodat

More information

BI-09 Using Enterprise Guide Effectively Tom Miron, Systems Seminar Consultants, Madison, WI

BI-09 Using Enterprise Guide Effectively Tom Miron, Systems Seminar Consultants, Madison, WI Paper BI09-2012 BI-09 Using Enterprise Guide Effectively Tom Miron, Systems Seminar Consultants, Madison, WI ABSTRACT Enterprise Guide is not just a fancy program editor! EG offers a whole new window onto

More information

PRODUCTION GUIDELINES

PRODUCTION GUIDELINES PRODUCTION GUIDELINES 1 CONTENTS Contents...2 General advice for producers...3 Computer access...3 Templates...4 Page layout...4 Main text...4 First paragraph...4 Widows and orphans...4 Author details...4

More information

Tools to Facilitate the Creation of Pooled Clinical Trials Databases

Tools to Facilitate the Creation of Pooled Clinical Trials Databases Paper AD10 Tools to Facilitate the Creation of Pooled Clinical Trials Databases Patricia Majcher, Johnson & Johnson Pharmaceutical Research & Development, L.L.C., Raritan, NJ ABSTRACT Data collected from

More information

Solo 4.6 Release Notes

Solo 4.6 Release Notes June9, 2017 (Updated to include Solo 4.6.4 changes) Solo 4.6 Release Notes This release contains a number of new features, as well as enhancements to the user interface and overall performance. Together

More information

Quick Results with the Output Delivery System

Quick Results with the Output Delivery System Paper 58-27 Quick Results with the Output Delivery System Sunil K. Gupta, Gupta Programming, Simi Valley, CA ABSTRACT SAS s new Output Delivery System (ODS) opens a whole new world of options in generating

More information

Business Office Specialist

Business Office Specialist EXAM INFORMATION Items 49 Points 82 Prerequisites NONE Grade Level 10-12 Course Length ONE SEMESTER Career Cluster BUSINESS MANAGEMENT AND ADMINISTRATION DESCRIPTION This course applies advanced concepts

More information

A Practical Introduction to SAS Data Integration Studio

A Practical Introduction to SAS Data Integration Studio ABSTRACT A Practical Introduction to SAS Data Integration Studio Erik Larsen, Independent Consultant, Charleston, SC Frank Ferriola, Financial Risk Group, Cary, NC A useful and often overlooked tool which

More information

PhUSE US Connect 2019

PhUSE US Connect 2019 PhUSE US Connect 2019 Paper SI04 Creation of ADaM Define.xml v2.0 Using SAS Program and Pinnacle 21 Yan Lei, Johnson & Johnson, Spring House, PA, USA Yongjiang Xu, Johnson & Johnson, Spring House, PA,

More information

SAS Training BASE SAS CONCEPTS BASE SAS:

SAS Training BASE SAS CONCEPTS BASE SAS: SAS Training BASE SAS CONCEPTS BASE SAS: Dataset concept and creating a dataset from internal data Capturing data from external files (txt, CSV and tab) Capturing Non-Standard data (date, time and amounts)

More information

WORD 2016 INTERMEDIATE Page 1. Word 2016 Intermediate. North American Edition SAMPLE

WORD 2016 INTERMEDIATE Page 1. Word 2016 Intermediate. North American Edition SAMPLE Word 2016 Intermediate WORD 2016 INTERMEDIATE Page 1 Word 2016 Intermediate North American Edition 2015 Cheltenham Group Pty. Ltd. - www.cheltenhamcourseware.com WORD 2016 INTERMEDIATE Page 2 2015 Cheltenham

More information

Computer Technology II

Computer Technology II EXAM INFORMATION Items 49 Points 79 Prerequisites COMPUTER TECHNOLOGY I Grade Level 10-12 Course Length ONE SEMESTER Career Cluster BUSINESS MANAGEMENT AND ADMINISTRATION INFORMATION TECHNOLOGY DESCRIPTION

More information

Maximizing Statistical Interactions Part II: Database Issues Provided by: The Biostatistics Collaboration Center (BCC) at Northwestern University

Maximizing Statistical Interactions Part II: Database Issues Provided by: The Biostatistics Collaboration Center (BCC) at Northwestern University Maximizing Statistical Interactions Part II: Database Issues Provided by: The Biostatistics Collaboration Center (BCC) at Northwestern University While your data tables or spreadsheets may look good to

More information

Run your reports through that last loop to standardize the presentation attributes

Run your reports through that last loop to standardize the presentation attributes PharmaSUG2011 - Paper TT14 Run your reports through that last loop to standardize the presentation attributes Niraj J. Pandya, Element Technologies Inc., NJ ABSTRACT Post Processing of the report could

More information

Indenting with Style

Indenting with Style ABSTRACT Indenting with Style Bill Coar, Axio Research, Seattle, WA Within the pharmaceutical industry, many SAS programmers rely heavily on Proc Report. While it is used extensively for summary tables

More information