Sunday 6 January 2008

Delivering SAS to Excel Jockeys


Delivering SAS to Excel Jockeys


Sy
Truong, Meta-Xceed, Inc., Milpitas, CA Jing Xu, Providian, Pleasanton CA



 



ABSTRACT



The ubiquity of Microsoft Excel and Word on desktop computers
has made it a default entry point for many users to view and edit their
information. Once Excel was included into the MS Office suite in 1993, it became
the killer app overtaking other spreadsheet heavy weights such as Lotus 1-2-3.
Although Excel has analysis capabilities, it does not have the powerful
statistical procedures and depth of SAS. When analyzing certain types of data,
such as financial information, Excel is the tool of choice. Its capabilities to
easily generate graphs along with the visual pivot table provide powerful
methods to view and analyze data. In certain cases, however, Excel is not
capable of performing particular tasks which SAS can provide. Some of the topics
that this paper will elaborate on include:



  1. Connecting SAS to Excel
    The use of TCP port communication allows Excel to connect directly with a SAS
    session

  2. SAS Macro Management – Managing
    SAS macros that can be delivered to Excel users

  3. Deliver SAS Data – SAS
    Datasets can be delivered directly to Excel or Word in optimized smaller
    blocks

  4. Pivot Table and Graph – SAS
    data can be formulated and delivered to Excel users in the form of a Pivot
    Table and/or Graph ( Excel Chart)


 


The union of SAS and Excel enables power users and decision
makers, who may not be SAS programmers, to fully explore their business data
with the full analytical power of the SAS system.



INTRODUCTION



The advent of the modern spreadsheet has revolutionized how
users analyze data such as financial data. It visually displays information in
cells similar to how a professor may describe the information on a chalk board.
The disadvantage of a chalk board is when a change or mistake is made. Rather
than having to erase each item on the board, the cells of a spreadsheet can be
updated through a formula. Programming languages have evolved to work with
spreadsheets so they can provide a very efficient method for financial analysts
to perform analysis interactively. There are many advantages to this approach
but there are also some limitations. Some of these limitations include:



  1. Change ControlThe
    changes to the spreadsheet are very interactive so the information stored
    previous to updates are lost. This can lead to regulatory compliance issues or
    limit the ability to easily roll back to an earlier version.

  2. Security – Spreadsheets
    are designed for individuals to work on their own set of data. They cannot
    easily handle multiple users with different perm issions. This combined with
    the lack of change control makes it difficult to function as a secured system
    for large sets of data in a large organization with many users.

  3. Cell Based Formula – Formulas
    defined for a cell in Excel are defined for a particular cell. An example is
    to sum up all the cells by their identified cell row and column name,
    =SUM(A1:A3). In this example, the cells A1, A2 and A3 are summed to a
    specified new cell such as A4. This is limited to cell A4 and is not easily
    replicated in an array of multiple cells. There have been scripting languages
    to enhance the capabilities of formulas but it is still limited since formulas
    are designed as expressions and not designed for complex algorithms which
    require a full featured programming language.

  4. Multiple Users – Spreadsheets
    are designed for a single user. This creates limitations if multiple users
    need to update the same data.

  5. Statistical Analysis – Formulas
    are designed as an expression to derive at a numeric answer. There is some
    statistical analysis that can be applied through a spreadsheet but this
    approach is limited. It is not optimized for more complex statistical modeling
    such as performing a multi-variate regression analysis.



1


The exploratory and visual aspects of spreadsheets make them
very suitable for certain types of financial calculations. However, some of the
limitations mentioned above can prevent power users from performing data mining
to truly model business conclusions that can be delivered by SAS. SAS has the
powerful programming language including a library of statistical procedures
which deliver to users functionality beyond the capabilities of spreadsheets.
The two tools can function together symbionically to form a complete solution.
This paper will explore the integration of SAS and Excel in ways that give SAS
programmers methods of delivering to Excel jockeys the power of SAS without
requiring them to program SAS.


CONNECTION SAS TO EXCEL


There are several ways to deliver data or connecting information
between SAS and Excel. Depending on the requirements, the following solutions can
provide the optimal methods of delivery.





















