Western Users of SAS Software 2006

Saturday, September 30, 2006

WUSS 2006

WUSS
2006 Conference





WUSS
2006 this year was organized by Lauren Haworth, Academic Program Chair and Diana
Suhr, operations chair.  It was held
at the Hyatt Regency,


Irvine


California


starting this past
Wednesday, September 27.  This year
also marked the 30th year anniversary for SAS so the opening session
and lunch time key note speakers were reflective upon SAS’s history. 
I particularly enjoyed David Baggett talk on “SAS and U: Exploring the
U Factor”.  David is from SAS and
is the director of user events.  David
described the 30 year history of the user groups.

 



  • 1976
    - First SUGI


  • 1980s
    - Local and In-house Users Groups Emerge


  • 1989-1994
    - Regional Users Groups Form



WUSS
is a relative late comer to the regional but it has a strong following.












































Group



Serves



Chartered



NESUG



Northeast



1989



MWSUG



Mid West



1989



PHARMASUG



Pharmaceuticals



1989



PNWSUG



Pacific

North West






1990



SCSUG



South Central



1991



SESUG



South East



1992



WUSS



Western



1993



David
shared some interesting statistics about the conferences for this year.

 



  • 10,000
    attendees at US users group events



         
40% at SUGI 31 in

San Francisco





         
60% at RUGs, LUGs, and In-house meetings



  • >4200
    attendees at SUGI 31


  • 87
    In-House Users Groups


  • 68
    Local Users Groups



 



 


SAS
recognizes and supports many of these user groups. 
Besides the regional such as WUSS, there are also smaller local user
groups in our region.



 

Arizona




         
Valley of the Sun SAS Users Group




California





         
Bay Area SAS Users Group


         
Bay Area SAS Independent Consultants


         
Los Angeles Basin SAS Users Group


         
Sacramento Valley SAS Users Group


         
San Diego SAS Users Group




Colorado





         
Denver SAS Users Group


         
Northern Colorado-Wyoming SAS Users Group


Hawaii
SAS Users Group


Utah
SAS Users Group



 


SAS
seems very committed to supporting these local and regional groups since they
recognize the contributions from SAS users.




 


I
was able to catch up with Jason Secosky from SAS Institute who is a developer
for DATA step.  He demonstrated
methods for users to create their own functions. 
This has never been available in the past and will be a feature for
version 9.2.  User defined functions
are efficient since the logic is compiled and can run faster than logic
developed with macro language.  To
define your own function, you can use a new procedure named PROC FCMP. 
An example is:



proc fcmp outlib=work.funcs.math;



  function
fequal(x, y);



    return (abs(x-y) <=
(1E-12*max(abs(x), abs(y))));



 
endsub;



run; quit;

 


The
function logic is saved to a catalog in this case named “WORK.FUNCS.MATH”. 
There is a new entry type which stores this function logic. This example
function contains two input parameters “x” and “y”. 
If there is no “$” placed after the parameters, it defaults to
numeric values.  You can now write
logic applied to these parameters similar to syntax within a data step to return
one value.  The “RETURN”
statement is used to have that one value returned as output to the function.



To
make the function available, you would apply the option.



options cmplib=work.funcs;



This makes all the functions stored in the catalog available to the current SAS
session.  You can now use the
function as in the following example:

 


data _null_;



  x = 7.3;

  x = x+ 0.1;



 
y = 7.4;



  * compare with the normal equals sign;

  if x = y then

    put "Values equal
with =.";



  else

  put "Value not equal with
=.";



 

 * compare with the fEqual function;

 
if fequal(x,y) then



   
put "Values equal with fequal().";



 else



    put "Values not
equal with fequal().";



  
  put
"HEX output of X and Y (notice slight difference)";



    put x= hex16. / y=hex16. ;



run;



In this
example, the two parameters x and y are then sent to the function and the value
returned from the function will be evaluated in the “if” statement. 
The user defined FEQUAL example function now works just like any other
function such as that defined by the SAS system.



The construct of functions can return one value when it is invoked. 
Another similar construct is a “subroutine”, which modifies values of
the parameters in which it is has been sent. 
An example definition of a subroutine is:


proc fcmp outlib=work.funcs.math;



  subroutine
allpermk(n, k);



    array
scratch[1]/nosymbols;



    call
dynamic_array(scratch, n);



    call permk(n, k,
scratch, 1, 0);



  endsub;



  subroutine
permk(n, k, scratch[*], m, i);



    if m-1 = n then do;



      if i = k
then



        put
scratch[*];



    end;



    else do;

|

      scratch[m]
= 1;



      call
permk(n, k, scratch, m+1, i+1);



      scratch[m]
= 0;



      call
permk(n, k, scratch, m+1, i);



    end; 




 
endsub;



run; quit;



In this
example, the subroutine ALLPERKM is defined and then called by the second
routine PERMMK.  You can call this
recursively.  The invocation of the
subroutine is done by a CALL statement.  Note
that no values are returned but that the values of the parameters in the
subroutines are modified.  There are
several interesting characteristics about functions and subroutines that make it
efficient as compared to macros.

 



  • Variable Scope – Variables defined inside one routine is not
    access in another routine.  You
    can only pass values through the parameters. 
    This makes the routine cleaner in its definition and usage.


  • Recursion – This allows one function or subroutine to call itself so
    it can resolve certain algorithms very efficiently.


  • Efficiencies
    Since the logic is compiled, it runs faster than
    compared logic defined in a macro which is interpreted and acts more like a
    code generator before executing.



Currently,
some of the features of functions have not yet been made available. 
These are my own wish list but perhaps it will be considered for the
future.




  • Backward Compatibility – Functions
    can only be defined in version 9.2 and then used in 9.2. 
    It would be really nice to have user defined functions work on older
    version like SAS 8.2.


  • No Source – Currently, the logic of the function can be viewed in
    the catalog.  It would be nice to
    have an option to save the catalog without revealing the code logic. 
    This will encourage developers to develop functions with the ability
    to retain their intellectual property.


  • Code Log – When the function execute, none of the algorithm is
    displayed in the log.  It would
    be nice to have an option similar to the option MACROGEN for macros in which
    the logic of the algorithm can be optionally displayed in the log.


I
do think there are many possibilities once users are able to defined their own
functions and subroutines.  I
envision creating custom reports using the new features of ODS and PROC TEMPLATE
combined with the ability to create your own functions. 
This will truly be the next generation “data _null_”.   
In this scenario, there is tremendous amounts of customization and layout
capabilities such as described in another paper I read entitled “
Next Generation Data
_NULL_ Report Writing Using ODS OO Features
” by Daniel O’Connor.  The
challenge with the flexibility is to be able to automate certain tasks since you
can do so much.  With the
introduction of functions, this flexibility and power can be automated to
deliver ultimate reporting engine.



I
enjoyed the WUSS conference since it combines technical information such as the
what I have learned from Jason while also opportunities to network with friends
and colleagues.  This year also had
captured a reflective historic view of past conferences which gives it more
meaning and context.  The next
conference will be later in the year in October and will be held in


San
Francisco


. 
I look forward to it and will see you at the next WUSS.



Cheers,



Sy















Meta-Xceed,
Inc. (MXI)
Sy Truong

 President
Clinical
Analytic Software

& Service Solutions
 sy.truong@meta-x.com

1751 McCarthy
Bvld.  Milpitas, CA 95035








mobile:

Skype & Yahoo ID:

Office:
510
396 3464

sytruongus

408 955 9333




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