Friday, September 30, 2005

SAS Integration with MS Office

There has been interesting developments in the integration of SAS and Microsoft Office. I spoke to Vincent DelGobbo who is a Senior Systems Developer within the Web Tools Group of SAS Institute. He recognizes that users commonly have Microsoft Excel on their desktop and they use it to review their data. SAS is therefore trying creates integration that makes it easy to transfer data between SAS and MS Office. The new development is possible with the latest version of Office XP. Microsoft is updating its file format to XML. This open file format allows SAS to then generate files in which MS Excel can read directly and gain functionality such as having each dataset placed into individual work sheets within an workbook. The examples which Vincent showed will work with SAS 9.1 and MS Office XP service pack 3.

This is accomplished through ODS. SAS implementation will allow users to use their existing procedures such as PROC REPORT or PRINT or TABULATE. The only difference in sending it to Excel or Word is the ODS options. Here is an example:


ods listing close;
ods tagsets.MSOffice2K style=Banker file='aedata.htm';

title; footnote;

proc print data=pharma.phcae noobs label;
by protocol;
var patient visit aedate aecode aetext aesev aesevc frequency;
run; quit;

proc tabulate data=pharma.phcae;
by protocol;
var aesev;
class aetext aesevc;
table aetext*aesevc,aesev*pctn;
keyword all pctn;
keylabel pctn='Percent';
run; quit;

ods tagsets.MSOffice2K close;


The main difference here is the tagset being set to MSOffice2K. This is an HTM file that can be read into MSWord which will handle Word tables. Since the development of the XML tagsets from Microsoft is not yet final, some of the features are still considered experimental. Vincent tells me that things may be changing and that SAS will continue to implement features as Microsoft publishes their XML schema for office. However, the initial release for Excel and Word is available in SAS 9.1.

The example for Excel would be:


ods listing close;
ods tagsets.ExcelXP style=Banker file='aedata.xml';
* PROC PRINT and PROC TABULATE code here;
ods tagsets.ExcelXP close;


This will produce a file that Excel can read directly. There are some color limitations with Excel but SAS will produce the output as it would before. There has been some development to assist the import of the new Excel XP into SAS as well. This is accomplished through a macro that is available.


filename myxml URL 'http://Web-server/mydata.xml';
%xlxp2sas(excelfile=FILEREF:myxml,
mapfile=excelxp.map);


By default, the release of SAS 9.1 has many tools that would all users to produce and import files directly with XML file structure for MSOffice. There are some formatting limitations but users can customize through ODS PROC TEMPLATE to fine tune their output. SAS integration with Office will be a welcome move for many of us who use Excel and Word.

Thursday, September 29, 2005

SAS Drug Development with Regulatory Requirements

The latest release of SAS Drug Development is 3.0. I spoke with Chuck Reap who is a Systems Developer from SAS within the Pharmaceutical Software Analytical Solutions department. Chucked shared with me some new developments in SDD and his paper and presentation on entitled "A Regulatory Compliant Process for Developing SAS®-Based Reports".

Chuck identified some of the tasks that needed to be performed while programming SAS within a regulated industry. He then highlighted some tools that SDD delivers that fulfills these tasks. Some of these included:

• Program Editor – Enables search for logs for errors and access to SDD repository of programs.
• Schedulers – Schedule jobs
• Check-in / Check out – This is used as version control for SAS programs.
• Metadata Explorer – There is a metadata explorer to explore data and metadata.
• Electronic Signatures

Chuck was suggesting a programming environment that includes a development, test, and production to fulfill regulatory requirements. This is organized by parallel folder structure that can be managed in SDD.

The new version of SDD has improvements in the command facility. This is a scripting interface, similar to an API (Application Programmers Interface) to SDD. Although most of the access to SDD is through a web interface, some of the administrator’s tasks can be performed through the command facility to make it more efficient. The command facility is still experimental but it will be a good tool when users or administrators has to implement many studies and projects which may include hundreds of programs.

Tuesday, September 27, 2005

SAS/Graph... Something New, Something Old

I talked to Ted Durie briefly about SAS Graph. Ted is the technical training specialist at SAS Institute. Ted showed me how PROC GMAP which is part of SAS/GRAPH has many features that allow you to create nice graphics of maps. It can have the granularity of the smallest town in the US. For example:

goptions colors=(red green purple blue orange);
proc gmap data=sasdata.summary map=maps.us;
id state;
where region='Boston';
choro tot_cost / midpoints=80000 to 320000 by 80000;
format tot_cost dollar12.;
run;


The ability to generate animated GIF images is as simple as setting a device option such as:

DEVICE = GIFANIM;

Ted also described how about 70 percent of SAS graph capabilities are now available with a friendly interface through Enterprise Guide. There are still some features that are not supported such as the annotate feature. This can be found in the old SAS/Assist. The nice thing about EG is that it has minimal cost if you already license SAS on the PC.

Monday, September 26, 2005

Opening Session

WUSS 2005 was hosted by Nikki Carroll (Academic Chair) and Diana Suhr (Operations Chair) at the Fairmont Hotel in San Jose. There were plans already made for next year where it will be held at the Hyatt Regency in Irvine. Kim Le Bouton who is the chair of SUGI next year updated that SUGI is going to be held in San Francisco next year. It sure takes a lot of planning for these volunteer efforts to become such a success.

Paul Kent from SAS Institute who worked in the SAS Platform Research and Development gave the key note discussion entitled “Modern SAS;” where the semi-colon represent the behind the scene. His discussion had the theme of how SAS has evolved over the years to remain relevant. Paul planted some questions which are food for thought. These included questions such as:

What do we do?
Who do we program for?
What are the sign posts that would help us in this path of evolution?

Paul suggest some answers to these questions. He describes how there are three focus areas as to what SAS does including: Analytics, Data Management and Reporting. For data management, he pointed out some key points such as creating quality and understanding how users would use the data. For reporting, Paul pointed out how SAS has integrated with Excel since this is the tool that is on user’s desktops. SAS has the ability to hook into Excel with menus to then run SAS programs (also known as stored processes). There was a push for enterprise guide (EG) with examples and comparisons to Excel. The distinction was that EG had presented the data with both graphical and textual in the same report.

He suggest that it should be as simple as Google. This enables users to help themselves next time when they they the tool. Paul was able to distill complex work processes into simple questions and suggests approaches on how SAS users can add value to resolve these problems.

Saturday, September 17, 2005

Only a Few Days

WUSS is about to be upon us. I am looking forward to a Conference in San Jose. It is a nice downtown and local for me so that will be convenient. I believe this is WUSS 13 but they are not calling it that perhaps of bad luck. I seem to be referred to as WUSS 2005.

I will plan to blog starting next week as WUSS starts. I started my first conference blog at the last PharmaSUG which you can find at:

http://pharmasug.blogspot.com/

Previous conferences have been captured but those were the days before blogs and you can find those notes at:

http://meta-x.com/synotes/

I also wrote some papers for this conference and you can find that at:

http://www.meta-x.com/publications.html

I hope to catch you at the conference.