Communication Method


Description


Cut and Paste


Text output data can be cut and pasted into Excel through
the clip board. If the source data contains the correct delimiter, the
pasted values will be populated into a spreadsheet with proper column
alignment.


DDE Dynamic Data Exchange


Data and instructions can be sent from SAS to Excel
through Dynamic Data Exchange. This can deliver the most up to date data
dynamically. It can also include some Excel functions so that the output
can be placed onto a particular cell or worksheet.


TCP/IP Socket


Data and instructions can be sent from SAS to Excel
through the same protocol that is used on most networks across the
Internet.



 


There are advantages and limitations to each of the three
methods mentioned above. This paper will explore the third option of delivering
data and analytical computing power of SAS to Excel via TCP/IP socket
communication. This process will make it possible to have a SAS macro execute on
the server and the results delivered directly to Excel.


AUTHENTICATION AND SECURE ACCESS


There are multiple layers of security that can be applied to
ensure that the data being delivered from SAS to Excel is protected. Some or all
of the methods mentioned here can be implemented for optimal security. The
security measures include:


2



  1. 1. OS Privileges – The operating system in which the computer system
    resides acts as the first line of defense. This will authenticate the user
    who will be able to execute the SAS program and access Excel. This also acts
    as a layer to prevent users from accessing certain datasets that contain
    sensitive data.

  2. 2. Data Control – SAS datasets can contain password protection to
    prevent unauthorized access. This can be set for read or read write
    depending on the needs of the particular user.

  3. 3. Application Control – The application used in this example, MXI
    Plugin™, also contains a layer of authentication, both on the server side
    and client side. This will ensure that only specified members that have been
    granted perm issions will have access.


 


The OS and dataset controls are well understood. The unique
approach that is discussed in this paper will demonstrate how the application
applies an extra layer to ensure optimal security. The following steps are
applied by the application.


STEP 1: SOCKET PORT – The application server is configured to
be available only on a specified port. This information is not published so it
is more difficult for unintentional users to access the data through this port.


STEP 2: ACCESS CONTROL LIST– The application server will have
the ability to create user accounts. This is needed to control the access and
limit access to specified data and SAS macro programs.


3


STEP 3: PRIVILEGE ASSIGNMENTS – All SAS datasets and SAS macro
programs will have user access assigned. This will be controlled at the level of
each user. For SAS datasets, the user will have the ability to assign read
perm issions. For SAS macro programs, the user can have either read or execute
privileges granted.


STEP 4: CLIENT AUTHENTIFICAITON – The client application in
this case is a plug-in application to MS Excel. A dialog box is presented to the
user with a way of authenticating to the server. This will authenticate the user
and includes the server and socket port number. This will prevent accidental
access on default port numbers which other applications use.


STEP 5: TRANSPORT ENCRYPTION – The data being sent from the
SAS server to the Excel client will be encrypted with a password. This will
prevent access to the contents of the data if the data packets are intercepted
during delivery.


The five steps demonstrate methods that ensure that the data
being delivered from the server to the client is secured. The multiple layers
create redundancy to prevent accidental or malicious intent to alter or capture
sensitive data.


4


SAS MACRO MANAGEMENT


SAS macro is a programming language that is an extension of the
SAS base programming language. It is a superset of the base language in that you
can apply all the same data steps and SAS procedures to fully utilize the power
of SAS. In addition, it provides a way of modularizing repetitive portions of
your SAS program. It is recommended that when a particular task or programming
code segment is repeated more than three times, it should be placed into a
macro. This way, it can be repeated in a consistent manner. This provides SAS
programmers with a method for automating algorithms while allowing other
programmers to apply the same logic without having to completely understand the
intricacies of that code segment.


There are a couple of ways in which SAS macros are delivered to
other users. The main method is by creating a macro library. In this approach,
each macro is placed into a program where the name of the program is the same as
the name of the macro, and then placed in specified folders. For example, if you
were to have code that calculates the age of an individual, the program can be
named calc_age.sas and the corresponding macro is named %calc_age. The macro can
therefore be accessible to any program if the path of the program cal_age.sas is
defined in the AUTOPATH as a SAS option. Similar to other programming languages,
an include statement can also be used to include the external program
calc_age.sas into your current program such as in: *** include the macro to
calculate age ***;


%include "c:\mypath\calc_age.sas";


There are therefore two steps in the process of delivering a SAS
macro. These include:


STEP 1: SETUP MACRO – Start out by creating a SAS library
through the AUTOPATH option and inform the users of this so that they can apply
the steps to enable access.


STEP 2: USING MACRO – The user would then set up the macro
auto path in their autoexec.sas or through applying the include statement to
gain access. The user would then call the macro through the name such as in the
call: *** Apply the calculation of age ***;


data mydata;


set sourcelib.data;


%calc_age;


run;


The above traditional steps for managing the SAS macros are
designed for SAS programmers. This requires the user to understand the concepts
of the macro language and know how to access the macros programmatically through
proper syntax. This is appropriate for SAS programmers but can be prohibitive if
delivered to non SAS programmers such as Excel jockeys. An alternative and more
suitable method is described in the following steps.


STEP 1: MACRO LIBRARY MANAGEMENT – A graphical user interface
is provided for the macro developer to manage and organize the macros in
preparation for delivery.


5


The concept of a library is similar to the SAS auto path macro
library in that a series of macros can be placed into this directory for
delivery. In addition to having the path associated, a user friendly library
name can be assigned such as "Sample Library". This approach can
provide more flexibility since programs from different directory paths can be
associated to one library. The method for adding macros to a library in this
approach is applied through a graphical user interface. This makes the process
more user friendly. However, since this step is generally applied by SAS
developers, an additional batch approach is also available. For experienced
users, the batch method can be more efficient if many macros are applied at
once. In this example, a macro can be added to a macro library through a macro.


/*----------------------------------------------------*


* Program: maclib.sas


* Path: C:\Program Files\SAS\SAS 9.1


* Description: Manage macro libraries for MXI Plugin


* By: Sy Truong, %maclib, 02/18/2007, 12:06:03 pm


*-----------------------------------------------------*/


%maclib(macro = ,


library = Old Name,


action = delete);


%maclib(macro = ,


library = Sample Library,


action = add);


CONVERTING MACRO PARAMETERS


Macro parameter is the main method for modularizing your SAS
logic. This allows for you to parameterize and change specific values such as
input data or variable names within your SAS logic in order for it to perform
many different tasks. For example, a macro can be named "getparam"
which stands for "get parameters" as shown below: %getparam(macro =
C:\saspgm\pivottab.sas,


desc = ,


param = datname var type,


require = ,


type = text text radio buttons,


vallist = none none SAMPDATA.AE.DOMAIN,


defval = mydata|id 6 of maps.afghanis|AE);


In this example, the macro %getparam macro contains parameters
such as MACRO, DESC and PARAM. The values associated with each parameter are
then fed into the associated macro code to perform tasks specified by the user
request. This fundamental construct of the macro language acts as an interface
between the user and the macro itself.


6


The same parameters can be delivered to users in the form of
selection lists and radio buttons that Excel users are more accustomed to. MXI
Plugin can set this up so that the user experience is completely within Excel
providing the familiar user interface, while delivering powerful analysis on the
SAS server.


PIVOT TABLE AND GRAPH


Pivot tables and graphs or charts are powerful tools to explore
and display information. This can be demonstrated in an example where credit
score information, recorded as a FICO score, is collected for customers. The
financial institution commonly asks the question if the latest average FICO
score is high or low. This information is summarized across all customers by
year. An example result of performing this analysis is shown here:


The pivot table is shown on the left two columns of the
spreadsheet. The user can pull down the account open date "OPENDT2"
column and select specific years. The graph to the right will then show the
selected pivot table data points in a graph. The pivot table adds flexibility in
selecting the data segment of interest. The accompanying graph provides a visual
presentation of the same information to enable users to spot trends. The above
information can be prepared by the following steps.


STEP 1: DELIVER THE DATA – The data can be delivered from SAS
directly into Excel. This is accomplished through the MXI Plugin menu within
Excel or through the Excel toolbar. The data selection is then presented through Excel or through the Excel toolbar. The data selection is then presented through
the data libraries that are established on the server.