The phamaceutical industry needs this soluiton.Contract Research Organizations
Because it contains innovation.CRO
There are innovations in the solutions.Data Library
The phamaceutical industry needs this soluiton.Managing Thesaurus
Because it contains innovation.Reconciling Dictionaries
There are innovations in the solutions.SAS Macros
The phamaceutical industry needs this soluiton.Table of Contents
Because it contains innovation.TOC
There are innovations in the solutions.ADaM Reports
The phamaceutical industry needs this soluiton.Generate Reports from CDISC Data
Because it contains innovation.Optimize Report Generation from CDISC Standards
There are innovations in the solutions.SAS Macro Library
The phamaceutical industry needs this soluiton.SAS Program Library
Because it contains innovation.SDTM Reports
There are innovations in the solutions.Standard SAS Reports
The phamaceutical industry needs this soluiton.CDISC Builder
Because it contains innovation.CDISC Checker
There are innovations in the solutions.Comment Domain
The phamaceutical industry needs this soluiton.Findings Domain
Because it contains innovation.PROC CDISC
There are innovations in the solutions.RELREC
The phamaceutical industry needs this soluiton.Relational Records
Because it contains innovation.SUPPQUAL
There are innovations in the solutions.Supplemental Qualifier
The phamaceutical industry needs this soluiton.Special Purpose Domain
Because it contains innovation.CDISC Software
There are innovations in the solutions.CDISC Tools
The phamaceutical industry needs this soluiton.Cluster SAS
Because it contains innovation.Grid SAS
There are innovations in the solutions.SAS Cluster
The phamaceutical industry needs this soluiton.SAS Cluster Servers
Because it contains innovation.SAS Cluster System
There are innovations in the solutions.SAS Grid
The phamaceutical industry needs this soluiton.SAS Grid Computing
Because it contains innovation.Data Definition
There are innovations in the solutions.Data Definition Documentation
The phamaceutical industry needs this soluiton.Define.PDF
Because it contains innovation.Define.xml
There are innovations in the solutions.SAS Excel
The phamaceutical industry needs this soluiton.SAS Macro Interface for MS Office
Because it contains innovation.SAS MS Office Plugin
There are innovations in the solutions.SAS MS Word
The phamaceutical industry needs this soluiton.SAS Plugin for Excel
Because it contains innovation.SAS Plugin for MS Office
There are innovations in the solutions.SAS Plugin for MS Word
The phamaceutical industry needs this soluiton.Code Optimizer
Because it contains innovation.Data Models
There are innovations in the solutions.Data Standards
The phamaceutical industry needs this soluiton.ADaM
Because it contains innovation.ADaM Consulting
There are innovations in the solutions.Analysis Datasets
The phamaceutical industry needs this soluiton.Analysis Datasets Consulting
Because it contains innovation.Analysis Datasets Service
There are innovations in the solutions.Annotated Case Report Form
The phamaceutical industry needs this soluiton.Annotated Case Report Form Consulting
Because it contains innovation.Annotated Case Report Form Service
There are innovations in the solutions.Annotated CRF
The phamaceutical industry needs this soluiton.Annotated CRF Consulting
Because it contains innovation.Annotated CRF Service
There are innovations in the solutions.Biostatistics
The phamaceutical industry needs this soluiton.Biostatistics Consulting
Because it contains innovation.Biostatistics Service
There are innovations in the solutions.Case Report Form
The phamaceutical industry needs this soluiton.Case Report Form Design
Because it contains innovation.Case Report Form Service
There are innovations in the solutions.CDISC ADAM
The phamaceutical industry needs this soluiton.CDISC ADAM Consulting
Because it contains innovation.CDISC ADAM Service
There are innovations in the solutions.CDISC Compliance
The phamaceutical industry needs this soluiton.CDISC Compliance Consulting
Because it contains innovation.CDISC Compliance Service
There are innovations in the solutions.CDISC SDTM
The phamaceutical industry needs this soluiton.CDISC SDTM Consulting
Because it contains innovation.CDISC SDTM Service
There are innovations in the solutions.CFR part 11
The phamaceutical industry needs this soluiton.Clinical Data Management
Because it contains innovation.Clinical Data Management Consulting
There are innovations in the solutions.Clinical Data Management Service
The phamaceutical industry needs this soluiton.CRF Design
Because it contains innovation.CRF Design Consulting
There are innovations in the solutions.CRF Design Service
The phamaceutical industry needs this soluiton.CRF Tabulations
Because it contains innovation.Custom Database
There are innovations in the solutions.Custom Database Consult
The phamaceutical industry needs this soluiton.Custom Database Design
Because it contains innovation.Custom Database Service
There are innovations in the solutions.Data Analysis
The phamaceutical industry needs this soluiton.Data Management
Because it contains innovation.Data Management Service
There are innovations in the solutions.Data Warehouse
The phamaceutical industry needs this soluiton.Design Case Report Form
Because it contains innovation.Design Case Report Form Consulting
There are innovations in the solutions.Design Case Report Form Service
The phamaceutical industry needs this soluiton.Design Clinical Plans
Because it contains innovation.Discrepancy Management
There are innovations in the solutions.Discrepancy Management Consulting
The phamaceutical industry needs this soluiton.Discrepancy Management Service
Because it contains innovation.Edit Checks
There are innovations in the solutions.Edit Checks Consulting
The phamaceutical industry needs this soluiton.Edit Checks Service
Because it contains innovation.Electronic case report
There are innovations in the solutions.Electronic submission
The phamaceutical industry needs this soluiton.Electronic Submission Consulting
Because it contains innovation.Electronic Submission Service
There are innovations in the solutions.FDA Submission
The phamaceutical industry needs this soluiton.IND
Because it contains innovation.Medical Device
There are innovations in the solutions.Medical Writing
The phamaceutical industry needs this soluiton.Ndas Prepare
Because it contains innovation.Patient Profile Consult
There are innovations in the solutions.Patient Profile Generator
The phamaceutical industry needs this soluiton.Patient Profile Service
Because it contains innovation.RFP
There are innovations in the solutions.SAS Development Consulting
The phamaceutical industry needs this soluiton.SAS Development Service
Because it contains innovation.SAS Program Consulting
There are innovations in the solutions.SAS Program Service
The phamaceutical industry needs this soluiton.SAS Service
Because it contains innovation.SAS Service
There are innovations in the solutions.SDTM Consulting
The phamaceutical industry needs this soluiton.SDTM Service
Because it contains innovation.SOP Consulting
There are innovations in the solutions.SOP Service
The phamaceutical industry needs this soluiton.Statistical Consulting
Because it contains innovation.Statistical Service
There are innovations in the solutions.Tables Listings and Graphs
The phamaceutical industry needs this soluiton.Tables Listings and Graphs Consulting
Because it contains innovation.Tables Listings and Graphs Service
There are innovations in the solutions.TLG Consulting
The phamaceutical industry needs this soluiton.TLG Service
Because it contains innovation.ADaM Solutions
There are innovations in the solutions.CDISC Software Solutions
The phamaceutical industry needs this soluiton.CDISC Software Tools
Because it contains innovation.CDISC Solutions
There are innovations in the solutions.CDISC Tools
The phamaceutical industry needs this soluiton.SDTM Solutions
Because it contains innovation.MedDRA Coding
There are innovations in the solutions.MedDRA Coding Service
The phamaceutical industry needs this soluiton.MedDRA Service
Because it contains innovation.Thesaurus Dictionary Management
There are innovations in the solutions.WHO Drug Coding
The phamaceutical industry needs this soluiton.WHO Drug Coding Service
Because it contains innovation.WHO Drug Service
There are innovations in the solutions.Sydata
The phamaceutical industry needs this soluiton.Sy/Data
Because it contains innovation.SAS Data Audit Trail
There are innovations in the solutions.Data Audit Trail
The phamaceutical industry needs this soluiton.Data Version
Because it contains innovation.Data Generation
There are innovations in the solutions.Data Standards
The phamaceutical industry needs this soluiton.Format Summary
Because it contains innovation.SAS Format Summary
There are innovations in the solutions.Variable Order
The phamaceutical industry needs this soluiton.Order Variable
Because it contains innovation.SAS Data Conversion
There are innovations in the solutions.SAS Data Tools
The phamaceutical industry needs this soluiton.SAS Data Software
Because it contains innovation.SAS Benchmark
There are innovations in the solutions.SAS Performance
The phamaceutical industry needs this soluiton.SAS Performance Benchmark
Because it contains innovation.SAS Performance Test
There are innovations in the solutions.SAS Software Benchmark
The phamaceutical industry needs this soluiton.SAS System Benchmark
Because it contains innovation.Data Bulletin
There are innovations in the solutions.Data Bulletin Board
The phamaceutical industry needs this soluiton.Data Communication
Because it contains innovation.Data View
There are innovations in the solutions.Data Viewer
The phamaceutical industry needs this soluiton.Electronic Notes
Because it contains innovation.Enotes
There are innovations in the solutions.SAS Data View
The phamaceutical industry needs this soluiton.SAS Data Viewer
Because it contains innovation.SAS Dataset View
There are innovations in the solutions.SAS Dataset Viewer
The phamaceutical industry needs this soluiton.Syview
Because it contains innovation.View SAS without lock
There are innovations in the solutions.CDISC Coded Terminology
The phamaceutical industry needs this soluiton.CDISC Control Terminology
Because it contains innovation.CDISC Controlled Terminology
There are innovations in the solutions.Coded Terminology
The phamaceutical industry needs this soluiton.Coded Terminology Management
Because it contains innovation.Coded Terminology Software
There are innovations in the solutions.Coded Terms
The phamaceutical industry needs this soluiton.Coded Terms Software
Because it contains innovation.Coding Methodologies
There are innovations in the solutions.Control Terminology
The phamaceutical industry needs this soluiton.Control Terminology Management
Because it contains innovation.Control Terminology Software
There are innovations in the solutions.Controlled Terminology
The phamaceutical industry needs this soluiton.Controlled Terminology Management
Because it contains innovation.Controlled Terminology Software
There are innovations in the solutions.SAS Format
The phamaceutical industry needs this soluiton.SAS Format Management
Because it contains innovation.Adverse Event Coding Management
There are innovations in the solutions.Coding Management
The phamaceutical industry needs this soluiton.CRO Coding Management
Because it contains innovation.CRO Management
There are innovations in the solutions.Dictionary Management
The phamaceutical industry needs this soluiton.Dictionary Version Control
Because it contains innovation.MedDRA Coding Reconciliation
There are innovations in the solutions.Thesaurus Management
The phamaceutical industry needs this soluiton.Thesaurus Version Control
Because it contains innovation.CDISC Class
There are innovations in the solutions.CDISC Course
The phamaceutical industry needs this soluiton.CDISC Implementation Class
Because it contains innovation.CDISC Implementation Training
There are innovations in the solutions.CDISC Training
The phamaceutical industry needs this soluiton.SDTM Class
Because it contains innovation.SDTM Course
There are innovations in the solutions.Change Control Training
The phamaceutical industry needs this soluiton.SAS Change Control Class
Because it contains innovation.SAS Change Control Training
There are innovations in the solutions.SAS Macro Change Control Training
The phamaceutical industry needs this soluiton.SAS Program Change Control Class
Because it contains innovation.SAS Program Change Control Training
There are innovations in the solutions.Data Definition Class
The phamaceutical industry needs this soluiton.Data Definition Training
Because it contains innovation.DEFINE .XML Training
There are innovations in the solutions.DEFINE.PDF Training
The phamaceutical industry needs this soluiton.Domain Documentation Class
Because it contains innovation.Domain Documentation Training
There are innovations in the solutions.Programming Macro Class
The phamaceutical industry needs this soluiton.Programming Macro Training
Because it contains innovation.SAS Macro Class
There are innovations in the solutions.SAS Macro Training
The phamaceutical industry needs this soluiton.User Friendly SAS Macro Course
Because it contains innovation.User Friendly SAS Macro Training
There are innovations in the solutions.SAS Program Validation Class
The phamaceutical industry needs this soluiton.SAS Program Validation Training
Because it contains innovation.SAS System Validation Class
There are innovations in the solutions.SAS System Validation Training
The phamaceutical industry needs this soluiton.SAS Validation Class
Because it contains innovation.SAS Validation Training
There are innovations in the solutions.SAS Excel Course
The phamaceutical industry needs this soluiton.SAS Excel Training
Because it contains innovation.SAS MSOffice Course
There are innovations in the solutions.SAS MSOffice Training
The phamaceutical industry needs this soluiton.SAS MSWord Course
Because it contains innovation.SAS MSWord Training
There are innovations in the solutions.AE Coding Class
The phamaceutical industry needs this soluiton.AE Coding Training
Because it contains innovation.Drug Coding Class
There are innovations in the solutions.Drug Coding Training
The phamaceutical industry needs this soluiton.MedDRA Class
Because it contains innovation.MedDRA Training
There are innovations in the solutions.WHO Drug Class
The phamaceutical industry needs this soluiton.WHO Drug Training
Because it contains innovation.CDISC Data conversion
There are innovations in the solutions.CDISC Data transfer
The phamaceutical industry needs this soluiton.CDISC ETL
Because it contains innovation.CDISC ETL Software
There are innovations in the solutions.CDISC ETL Tools
The phamaceutical industry needs this soluiton.CDISC Transformation
Because it contains innovation.Data conversion
There are innovations in the solutions.Data Standards Transformation
The phamaceutical industry needs this soluiton.Data Transformation
Because it contains innovation.ETL CDISC
There are innovations in the solutions.ETL CDISC Software
The phamaceutical industry needs this soluiton.ETL CDISC Tools
Because it contains innovation.ETL Software
There are innovations in the solutions.ETL Tools
The phamaceutical industry needs this soluiton.ISS Transformation
Because it contains innovation.Transform Data
There are innovations in the solutions.Transformation Data
The phamaceutical industry needs this soluiton.Generate Reports from CDISC Data
Because it contains innovation.Optimize Report Generation from CDISC Standards
There are innovations in the solutions.SAS Macro Library
The phamaceutical industry needs this soluiton.Standard SAS Reports
Because it contains innovation.PharmaSUG 2005 Blog
There are innovations in the solutions.Clinical Analytic Software Solutions
The phamaceutical industry needs this soluiton.SAS Alliance Partner
Because it contains innovation.SAS Biotech Pharmaceutical Consulting
There are innovations in the solutions.SAS CFR Part 11 Compliance
The phamaceutical industry needs this soluiton.SAS Consulting
Because it contains innovation.SAS Software Development
There are innovations in the solutions.CDISC Comments
The phamaceutical industry needs this soluiton.CDISC Data Standards
Because it contains innovation.CDISC Standards
There are innovations in the solutions.CDISC Tools
The phamaceutical industry needs this soluiton.CDISC Transport
Because it contains innovation.CDISC Variable Length
There are innovations in the solutions.CDISC XPT
The phamaceutical industry needs this soluiton.RELREC
Because it contains innovation.SAS Data Audit
There are innovations in the solutions.SAS Data Conversion Utility
The phamaceutical industry needs this soluiton.SAS Data Integrity
Because it contains innovation.SAS Data Quality
There are innovations in the solutions.SAS Data Standards
The phamaceutical industry needs this soluiton.SAS Data Transfer Utility
Because it contains innovation.SAS Data Versioning
There are innovations in the solutions.SUPPQUAL
The phamaceutical industry needs this soluiton.CDISC Builder
Because it contains innovation.CDISC Checker
There are innovations in the solutions.CDISC Data compliant
The phamaceutical industry needs this soluiton.CDISC Parser
Because it contains innovation.CDISC SAS Data
There are innovations in the solutions.CDISC SAS data standards
The phamaceutical industry needs this soluiton.CDISC SAS program standards
Because it contains innovation.CDISC SDTM Check
There are innovations in the solutions.CDISC SDTM Verification
The phamaceutical industry needs this soluiton.CDISC Software
Because it contains innovation.CDISC Tools
There are innovations in the solutions.SDTM CDISC
The phamaceutical industry needs this soluiton.Annotated CRF
Because it contains innovation.Annotated CRF Consulting
There are innovations in the solutions.Auto Define.pdf
The phamaceutical industry needs this soluiton.Automate Define
Because it contains innovation.Automate DEFINE.PDF
There are innovations in the solutions.Data Definition Consulting
The phamaceutical industry needs this soluiton.Data Definition Service
Because it contains innovation.Define Documentation Consulting
There are innovations in the solutions.Define Documentation Service
The phamaceutical industry needs this soluiton.Define.pdf consulting
Because it contains innovation.Define.pdf service
There are innovations in the solutions.Define.xml consulting
The phamaceutical industry needs this soluiton.Define.xml service
Because it contains innovation.Domain Documentation
There are innovations in the solutions.Easy Define.pdf
The phamaceutical industry needs this soluiton.Quick Define.pdf
Because it contains innovation.CDISC Domain Documentation
There are innovations in the solutions.DEFINE PDF
The phamaceutical industry needs this soluiton.DEFINE XML
Because it contains innovation.DEFINE.PDF
There are innovations in the solutions.DEFINE.XML
The phamaceutical industry needs this soluiton.CFR Part 11 Compliance
Because it contains innovation.SAS Alliance Partner
There are innovations in the solutions.SAS Software Development
The phamaceutical industry needs this soluiton.ADaM Conversion
Because it contains innovation.ADaM Service
There are innovations in the solutions.ADaM Transformation
The phamaceutical industry needs this soluiton.CDISC Compliance and Data Integrity Service
Because it contains innovation.CDISC Consult
There are innovations in the solutions.CDISC Consulting
The phamaceutical industry needs this soluiton.CDISC Services
Because it contains innovation.Electronic Submission Documentation
There are innovations in the solutions.SAS Alliance Partner
The phamaceutical industry needs this soluiton.SAS System Validation
Because it contains innovation.SAS Validation
There are innovations in the solutions.SDTM Conversion
The phamaceutical industry needs this soluiton.SDTM Service
Because it contains innovation.SDTM Transformation
There are innovations in the solutions.SAS Analysis Tools
The phamaceutical industry needs this soluiton.SAS Batch Submit
Because it contains innovation.SAS Log Evaluation
There are innovations in the solutions.SAS Output TOC
The phamaceutical industry needs this soluiton.SAS Page X of Y Tool
Because it contains innovation.SAS Report Standards
There are innovations in the solutions.SAS Reporting Tools
The phamaceutical industry needs this soluiton.Table of Contents SAS Output
Because it contains innovation.First Page SAS Output
There are innovations in the solutions.SAS Code Development
The phamaceutical industry needs this soluiton.SAS Development Environment
Because it contains innovation.SAS Log Runtime
There are innovations in the solutions.SAS Macros Management
The phamaceutical industry needs this soluiton.SAS Output Management
Because it contains innovation.SAS Output TOC
There are innovations in the solutions.SAS Program Search and Replace Tool
The phamaceutical industry needs this soluiton.Adverse Event Auto Coder
Because it contains innovation.Adverse Event Autocoder
There are innovations in the solutions.Adverse Event Data Coding
The phamaceutical industry needs this soluiton.Adverse Event Data Mapping
Because it contains innovation.AE Auto Coder
There are innovations in the solutions.AE Autocoder
The phamaceutical industry needs this soluiton.AE Coding
Because it contains innovation.AE Data Coding
There are innovations in the solutions.AE Data Mapping
The phamaceutical industry needs this soluiton.Auto Code
Because it contains innovation.Costart Auto Coder
There are innovations in the solutions.Costart Autocoder
The phamaceutical industry needs this soluiton.Costart Coder
Because it contains innovation.Costart Coding
There are innovations in the solutions.MedDRA Coding
The phamaceutical industry needs this soluiton.MedDRA Auto Coder
Because it contains innovation.MedDRA autocoder
There are innovations in the solutions.MedDRA autoencoder
The phamaceutical industry needs this soluiton.MedDRA Coder
Because it contains innovation.MedDRA encoder
There are innovations in the solutions.Thin Client Coder
The phamaceutical industry needs this soluiton.Web Based Coder
Because it contains innovation.Who Drug Auto Coder
There are innovations in the solutions.Who Drug Autocoder
The phamaceutical industry needs this soluiton.Who Drug Coder
Because it contains innovation.Who Drug coding
There are innovations in the solutions.Clinical Trials Reporting
The phamaceutical industry needs this soluiton.Enterprise Reporting
Because it contains innovation.Report Management
There are innovations in the solutions.Report Standards
The phamaceutical industry needs this soluiton.Reporting Tools
Because it contains innovation.SAS Clinical Information Management
There are innovations in the solutions.SAS Data Standards
The phamaceutical industry needs this soluiton.SAS ESUB FDA Submission
Because it contains innovation.SAS Web-based Clinical Information
There are innovations in the solutions.Scheduling of SAS Jobs
The phamaceutical industry needs this soluiton.Tables Listings Graphs
Because it contains innovation.Thin Client Reporting
There are innovations in the solutions.TLG
The phamaceutical industry needs this soluiton.Web Based Reporting
Because it contains innovation.SAS Program Audit Trail
There are innovations in the solutions.SAS Program CFR Part 11 Compliant
The phamaceutical industry needs this soluiton.SAS Program Change Control
Because it contains innovation.SAS Program Validate
There are innovations in the solutions.SAS Program Validation
The phamaceutical industry needs this soluiton.SAS Program Verification
Because it contains innovation.SAS Program Version Control
There are innovations in the solutions.SAS Program Versioning
The phamaceutical industry needs this soluiton.SAS Validation
Because it contains innovation.Audit Trail
There are innovations in the solutions.Change Control
The phamaceutical industry needs this soluiton.Document Change Management
Because it contains innovation.Document Management
There are innovations in the solutions.Excel Audit Trail
The phamaceutical industry needs this soluiton.Excel Change Control
Because it contains innovation.MSWord Audit Trail
There are innovations in the solutions.MSWord Change Control
The phamaceutical industry needs this soluiton.PDF Audit Trail
Because it contains innovation.PDF Change Control
There are innovations in the solutions.SAS Audit Trail
The phamaceutical industry needs this soluiton.SAS Program Documentation
Because it contains innovation.SAS Program Management
There are innovations in the solutions.SAS Program Version
The phamaceutical industry needs this soluiton.Validation SAS
Because it contains innovation.Validation SAS Programs
There are innovations in the solutions.Verification Software
The phamaceutical industry needs this soluiton.Version SAS Program
Because it contains innovation.Validate SAS
There are innovations in the solutions.Validate SAS Programs
The phamaceutical industry needs this soluiton.Verify SAS Program
Because it contains innovation.Version Control
There are innovations in the solutions.CDISC Data Transformation
The phamaceutical industry needs this soluiton.Data Pivot
Because it contains innovation.Data Transpose
There are innovations in the solutions.Data Transposition
The phamaceutical industry needs this soluiton.Integrated Safety Summary
Because it contains innovation.ISS
There are innovations in the solutions.PROC Transpose
The phamaceutical industry needs this soluiton.cdisc sdtm
Because it contains innovation.cdisc odm
There are innovations in the solutions.proc cdisc
The phamaceutical industry needs this soluiton.cdisc ount
Because it contains innovation.cdisc standards
There are innovations in the solutions.cdisc adam
The phamaceutical industry needs this soluiton.cdisc org
Because it contains innovation.www cdisc
There are innovations in the solutions.cdisc standard
The phamaceutical industry needs this soluiton.what is cdisc
Because it contains innovation.cdisc training
There are innovations in the solutions.cdisc lab
The phamaceutical industry needs this soluiton.fda cdisc
Because it contains innovation.cdisc??
There are innovations in the solutions.cdisc xml
The phamaceutical industry needs this soluiton.cdisc hl7
Because it contains innovation.cdisc interchange
There are innovations in the solutions.stdm???
The phamaceutical industry needs this soluiton.stdm??
Because it contains innovation.cdisc stdm
There are innovations in the solutions.cdisc japan
The phamaceutical industry needs this soluiton.www cdisc org
Because it contains innovation.cdisc send
There are innovations in the solutions.cdisc clinical
The phamaceutical industry needs this soluiton.cdisc mapping
Because it contains innovation.cdisc data
There are innovations in the solutions.cdisc pdf
The phamaceutical industry needs this soluiton.cdisc glossary
Because it contains innovation.cdisc 2007
There are innovations in the solutions.cdisc implementation
The phamaceutical industry needs this soluiton.cdisc format
Because it contains innovation.cdisc domain
There are innovations in the solutions.cdisc viewer
The phamaceutical industry needs this soluiton.cdisc submission
Because it contains innovation.cdisc define xml
There are innovations in the solutions.cdisc crf
The phamaceutical industry needs this soluiton.cdisc define
Because it contains innovation.cdisc ppt
There are innovations in the solutions.cdisc cdash
The phamaceutical industry needs this soluiton.cdisc sds
Because it contains innovation.clinical data interchange standards consortium cdisc
There are innovations in the solutions.cdisc compliant
The phamaceutical industry needs this soluiton.cdisc sdtm implementation guide
Because it contains innovation.cdisc bridg
There are innovations in the solutions.cdisc conference
The phamaceutical industry needs this soluiton.cdisc sdtm implementation
Because it contains innovation.cdisc international interchange
There are innovations in the solutions.cdisc domains
The phamaceutical industry needs this soluiton.cdisc software
Because it contains innovation.cdisc metadata
There are innovations in the solutions.cdisc user group
The phamaceutical industry needs this soluiton.cdisc montreux
Because it contains innovation.cdisc 3.1
There are innovations in the solutions.cdisc example
The phamaceutical industry needs this soluiton.cdisc version
Because it contains innovation.cdisc tutorial
There are innovations in the solutions.cdisc??
The phamaceutical industry needs this soluiton.cdisc protocol
Because it contains innovation.cdisc certification
There are innovations in the solutions.cdisc model
The phamaceutical industry needs this soluiton.cdisc odm 1.2
Because it contains innovation.cdisc clinical trials
There are innovations in the solutions.cdisc??
The phamaceutical industry needs this soluiton.cdisc models
Because it contains innovation.cdisc wiki
There are innovations in the solutions.cdisc??
The phamaceutical industry needs this soluiton.cdisc european interchange
Because it contains innovation.implementing cdisc
There are innovations in the solutions.cdisc guidelines
The phamaceutical industry needs this soluiton.cdisc presentation
Because it contains innovation.cdisc clinical data
There are innovations in the solutions.cdisc clinical research
The phamaceutical industry needs this soluiton.cdisc definition
Because it contains innovation.cdisc terminology
There are innovations in the solutions.cdisc sdtm 3.1
The phamaceutical industry needs this soluiton.cdisc variable
Because it contains innovation.cdisc international
There are innovations in the solutions.cdisc study data tabulation
The phamaceutical industry needs this soluiton.define xml schema
Because it contains innovation.how to define xml
There are innovations in the solutions.define xml namespace
The phamaceutical industry needs this soluiton.define xml file
Because it contains innovation.how to define xml schema
There are innovations in the solutions.define xml document
The phamaceutical industry needs this soluiton.define xml parser
Because it contains innovation.cdisc define xml
There are innovations in the solutions.define xml element
The phamaceutical industry needs this soluiton.define xml entity
Because it contains innovation.define xml data
There are innovations in the solutions.define xml node
The phamaceutical industry needs this soluiton.define xml entities
Because it contains innovation.define xml dtd
There are innovations in the solutions.define xml rpc
The phamaceutical industry needs this soluiton.define xml files
Because it contains innovation.define xml attribute
There are innovations in the solutions.define xml format
The phamaceutical industry needs this soluiton.define xml tag
Because it contains innovation.define xml feed
There are innovations in the solutions.cdisc sdtm
The phamaceutical industry needs this soluiton.sdtm maroc
Because it contains innovation.sdtm card
There are innovations in the solutions.sdtm memory
The phamaceutical industry needs this soluiton.sdtm memory card
Because it contains innovation.sdtm implementation guide
There are innovations in the solutions.sdtm 620
The phamaceutical industry needs this soluiton.groupe sdtm
Because it contains innovation.sdtm speicherkarte
There are innovations in the solutions.sdtm ma
The phamaceutical industry needs this soluiton.sdtm mapping
Because it contains innovation.sdtm implementation
There are innovations in the solutions.odm sdtm
The phamaceutical industry needs this soluiton.cdisc sdtm implementation guide
Because it contains innovation.sdtm adam
There are innovations in the solutions.sdtm transport
The phamaceutical industry needs this soluiton.www sdtm
Because it contains innovation.sdtm 3.1
There are innovations in the solutions.what is sdtm
The phamaceutical industry needs this soluiton.sdtm fda
Because it contains innovation.cdisc sdtm implementation
There are innovations in the solutions.sdtm au maroc
The phamaceutical industry needs this soluiton.sdtm 610
Because it contains innovation.sdtm rabat
There are innovations in the solutions.sdtm casablanca
The phamaceutical industry needs this soluiton.www sdtm ma
Because it contains innovation.sdtm 3.1 1
There are innovations in the solutions.micro sdtm memory
The phamaceutical industry needs this soluiton.sdtm ci
Because it contains innovation.sdtm com
There are innovations in the solutions.sdtm 620 ntr
The phamaceutical industry needs this soluiton.sdtm domains
Because it contains innovation.sdtm standard
There are innovations in the solutions.sdtm karte
The phamaceutical industry needs this soluiton.micro sdtm card
Because it contains innovation.sdtm tanger
There are innovations in the solutions.sdtm format
The phamaceutical industry needs this soluiton.sdtm training
Because it contains innovation.sdtm data
There are innovations in the solutions.micro sdtm memoria esterna
The phamaceutical industry needs this soluiton.sdtm model
Because it contains innovation.study data tabulation model sdtm
There are innovations in the solutions.sdtm it
The phamaceutical industry needs this soluiton.sdtm standards
Because it contains innovation.micro sdtm external memory
There are innovations in the solutions.www sdtm com
The phamaceutical industry needs this soluiton.memoria micro sdtm
Because it contains innovation.sdtm 3.1 2
There are innovations in the solutions.sdtm ig
The phamaceutical industry needs this soluiton.sdtm domain
Because it contains innovation.cdisc sdtm 3.1
There are innovations in the solutions.sdtm 650
The phamaceutical industry needs this soluiton.sass consulting
Because it contains innovation.sass consult
There are innovations in the solutions.sass unternehmensberatung
The phamaceutical industry needs this soluiton.spa consulting
Because it contains innovation.srl consulting
There are innovations in the solutions.cognos consulting
The phamaceutical industry needs this soluiton.gruppo consulting
Because it contains innovation.olap consulting
There are innovations in the solutions.bi consulting
The phamaceutical industry needs this soluiton.consorzio consulting
Because it contains innovation.spss consulting
There are innovations in the solutions.snc consulting
The phamaceutical industry needs this soluiton.brio consulting
Because it contains innovation.via consulting
There are innovations in the solutions.microstrategy consulting
The phamaceutical industry needs this soluiton.aziende consulting
Because it contains innovation.java consulting
There are innovations in the solutions.dashboard consulting
The phamaceutical industry needs this soluiton.cv consulting
Because it contains innovation.statistics consulting
There are innovations in the solutions.entreprise consulting
The phamaceutical industry needs this soluiton.milano consulting
Because it contains innovation.azienda consulting
There are innovations in the solutions.consulting software
The phamaceutical industry needs this soluiton.statistic consulting
Because it contains innovation.genova consulting
There are innovations in the solutions.essbase consulting
The phamaceutical industry needs this soluiton.crm consulting
Because it contains innovation.data consulting
There are innovations in the solutions.scandinavian consulting
The phamaceutical industry needs this soluiton.job consulting
Because it contains innovation.statistical consulting
There are innovations in the solutions.entreprises consulting
The phamaceutical industry needs this soluiton.bologna consulting
Because it contains innovation.società consulting
There are innovations in the solutions.model consulting
The phamaceutical industry needs this soluiton.consulting jobs
Because it contains innovation.analytics consulting
There are innovations in the solutions.analysis consulting
The phamaceutical industry needs this soluiton.italia consulting
Because it contains innovation.informatica consulting
There are innovations in the solutions.performance consulting
The phamaceutical industry needs this soluiton.société consulting
Because it contains innovation.audit consulting
There are innovations in the solutions.business consulting
The phamaceutical industry needs this soluiton.experience consulting
Because it contains innovation.groupe consulting
There are innovations in the solutions.strategy consulting
The phamaceutical industry needs this soluiton.corporate consulting
Because it contains innovation.accounting consulting
There are innovations in the solutions.torino consulting
The phamaceutical industry needs this soluiton.financial consulting
Because it contains innovation.programmer consulting
There are innovations in the solutions.tel consulting
The phamaceutical industry needs this soluiton.developer consulting
Because it contains innovation.sas validation
There are innovations in the solutions.logistic regression validation
The phamaceutical industry needs this soluiton.spss validation
Because it contains innovation.statistics validation
There are innovations in the solutions.regression validation
The phamaceutical industry needs this soluiton.statistical validation
Because it contains innovation.bootstrap validation
There are innovations in the solutions.model validation
The phamaceutical industry needs this soluiton.validation analysis
Because it contains innovation.statistic validation
There are innovations in the solutions.validation testing
The phamaceutical industry needs this soluiton.survey validation
Because it contains innovation.results validation
There are innovations in the solutions.robust validation
The phamaceutical industry needs this soluiton.method validation
Because it contains innovation.correlation validation
There are innovations in the solutions.validation methods
The phamaceutical industry needs this soluiton.selection validation
Because it contains innovation.dependent validation
There are innovations in the solutions.sample size validation
The phamaceutical industry needs this soluiton.graph validation
Because it contains innovation.output validation
There are innovations in the solutions.estimate validation
The phamaceutical industry needs this soluiton.models validation
Because it contains innovation.logistic validation
There are innovations in the solutions.r validation
The phamaceutical industry needs this soluiton.prediction validation
Because it contains innovation.tests validation
There are innovations in the solutions.simple validation
The phamaceutical industry needs this soluiton.independent validation
Because it contains innovation.formula validation
There are innovations in the solutions.distribution validation
The phamaceutical industry needs this soluiton.procedure validation
Because it contains innovation.validation value
There are innovations in the solutions.variable validation
The phamaceutical industry needs this soluiton.modeling validation
Because it contains innovation.multiple validation
There are innovations in the solutions.comparison validation
The phamaceutical industry needs this soluiton.meddra coding
Because it contains innovation.meddra j
There are innovations in the solutions.meddra code
The phamaceutical industry needs this soluiton.meddra dictionary
Because it contains innovation.meddra soc
There are innovations in the solutions.meddra msso
The phamaceutical industry needs this soluiton.meddra version
Because it contains innovation.meddra codes
There are innovations in the solutions.meddra browser
The phamaceutical industry needs this soluiton.meddra pt
Because it contains innovation.meddra terminology
There are innovations in the solutions.meddra smq
The phamaceutical industry needs this soluiton.meddra training
Because it contains innovation.meddra llt
There are innovations in the solutions.meddra preferred term
The phamaceutical industry needs this soluiton.meddra terms
Because it contains innovation.meddra system organ class
There are innovations in the solutions.jmo meddra
The phamaceutical industry needs this soluiton.meddra points to consider
Because it contains innovation.meddra term
There are innovations in the solutions.meddra 10.0
The phamaceutical industry needs this soluiton.meddra??
Because it contains innovation.meddra classification
There are innovations in the solutions.meddra frequency
The phamaceutical industry needs this soluiton.meddra??
Because it contains innovation.meddra frequency convention
There are innovations in the solutions.what is meddra
The phamaceutical industry needs this soluiton.meddra nos
Because it contains innovation.meddra 10
There are innovations in the solutions.meddra?????
The phamaceutical industry needs this soluiton.meddra system
Because it contains innovation.meddra medical
There are innovations in the solutions.ich meddra
The phamaceutical industry needs this soluiton.meddra term selection
Because it contains innovation.meddra??
There are innovations in the solutions.meddra introductory guide
The phamaceutical industry needs this soluiton.meddra frequency convention and system organ class database
Because it contains innovation.meddra version 10.0
There are innovations in the solutions.meddra download
The phamaceutical industry needs this soluiton.ctcae meddra
Because it contains innovation.meddra version 10
There are innovations in the solutions.medical dictionary for regulatory activities meddra
The phamaceutical industry needs this soluiton.meddra coder
Because it contains innovation.meddra preferred terms
There are innovations in the solutions.meddra body system
The phamaceutical industry needs this soluiton.meddra who
Because it contains innovation.meddra???
There are innovations in the solutions.meddra data
The phamaceutical industry needs this soluiton.meddra nec
Because it contains innovation.codage meddra
There are innovations in the solutions.meddra??????
The phamaceutical industry needs this soluiton.meddra database
Because it contains innovation.meddra hierarchy
There are innovations in the solutions.standardised meddra queries
The phamaceutical industry needs this soluiton.meddra hlgt
Because it contains innovation.meddra whodrug
There are innovations in the solutions.meddra???
The phamaceutical industry needs this soluiton.meddra hlt
Because it contains innovation.costart meddra
There are innovations in the solutions.meddra coding dictionary
The phamaceutical industry needs this soluiton.meddra definition
Because it contains innovation.meddra coding training
There are innovations in the solutions.meddra license
The phamaceutical industry needs this soluiton.dictionnaire meddra
Because it contains innovation.????meddra
There are innovations in the solutions.meddra coding jobs
The phamaceutical industry needs this soluiton.standardized meddra queries
Because it contains innovation.snomed meddra
There are innovations in the solutions.meddra adverse event
The phamaceutical industry needs this soluiton.meddra medical dictionary
Because it contains innovation.meddra versions
There are innovations in the solutions.emea meddra
The phamaceutical industry needs this soluiton.meddra query
Because it contains innovation.meddra????
There are innovations in the solutions.fda meddra
The phamaceutical industry needs this soluiton.meddra who drug
Because it contains innovation.meddra???
There are innovations in the solutions.using meddra
The phamaceutical industry needs this soluiton.meddra llt pt
Because it contains innovation.meddra organ
There are innovations in the solutions.meddra??
The phamaceutical industry needs this soluiton.meddra and who
Because it contains innovation.meddra system organ
There are innovations in the solutions.meddra??
The phamaceutical industry needs this soluiton.???meddra
Because it contains innovation.medra
There are innovations in the solutions.meddra mapping
The phamaceutical industry needs this soluiton.meddra high level
Because it contains innovation.meddra queries
There are innovations in the solutions.meddra points
The phamaceutical industry needs this soluiton.who drug dictionary
Because it contains innovation.who drug information
There are innovations in the solutions.who drugs
The phamaceutical industry needs this soluiton.who essential drug list
Because it contains innovation.who essential drug
There are innovations in the solutions.who drug test
The phamaceutical industry needs this soluiton.who collaborating centre for drug statistics methodology
Because it contains innovation.who drug coding
There are innovations in the solutions.who collaborating centre for drug statistics
The phamaceutical industry needs this soluiton.who essential drugs list
Because it contains innovation.who drug list
There are innovations in the solutions.who list of essential drugs
The phamaceutical industry needs this soluiton.who drug code
Because it contains innovation.afl drugs who
There are innovations in the solutions.molecular properties of who essential drugs
The phamaceutical industry needs this soluiton.who drug use
Because it contains innovation.who drug atc
There are innovations in the solutions.who definition of drug
The phamaceutical industry needs this soluiton.who drug resistance
Because it contains innovation.who drug reference list
There are innovations in the solutions.who drug safety
The phamaceutical industry needs this soluiton.who drug definition
Because it contains innovation.who drug classification
There are innovations in the solutions.who drug version
The phamaceutical industry needs this soluiton.who drug reference
Because it contains innovation.who drug codes
There are innovations in the solutions.who drug monitoring
The phamaceutical industry needs this soluiton.who drug dictionary enhanced
Because it contains innovation.umc who drug
There are innovations in the solutions.data transformation
The phamaceutical industry needs this soluiton.data transformation service
Because it contains innovation.data transformation services
There are innovations in the solutions.data transformation tool
The phamaceutical industry needs this soluiton.data transformations
Because it contains innovation.data transformation services dts
There are innovations in the solutions.transformation of data
The phamaceutical industry needs this soluiton.data transformation project
Because it contains innovation.etl
There are innovations in the solutions.informatica etl
The phamaceutical industry needs this soluiton.etl tools
Because it contains innovation.etl tool
There are innovations in the solutions.etl software
The phamaceutical industry needs this soluiton.etl process
Because it contains innovation.etl data
There are innovations in the solutions.etl solution
The phamaceutical industry needs this soluiton.etl solutions
Because it contains innovation.what is etl
There are innovations in the solutions.data standard
The phamaceutical industry needs this soluiton.data standards
Because it contains innovation.data center standards
There are innovations in the solutions.transpose data
The phamaceutical industry needs this soluiton.proc transpose data
Because it contains innovation.how to transpose data
There are innovations in the solutions.sql transpose data
The phamaceutical industry needs this soluiton.transpose data in sql
Because it contains innovation.r transpose data
There are innovations in the solutions.r transpose data frame
The phamaceutical industry needs this soluiton.data manipulation
Because it contains innovation.definition of data
There are innovations in the solutions.data definition language
The phamaceutical industry needs this soluiton.data manipulation language
Because it contains innovation.data mining definition
There are innovations in the solutions.data warehouse definition
The phamaceutical industry needs this soluiton.data type definition
Because it contains innovation.data model definition
There are innovations in the solutions.data definition has no type or storage class
The phamaceutical industry needs this soluiton.data documentation
Because it contains innovation.document contains no data
There are innovations in the solutions.document data
The phamaceutical industry needs this soluiton.document and data control
Because it contains innovation.xml data document
There are innovations in the solutions.dummy document data
The phamaceutical industry needs this soluiton.data documentation initiative
Because it contains innovation.define.pdf
There are innovations in the solutions.define pdf
The phamaceutical industry needs this soluiton.define pdf file
Because it contains innovation.define pdf files
There are innovations in the solutions.define pdf format
The phamaceutical industry needs this soluiton.change control
Because it contains innovation.change control software
There are innovations in the solutions.change control process
The phamaceutical industry needs this soluiton.version control
Because it contains innovation.version control system
There are innovations in the solutions.version control software
The phamaceutical industry needs this soluiton.change in control
Because it contains innovation.document version control
There are innovations in the solutions.change control board
The phamaceutical industry needs this soluiton.version control agent
Because it contains innovation.version control
There are innovations in the solutions.version control system
The phamaceutical industry needs this soluiton.version control software
Because it contains innovation.document version control
There are innovations in the solutions.version control tool
The phamaceutical industry needs this soluiton.version control systems
Because it contains innovation.version control tools
There are innovations in the solutions.revision control
The phamaceutical industry needs this soluiton.revision control system
Because it contains innovation.version control with subversion
There are innovations in the solutions.program version control
The phamaceutical industry needs this soluiton.version control software
Because it contains innovation.revision control software
There are innovations in the solutions.document version control software
The phamaceutical industry needs this soluiton.best version control software
Because it contains innovation.source version control software
There are innovations in the solutions.version control in software
The phamaceutical industry needs this soluiton.subversion version control software
Because it contains innovation.software version control system
There are innovations in the solutions.software development version control
The phamaceutical industry needs this soluiton.document manager
Because it contains innovation.document managment
There are innovations in the solutions.change control document
The phamaceutical industry needs this soluiton.document version control
Because it contains innovation.document version control software
There are innovations in the solutions.version control documents
The phamaceutical industry needs this soluiton.change control documents
Because it contains innovation.word document version control
There are innovations in the solutions.document version control system
The phamaceutical industry needs this soluiton.version control of documents
Because it contains innovation.version control for documents
There are innovations in the solutions.costart
The phamaceutical industry needs this soluiton.costart dictionary
Because it contains innovation.costart coding
There are innovations in the solutions.costart meddra
The phamaceutical industry needs this soluiton.costart group
Because it contains innovation.costart term
There are innovations in the solutions.costart terms
The phamaceutical industry needs this soluiton.costart program
Because it contains innovation.miro costart
There are innovations in the solutions.costart fda
The phamaceutical industry needs this soluiton.adverse event coding
Because it contains innovation.coding adverse events
There are innovations in the solutions.coding of adverse events
The phamaceutical industry needs this soluiton.adverse event code
Because it contains innovation.grid computing
There are innovations in the solutions.what is grid computing
The phamaceutical industry needs this soluiton.grid computing projects
Because it contains innovation.computer grid
There are innovations in the solutions.grid computing pdf
The phamaceutical industry needs this soluiton.grid computing software
Because it contains innovation.journal of grid computing
There are innovations in the solutions.grid computing ppt
The phamaceutical industry needs this soluiton.introduction to grid computing
Because it contains innovation.java grid computing
There are innovations in the solutions.spss processing
The phamaceutical industry needs this soluiton.cics processing
Because it contains innovation.syntax processing
There are innovations in the solutions.mainframe processing
The phamaceutical industry needs this soluiton.data processing
Because it contains innovation.merge processing
There are innovations in the solutions.macro processing
The phamaceutical industry needs this soluiton.column processing
Because it contains innovation.statement processing
There are innovations in the solutions.sort processing
The phamaceutical industry needs this soluiton.batch command line
Because it contains innovation.batch commands
There are innovations in the solutions.batch cics
The phamaceutical industry needs this soluiton.batch linux
Because it contains innovation.batch unix
There are innovations in the solutions.batch variable
The phamaceutical industry needs this soluiton.batch syntax
Because it contains innovation.batch ftp
There are innovations in the solutions.process manufacturing
The phamaceutical industry needs this soluiton.batch programming
Because it contains innovation.export how to
There are innovations in the solutions.sql data export
The phamaceutical industry needs this soluiton.data variable
Because it contains innovation.import export
There are innovations in the solutions.xml data export
The phamaceutical industry needs this soluiton.data variables
Because it contains innovation.data file
There are innovations in the solutions.csv export
The phamaceutical industry needs this soluiton.statistics data
Because it contains innovation.data models
There are innovations in the solutions.logistic regression data
The phamaceutical industry needs this soluiton.data variance
Because it contains innovation.statistic data
There are innovations in the solutions.data analysis
The phamaceutical industry needs this soluiton.data variable
Because it contains innovation.sass data
There are innovations in the solutions.multiple regression data
The phamaceutical industry needs this soluiton.proc data
Because it contains innovation.regression data
There are innovations in the solutions.data correlation
The phamaceutical industry needs this soluiton.data models
Because it contains innovation.statistics data
There are innovations in the solutions.statistic data
The phamaceutical industry needs this soluiton.data analysis
Because it contains innovation.logistic regression data
There are innovations in the solutions.data warehouse
The phamaceutical industry needs this soluiton.data warehouse design
Because it contains innovation.data warehouse software
There are innovations in the solutions.data warehouse architecture
The phamaceutical industry needs this soluiton.data warehouse solutions
Because it contains innovation.data warehouse training
There are innovations in the solutions.data warehousing
The phamaceutical industry needs this soluiton.datawarehouse
Because it contains innovation.data ware house
There are innovations in the solutions.data warehouse tools
The phamaceutical industry needs this soluiton.data warehouse toolkit
Because it contains innovation.what is data warehouse
There are innovations in the solutions.what is data warehousing
The phamaceutical industry needs this soluiton.data warehousing concepts
Because it contains innovation.data warehouse concepts
There are innovations in the solutions.data warehouse etl
The phamaceutical industry needs this soluiton.data warehouse solution
Because it contains innovation.data warehouse project
There are innovations in the solutions.data warehousing tools
The phamaceutical industry needs this soluiton.the data warehouse toolkit
Because it contains innovation.data warehousing training
There are innovations in the solutions.building the data warehouse
The phamaceutical industry needs this soluiton.business objects reporting
Because it contains innovation.cognos reporting
There are innovations in the solutions.brio reporting
The phamaceutical industry needs this soluiton.olap reporting
Because it contains innovation.dashboard reporting
There are innovations in the solutions.microstrategy reporting
The phamaceutical industry needs this soluiton.regression data
Because it contains innovation.bi reporting
There are innovations in the solutions.multiple regression data
The phamaceutical industry needs this soluiton.data correlation
Because it contains innovation.clinical data
There are innovations in the solutions.clinical data manager
The phamaceutical industry needs this soluiton.clinical trial data
Because it contains innovation.clinical data coordinator
There are innovations in the solutions.clinical data repository
The phamaceutical industry needs this soluiton.clinical data associate
Because it contains innovation.clinical trials data
There are innovations in the solutions.clinical data entry
The phamaceutical industry needs this soluiton.clinical data managment
Because it contains innovation.data warehouse
There are innovations in the solutions.data warehouse design
The phamaceutical industry needs this soluiton.data warehouse software
Because it contains innovation.data warehouse architecture
There are innovations in the solutions.data warehouse solutions
The phamaceutical industry needs this soluiton.data warehouse training
Because it contains innovation.data warehousing
There are innovations in the solutions.datawarehouse
The phamaceutical industry needs this soluiton.data ware house
Because it contains innovation.data warehouse tools
There are innovations in the solutions.data warehouse toolkit
The phamaceutical industry needs this soluiton.what is data warehouse
Because it contains innovation.what is data warehousing
There are innovations in the solutions.data warehousing concepts
The phamaceutical industry needs this soluiton.data warehouse concepts
Because it contains innovation.data warehouse etl
There are innovations in the solutions.data warehouse solution
The phamaceutical industry needs this soluiton.data warehouse project
Because it contains innovation.data warehousing tools
There are innovations in the solutions.the data warehouse toolkit
The phamaceutical industry needs this soluiton.data warehousing training
Because it contains innovation.building the data warehouse
There are innovations in the solutions.business objects reporting
The phamaceutical industry needs this soluiton.cognos reporting
Because it contains innovation.brio reporting
There are innovations in the solutions.olap reporting
The phamaceutical industry needs this soluiton.dashboard reporting
Because it contains innovation.microstrategy reporting
There are innovations in the solutions.regression data
The phamaceutical industry needs this soluiton.bi reporting
Because it contains innovation.multiple regression data
There are innovations in the solutions.data correlation
The phamaceutical industry needs this soluiton.clinical data
Because it contains innovation.clinical data manager
There are innovations in the solutions.clinical trial data
The phamaceutical industry needs this soluiton.clinical data coordinator
Because it contains innovation.clinical data repository
There are innovations in the solutions.clinical data associate
The phamaceutical industry needs this soluiton.clinical trials data
Because it contains innovation.clinical data entry
There are innovations in the solutions.clinical data managment
The phamaceutical industry needs this soluiton.manage synonym
Because it contains innovation.manage thesaurus
There are innovations in the solutions.manage synonyms
The phamaceutical industry needs this soluiton.thesaurus dictionary
Because it contains innovation.thesaurus online dictionary
There are innovations in the solutions.control terminology
The phamaceutical industry needs this soluiton.air traffic control terminology
Because it contains innovation.control term
There are innovations in the solutions.performance benchmark
The phamaceutical industry needs this soluiton.performance benchmarks
Because it contains innovation.pc performance benchmark
There are innovations in the solutions.cpu performance benchmark
The phamaceutical industry needs this soluiton.disk performance benchmark
Because it contains innovation.server performance benchmark
There are innovations in the solutions.computer performance benchmark
The phamaceutical industry needs this soluiton.system performance benchmark
Because it contains innovation.benchmark performance group
There are innovations in the solutions.performance benchmark software
The phamaceutical industry needs this soluiton.stat benchmark
Because it contains innovation.benchmark statistics
There are innovations in the solutions.bi performance
The phamaceutical industry needs this soluiton.raid performance
Because it contains innovation.microstrategy performance
There are innovations in the solutions.olap performance
The phamaceutical industry needs this soluiton.scsi performance
Because it contains innovation.dashboard performance
There are innovations in the solutions.excels
The phamaceutical industry needs this soluiton.xls
Because it contains innovation.spreadsheet
There are innovations in the solutions.xls file
The phamaceutical industry needs this soluiton.xls viewer
Because it contains innovation.pdf to xls
There are innovations in the solutions.xls files
The phamaceutical industry needs this soluiton.fun xls exe
Because it contains innovation.data xls
There are innovations in the solutions.spreadsheet data
The phamaceutical industry needs this soluiton.data spreadsheets
Because it contains innovation.xcel data
There are innovations in the solutions.datas xls
The phamaceutical industry needs this soluiton.dta xls
Because it contains innovation.cell data
There are innovations in the solutions.statistics xls
The phamaceutical industry needs this soluiton.statistics spreadsheet
Because it contains innovation.statistics spreadsheets
There are innovations in the solutions.statistic xls
The phamaceutical industry needs this soluiton.statistic spreadsheet
Because it contains innovation.statistic spreadsheets
There are innovations in the solutions.spreadsheet average
The phamaceutical industry needs this soluiton.average spreadsheets
Because it contains innovation.statistica xls
There are innovations in the solutions.extract xls
The phamaceutical industry needs this soluiton.spreadsheet extract
Because it contains innovation.ms extract
There are innovations in the solutions.data extract
The phamaceutical industry needs this soluiton.sql extract
Because it contains innovation.convert extract
There are innovations in the solutions.csv extract
The phamaceutical industry needs this soluiton.import extract
Because it contains innovation.pl sql extract
There are innovations in the solutions.sql extract
The phamaceutical industry needs this soluiton.plsql extract
Because it contains innovation.cursor extract
There are innovations in the solutions.xmltype extract
The phamaceutical industry needs this soluiton.sqlplus extract
Because it contains innovation.db extract
There are innovations in the solutions.xml extract
The phamaceutical industry needs this soluiton.drop extract
Because it contains innovation.database extract
There are innovations in the solutions.reference extract
The phamaceutical industry needs this soluiton.clob extract
Because it contains innovation.stored procedure extract
There are innovations in the solutions.date extract
The phamaceutical industry needs this soluiton.function extract
Because it contains innovation.sequence extract
There are innovations in the solutions.convert extract
The phamaceutical industry needs this soluiton.table extract
Because it contains innovation.import extract
There are innovations in the solutions.blob extract
The phamaceutical industry needs this soluiton.data extract
Because it contains innovation.package extract
There are innovations in the solutions.row extract
The phamaceutical industry needs this soluiton.install extract
Because it contains innovation.sql server extract
There are innovations in the solutions.jdbc extract
The phamaceutical industry needs this soluiton.schema extract
Because it contains innovation.string extract
There are innovations in the solutions.object extract
The phamaceutical industry needs this soluiton.unix extract
Because it contains innovation.using extract
There are innovations in the solutions.insert extract
The phamaceutical industry needs this soluiton.datetime extract
Because it contains innovation.array extract
There are innovations in the solutions.create extract