Once the user has been properly authenticated, the data can be
delivered to users as SAS datasets, pivot tables or graphs. If


7


the user decides to select the SAS datasets, the raw data will
be delivered to Excel as a spreadsheet. In this case, the user would continue to
the next step to establish the pivot table.


STEP 2: SETUP PIVOT TABLE – If the user selects the source
data from the list of SAS datasets, the data will be presented as a spreadsheet.
In this case, the user can then use Excel to set up the pivot table.


The Excel Layout tool allows the user to select the row such as
the open date in this example. The column of the pivot table can also be
assigned as seen in this example where the average FICO score is selected. This
does require a little work within Excel for the user to then establish the pivot
table. Alternatively, you can set up the same pivot table and have it delivered
directly to Excel by using the MXI Plugin server pivot table setup tool.


In this case, the open date and FICO score variables can be
selected in a similar manner. The difference is that this is being established
beforehand so that the user can select the pivot table directly as a sample data
source. This setup occurs on the SAS server, but once delivered to the client,
it will appear as a native Excel pivot table.


STEP 3: SETUP GRAPH/CHART – The last step in this analysis is
to create a graph or chart from the selected pivot table. The user has the
choice of selecting data from the raw source or from the pivot table. This
information is then used to create the graph within Excel. An alternative method
is to have this process set up on the server. This adds greater flexibility
since the graphs can be preprocessed on the server and delivered directly into
Excel as an Excel native chart, or it can be generated on the client Excel Excel as an Excel native chart, or it can be generated on the client Excel
spreadsheet.


8


In this example, the source to the graph can be either the
source data or a pivot table. You would then choose the column and row
variables. The titles and types of graphs can be selected in a similar way that
the wizard in Excel provides. The difference is that you are preparing to have
this delivered completely on the server prior to its delivery to the user on
Excel. The above steps show how you can deliver SAS data to Excel either as a Excel. The above steps show how you can deliver SAS data to Excel either as a
spreadsheet, pivot table or graph. You can leave it up to the user to then
create their own pivot table and graph within Excel, or have this prepared ahead
of time so that the user can have the most updated data on the server delivered
in the form of a pivot table or graph. This empowers Excel users to access SAS
data with visual display formats which are native to Excel.


CONCLUSION


MS Excel has become the default standard for data analysis on
desktop client computers. SAS has established itself as a powerful analytical
data mining tool on servers. This paper presents a unique approach using MXI
Plugin which marries the two tools enabling SAS data sets to be delivered
directly to Excel. The delivery method uses the standard TCP/IP as the underling
protocol for communication. There are multiple layers of security that are put
into place to prevent accidental or intentional data corruption. The powerful
analytical logic of SAS is delivered to Excel in multiple ways including: SAS
macro, SAS data, pivot table and graph. This information is delivered in a user
friendly manner since users can select parameters of a macro in a form of pull
down lists or check boxes. The SAS data is presented as spreadsheets and pivot
tables and graphs can be delivered in Excel formatted pivot tables and charts.
This empowers Excel users with many options to access the power of SAS without
having to program SAS. This approach provides Excel jockeys with an interface
that is familiar to Excel users while delivering the full power of the SAS
system.


REFERENCES


SAS and all other SAS Institute Inc. product or service names
are registered trademarks or trademarks of SAS Institute Inc. in the USA and
other countries. ® indicates USA registration.


MXI Plutin™ and other MXI (Meta-Xceed, Inc.) product names are
registered trademarks of Meta-Xceed, Inc. in the USA.


Other brand and product names are registered trademarks or
trademarks of their respective companies.


9


ABOUT THE AUTHOR


Sy Truong is President of MXI (Meta-Xceed, Inc.) They may be
contacted at:


 









Sy Truong Meta-Xceed, Inc. (MXI) 1751 McCarthy Blvd.
Milpitas, CA 95035 (408) 955-9333 sy.truong@meta-x.com




Jing Xu Washington Mutual Card Services Pleasanton, CA
4940 Johnson DR Pleasanton, CA 94588 (925) 738-5430 jing.xu@wamu.net


10


``




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