SlideShare uma empresa Scribd logo
1 de 35
Baixar para ler offline
PREVIOUS NEXTPREVIOUS NEXT
Integration of Argus and Other
Products Using the E2b Interchange
September 13, 2013
Rodney Lemery, MPH, PhD
Vice President, Safety and
Pharmacovigilance
BioPharm Systems, Inc.
1
PREVIOUS NEXT
Agenda
• Project Initiation
– Stakeholder Identification
– System Design
– Timeline
• Development
• Implementation
• Challenges
• Summary
2
PREVIOUS NEXT
• Stakeholder Identification
– All information systems implementation projects in the area
of health information begin by identifying key stakeholders.
– These stakeholders must work in concert and collaboration
in order to achieve their objectives as all of them are
involved in the planning and execution of the project
(O’Carroll et al., 2003)
Project Initiation
3
PREVIOUS NEXT
• Stakeholder Identification
– O’Carroll et al describe these stakeholders as two camps:
• IT View
• Business View
– Some have suggested that given our field’s stress on the
regulatory process that a third camp also be considered:
• QA View
Project Initiation
4
PREVIOUS NEXT
• IT Needs
– How will the integration actually process?
• Direct database to database connectivity?
• Web services?
• What is the system architecture being used?
– The unique case ID that intermediate system may generate
– is there any value in it being an intelligent key like
• <STUDY>_<USUBJID>_<AESEQ>_<SOME_SEQ_NUMBER>
• Or should it be a plain sequence number?
– Is the integration unidirectional or bi-directional between
the systems?
Project Initiation
5
PREVIOUS NEXT
• System Design Used in This Tutorial
Project Initiation
6
PREVIOUS NEXT
• IT Needs Answers in this Practical Example
– How will the integration actually process?
• A combination of database table manipulation in the LSH
system resulting in the generation of an E2b(+) XML file
that will be moved using Web Services into the
appropriate Incoming folder for Argus Interchange
– Is the integration unidirectional or bi-directional
between the systems?
• The integration is unidirectional only as the OLX and
OC/RDC systems are considered source by this client
Project Initiation
7
PREVIOUS NEXT
• Business Needs
– When should data be triggered for transfer from the source
to the target systems?
• Daily, Hourly?
– What specific data should be copied from the source to the
target system?
• All laboratory data?
• All medical history data?
– It is typical practice in a traditional safety practice to only enter the
laboratory tests and medical history data for a participant that are
deemed “medically relevant” to the event of interest for the case.
How does this clinically challenging concept get applied to an
information system?
Project Initiation
8
PREVIOUS NEXT
• Business Needs (cont.)
• Every event?
– Many companies use Argus to track more than just
adverse event data. Some use it to track quality
issues, device failure terms, medical information data
and registry information just to name a few.
– What constitutes a “case” in the source system?
Project Initiation
9
PREVIOUS NEXT
• Business Needs Used in This Tutorial
– When should data be triggered for transfer from the source
to the target systems?
• This example integration has 5 data movements that
require scheduling
1. OLX and OC/RDC data into LSH
2. Transformation of LSH data into SDTM standard
3. Creation of E2b(+) XML file from the SDTM standardized data
and queue for transfer
4. Transfer of XML file to network share via Web Methods
5. Import into Argus via Interchange
Project Initiation
1
0
PREVIOUS NEXT
• QA Needs
– Most of our client base would see this type of work as custom
development and place a risk level of medium to high in its
development
– This would mean a significant amount of testing usually in a phased
approach popular with the FDA regulations
• IQ – Installation Qualification
– Phase responsible for the documentation and testing of the installation process
according to the system design documentation and usually governed by its own
protocol and summary report.
• OQ – Operational Qualification
– Phase responsible for the functional testing of the system according to the
functional requirements specification and usually governed by its own protocol
and summary report.
• PQ – Performance Qualification
– Phase responsible for the user acceptance testing of the system according to
the user requirements specification and usually governed by its own protocol
and summary report.
Project Initiation
1
1
PREVIOUS NEXT
–What is the
timeline? Do any
of the integrated
systems have
critical dates that
may impact
timeline?
Project Initiation
1
2
PREVIOUS NEXT
Development/Testing
• Development/Testing
– Mapping – Must occur before development
begins; iterative process involving users
• Used to identify source for standard E2B fields and
to define required extended tags
1
3
PREVIOUS NEXT
Development/Testing
• Mapping
– First phase of development; Iterative process involving users
– Document the source locations, E2b tags, and Argus target fields
– Map standard E2b tags and define required E2b(+) tags
PREVIOUS NEXT
Development/Testing
• Mapping (contd.)
– Source
• Multi-record data mapped to repeating E2b sections
• “Where Clause” can be specified for added granularity
• Special consideration given to max. lengths across mapping
– E2b Tag
• Leverage default E2b tags where possible
• Define placement and order of E2b(+) tags within standard sections
• E2b(+) tags names: “_EXTENSION” and <= 30 characters in Argus
– Target (Argus)
• Identify code list mappings
• Surface user defined fields if necessary
PREVIOUS NEXT
Development/Testing
• Development/Testing
– Argus configuration
• Surface UD fields, configure products, studies, etc.
• Enable Interchange and required AG Services
1
6
PREVIOUS NEXT
Development/Testing
• Synchronize Configuration
– Code Lists
• Challenges mapping free-text source to target code lists
• Define process for error handling
• Establish procedure for future updates
PREVIOUS NEXT
Development/Testing
• Synchronize Configuration (contd.)
– Studies
• Limitations on importing study products (ex. duplicate records)
PREVIOUS NEXT
Development/Testing
• Synchronize Configuration (contd.)
– Products
• Product names must match Argus Trade Names verbatim
• Evaluate central product repository for ease of integration
PREVIOUS NEXT
Development/Testing
• Development/Testing
– Develop Argus custom profile and extended tags
• Define custom, extended profile in ESM and custom DTD file
• Load extended tags in CFG_E2B and
LM_ESM_ARGUS_MAPPING tables
• Add extended tags to DTD
• Develop custom import/export programming per extended
tag.
– Most of the export code is defined at the parent tag level (ex.
“drug”) while the import code is defined per tag
– Import code leverages PL/SQL and Argus API while export code
is basic SQL
2
0
PREVIOUS NEXT
Development/Testing
• Define E2b(+) Tags
– Add tags to DTD
• Location must match order in E2b file
Two Places
PREVIOUS NEXT
Development/Testing
• Define E2b(+) Tags (cont.)
– Insert tag records
• Use SQL*Loader for convenience
• Two tables: CFG_E2B and LM_ESM_ARGUS_MAPPING
PREVIOUS NEXT
Development/Testing
• Define E2b(+) Tags (cont.)
– Add Receive Code
• PL/SQL block per tag leveraging Argus API
• Helpful to use existing tags as examples
PREVIOUS NEXT
Development/Testing
• Define E2b(+) Tags (cont.)
– Add Transmit Code
• Only required for outgoing files (i.e. when Argus is the source)
• Basic SQL, usually defined at the parent element level (ex. Patient)
• Verify “Column Position” in CFG_E2B matches SELECT statement order
PREVIOUS NEXT
Development/Testing
• Add E2b(+) Profile
– Copy existing Profile to create new Profile
– Check “Extended E2b”
PREVIOUS NEXT
Development/Testing
• Create E2b(+) Profile DTD
– Copy and rename existing DTD
– Link profile to DTD
PREVIOUS NEXT
Development/Testing
• E2b Validation Rules
– Modify for E2b(+) profile to ease import restrictions
• Incoming files only need to meet minimum Argus case creation
requirements (not regulatory ICSR requirements)
• Minimize number of “mandatory” and “mandatory optional” tags
– CFG_E2B Table
• Update MANDATORY and MANDATORY_DTD_ELEMENT columns
– CFG_M2_ADDITIONAL Table
• Contains additional E2b validation rules
• Rules can be added/removed according to requirements
PREVIOUS NEXT
Development/Testing
• Development/Testing
– Configure Integration Points
• Argus reporting destination configured to point to
incoming/outgoing directories via Argus ESM
(network paths ok)
• Mechanism for moving E2B files to/from
directories?
– Web services?
2
8
PREVIOUS NEXT
Development/Testing
• Configure Reporting Destination
Reporting Destination
Code List
ESM Mapping
PREVIOUS NEXT
Development/Testing
• Development/Testing
– Testing
• Iterative process involving user groups
• Include several cycles of end-to-end testing
3
0
PREVIOUS NEXT
Implementation/Maintenance
• Implementation/Maintenance
– Consider phased rollout – ex. individual studies or limited data
points supplemented by manual data entry
– Define process for configuration changes across systems –
Changes can impact multiple systems (ex. configuring a new
product or study)
– Define process for bridge modifications (ex. addition of new
extended tag)
3
1
PREVIOUS NEXT
• Gotchas (examples)?
– Synchronizing configuration across systems (ex. product configuration)
– E2B tag order must be appropriately configured within CFG_E2B table
and match export SQL select order
– Extended tag names cannot exceed 30 characters
– Cannot add new parent tags or repeating sections
– Default logic for importing study products (potential for duplicate
products)
• Argus creates a single study product even if multiple products are delivered
to the patient
– Carefully consider enabling Argus auto-acceptance
• Business implications
– Known limitations with device products
– Working within standard E2B specification
• eMDR standards use HL7 formatted files
– Argus does not delete records or clear out values on import of follow-ups
32
Challenges
PREVIOUS NEXT
• Project Initiation
– Stakeholder Identification
– System Design
– Timeline
• Development
• Implementation
• Challenges
• Summary
33
Summary
PREVIOUS NEXT
• O’Carroll, P. (2003). Public Health Informatics and
Information Systems. Springer
34
References
PREVIOUS NEXT35
Contact
2000 Alameda de las Pulgas
Suite 154
San Mateo, CA 94403-1270
www.biopharm.com
Rodney L. Lemery MPH, PhD
Vice Pres. Safety and PV
Tel (650) 292-5310
Fax (650) 292-5301
rlemery@biopharm.com

Mais conteúdo relacionado

Mais procurados

Strategies for Conducting GxP Vendor Assessment of Cloud Service Providers - ...
Strategies for Conducting GxP Vendor Assessment of Cloud Service Providers - ...Strategies for Conducting GxP Vendor Assessment of Cloud Service Providers - ...
Strategies for Conducting GxP Vendor Assessment of Cloud Service Providers - ...Montrium
 
Quality Control for Medical Device Software - It Arena Lviv Presentation
Quality Control for Medical Device Software - It Arena Lviv PresentationQuality Control for Medical Device Software - It Arena Lviv Presentation
Quality Control for Medical Device Software - It Arena Lviv PresentationRoman Lavriv
 
IT Validation Training
IT Validation TrainingIT Validation Training
IT Validation TrainingRobert Sturm
 
DO-254 for dummies 7
DO-254 for dummies 7DO-254 for dummies 7
DO-254 for dummies 7DMAP
 
Kelis king - a storehouse of vast knowledge on software testing and quality ...
Kelis king  - a storehouse of vast knowledge on software testing and quality ...Kelis king  - a storehouse of vast knowledge on software testing and quality ...
Kelis king - a storehouse of vast knowledge on software testing and quality ...KelisKing
 
Network Infrastructure Validation Conference @UPRA (2003)
Network Infrastructure Validation Conference @UPRA (2003)Network Infrastructure Validation Conference @UPRA (2003)
Network Infrastructure Validation Conference @UPRA (2003)Raul Soto
 
Bli.it concepts-regarding-gamp-guide-en
Bli.it concepts-regarding-gamp-guide-enBli.it concepts-regarding-gamp-guide-en
Bli.it concepts-regarding-gamp-guide-enBLI.IT
 
Jarrel Thomas Project History
Jarrel Thomas Project HistoryJarrel Thomas Project History
Jarrel Thomas Project HistoryJarrel Thomas
 
An Overview of the Radiological Environmental Monitoring System
An Overview of the Radiological Environmental Monitoring SystemAn Overview of the Radiological Environmental Monitoring System
An Overview of the Radiological Environmental Monitoring SystemDijesh Das
 
Computer System Validation - The Validation Master Plan
Computer System Validation - The Validation Master PlanComputer System Validation - The Validation Master Plan
Computer System Validation - The Validation Master PlanWolfgang Kuchinke
 
Validation : Project Management
Validation : Project ManagementValidation : Project Management
Validation : Project ManagementDipen Shroff
 
Sw qual joint webinar deck (5)
Sw qual joint webinar deck (5)Sw qual joint webinar deck (5)
Sw qual joint webinar deck (5)Seapine Software
 
AMS RoHS Regulatory Project Plan Presentation_April 2014
AMS RoHS Regulatory Project Plan Presentation_April 2014AMS RoHS Regulatory Project Plan Presentation_April 2014
AMS RoHS Regulatory Project Plan Presentation_April 2014Tom Navarro, RAC
 
reddythippa ETL 8Years
reddythippa ETL 8Yearsreddythippa ETL 8Years
reddythippa ETL 8YearsThippa Reddy
 
Practical Testing Definition for Mobile Devices
Practical Testing Definition for Mobile DevicesPractical Testing Definition for Mobile Devices
Practical Testing Definition for Mobile DevicesJohan Hoberg
 

Mais procurados (20)

Introduction
IntroductionIntroduction
Introduction
 
Strategies for Conducting GxP Vendor Assessment of Cloud Service Providers - ...
Strategies for Conducting GxP Vendor Assessment of Cloud Service Providers - ...Strategies for Conducting GxP Vendor Assessment of Cloud Service Providers - ...
Strategies for Conducting GxP Vendor Assessment of Cloud Service Providers - ...
 
Quality Control for Medical Device Software - It Arena Lviv Presentation
Quality Control for Medical Device Software - It Arena Lviv PresentationQuality Control for Medical Device Software - It Arena Lviv Presentation
Quality Control for Medical Device Software - It Arena Lviv Presentation
 
What is Design Assurance Engineering (DAE)?
What is Design Assurance Engineering (DAE)?What is Design Assurance Engineering (DAE)?
What is Design Assurance Engineering (DAE)?
 
IT Validation Training
IT Validation TrainingIT Validation Training
IT Validation Training
 
DO-254 for dummies 7
DO-254 for dummies 7DO-254 for dummies 7
DO-254 for dummies 7
 
A&D Company Overview
A&D Company OverviewA&D Company Overview
A&D Company Overview
 
Kelis king - a storehouse of vast knowledge on software testing and quality ...
Kelis king  - a storehouse of vast knowledge on software testing and quality ...Kelis king  - a storehouse of vast knowledge on software testing and quality ...
Kelis king - a storehouse of vast knowledge on software testing and quality ...
 
Validation
ValidationValidation
Validation
 
Network Infrastructure Validation Conference @UPRA (2003)
Network Infrastructure Validation Conference @UPRA (2003)Network Infrastructure Validation Conference @UPRA (2003)
Network Infrastructure Validation Conference @UPRA (2003)
 
Bli.it concepts-regarding-gamp-guide-en
Bli.it concepts-regarding-gamp-guide-enBli.it concepts-regarding-gamp-guide-en
Bli.it concepts-regarding-gamp-guide-en
 
Jarrel Thomas Project History
Jarrel Thomas Project HistoryJarrel Thomas Project History
Jarrel Thomas Project History
 
An Overview of the Radiological Environmental Monitoring System
An Overview of the Radiological Environmental Monitoring SystemAn Overview of the Radiological Environmental Monitoring System
An Overview of the Radiological Environmental Monitoring System
 
2015 resume
2015 resume2015 resume
2015 resume
 
Computer System Validation - The Validation Master Plan
Computer System Validation - The Validation Master PlanComputer System Validation - The Validation Master Plan
Computer System Validation - The Validation Master Plan
 
Validation : Project Management
Validation : Project ManagementValidation : Project Management
Validation : Project Management
 
Sw qual joint webinar deck (5)
Sw qual joint webinar deck (5)Sw qual joint webinar deck (5)
Sw qual joint webinar deck (5)
 
AMS RoHS Regulatory Project Plan Presentation_April 2014
AMS RoHS Regulatory Project Plan Presentation_April 2014AMS RoHS Regulatory Project Plan Presentation_April 2014
AMS RoHS Regulatory Project Plan Presentation_April 2014
 
reddythippa ETL 8Years
reddythippa ETL 8Yearsreddythippa ETL 8Years
reddythippa ETL 8Years
 
Practical Testing Definition for Mobile Devices
Practical Testing Definition for Mobile DevicesPractical Testing Definition for Mobile Devices
Practical Testing Definition for Mobile Devices
 

Destaque

2015 08 04_Marvin L Clermont_Reduced
2015 08 04_Marvin L Clermont_Reduced2015 08 04_Marvin L Clermont_Reduced
2015 08 04_Marvin L Clermont_ReducedMarvin Clermont, MCRP
 
25 most frequently asked questions about islam
25 most frequently asked questions about islam25 most frequently asked questions about islam
25 most frequently asked questions about islamArab Muslim
 
Healthcare Audit Compliance
Healthcare Audit Compliance Healthcare Audit Compliance
Healthcare Audit Compliance MetricStream Inc
 
Open House at DP Professionals, October 2013
Open House at DP Professionals, October 2013Open House at DP Professionals, October 2013
Open House at DP Professionals, October 2013Catherine Buck Morgan
 
Us patent cases weekly update january 20th january 27th 2015
Us patent cases weekly update  january 20th january 27th 2015Us patent cases weekly update  january 20th january 27th 2015
Us patent cases weekly update january 20th january 27th 2015InvnTree IP Services Pvt. Ltd.
 
Plug & Play: Benefits of Out-of-the-Box Clinical Development Analytics (CDA) ...
Plug & Play: Benefits of Out-of-the-Box Clinical Development Analytics (CDA) ...Plug & Play: Benefits of Out-of-the-Box Clinical Development Analytics (CDA) ...
Plug & Play: Benefits of Out-of-the-Box Clinical Development Analytics (CDA) ...Perficient
 
Mercer Capital's Value Focus: Agribusiness | Q1 2015 | Segment: Agriculture M...
Mercer Capital's Value Focus: Agribusiness | Q1 2015 | Segment: Agriculture M...Mercer Capital's Value Focus: Agribusiness | Q1 2015 | Segment: Agriculture M...
Mercer Capital's Value Focus: Agribusiness | Q1 2015 | Segment: Agriculture M...Mercer Capital
 
Dyna Scan 360° LED Presentation
Dyna Scan 360° LED PresentationDyna Scan 360° LED Presentation
Dyna Scan 360° LED Presentationdynascan
 
Perks card.com reviews
Perks card.com reviewsPerks card.com reviews
Perks card.com reviewsPerksCard
 
Glass Fibers: Fiberglass/Glass Wool and Glass Fiber Reinforcements – A Global...
Glass Fibers: Fiberglass/Glass Wool and Glass Fiber Reinforcements – A Global...Glass Fibers: Fiberglass/Glass Wool and Glass Fiber Reinforcements – A Global...
Glass Fibers: Fiberglass/Glass Wool and Glass Fiber Reinforcements – A Global...Industry Experts
 
Cymphonix Network Revealer for Real Time Bandwidth Monitoring
Cymphonix Network Revealer for Real Time Bandwidth MonitoringCymphonix Network Revealer for Real Time Bandwidth Monitoring
Cymphonix Network Revealer for Real Time Bandwidth MonitoringJulie Tangen
 
Managing Oracle Clinical, RDC, and TMS User Accounts with Ease
Managing Oracle Clinical, RDC, and TMS User Accounts with EaseManaging Oracle Clinical, RDC, and TMS User Accounts with Ease
Managing Oracle Clinical, RDC, and TMS User Accounts with EasePerficient
 
2013 OHSUG - Benefits of Out-of-the-Box-CDA for Siebel Clinical
2013 OHSUG - Benefits of Out-of-the-Box-CDA for Siebel Clinical2013 OHSUG - Benefits of Out-of-the-Box-CDA for Siebel Clinical
2013 OHSUG - Benefits of Out-of-the-Box-CDA for Siebel ClinicalPerficient
 

Destaque (20)

2015 08 04_Marvin L Clermont_Reduced
2015 08 04_Marvin L Clermont_Reduced2015 08 04_Marvin L Clermont_Reduced
2015 08 04_Marvin L Clermont_Reduced
 
25 most frequently asked questions about islam
25 most frequently asked questions about islam25 most frequently asked questions about islam
25 most frequently asked questions about islam
 
Us patent cases weekly update june 2nd june 9th 2015
Us patent cases weekly update  june 2nd june 9th 2015Us patent cases weekly update  june 2nd june 9th 2015
Us patent cases weekly update june 2nd june 9th 2015
 
Healthcare Audit Compliance
Healthcare Audit Compliance Healthcare Audit Compliance
Healthcare Audit Compliance
 
World Economic and Social Survey 2011: The Great Green Technological Transfor...
World Economic and Social Survey 2011: The Great Green Technological Transfor...World Economic and Social Survey 2011: The Great Green Technological Transfor...
World Economic and Social Survey 2011: The Great Green Technological Transfor...
 
Dng de-06252013
Dng de-06252013Dng de-06252013
Dng de-06252013
 
Uncovering Public Info on Private Companies - Chris Roush (Fort Worth)
Uncovering Public Info on Private Companies - Chris Roush (Fort Worth)Uncovering Public Info on Private Companies - Chris Roush (Fort Worth)
Uncovering Public Info on Private Companies - Chris Roush (Fort Worth)
 
Open House at DP Professionals, October 2013
Open House at DP Professionals, October 2013Open House at DP Professionals, October 2013
Open House at DP Professionals, October 2013
 
Us patent cases weekly update january 20th january 27th 2015
Us patent cases weekly update  january 20th january 27th 2015Us patent cases weekly update  january 20th january 27th 2015
Us patent cases weekly update january 20th january 27th 2015
 
Plug & Play: Benefits of Out-of-the-Box Clinical Development Analytics (CDA) ...
Plug & Play: Benefits of Out-of-the-Box Clinical Development Analytics (CDA) ...Plug & Play: Benefits of Out-of-the-Box Clinical Development Analytics (CDA) ...
Plug & Play: Benefits of Out-of-the-Box Clinical Development Analytics (CDA) ...
 
Mercer Capital's Value Focus: Agribusiness | Q1 2015 | Segment: Agriculture M...
Mercer Capital's Value Focus: Agribusiness | Q1 2015 | Segment: Agriculture M...Mercer Capital's Value Focus: Agribusiness | Q1 2015 | Segment: Agriculture M...
Mercer Capital's Value Focus: Agribusiness | Q1 2015 | Segment: Agriculture M...
 
Dyna Scan 360° LED Presentation
Dyna Scan 360° LED PresentationDyna Scan 360° LED Presentation
Dyna Scan 360° LED Presentation
 
Perks card.com reviews
Perks card.com reviewsPerks card.com reviews
Perks card.com reviews
 
Business Voice February 2010
Business Voice February 2010Business Voice February 2010
Business Voice February 2010
 
putnam engineering geophysics 2007
putnam engineering geophysics 2007putnam engineering geophysics 2007
putnam engineering geophysics 2007
 
Glass Fibers: Fiberglass/Glass Wool and Glass Fiber Reinforcements – A Global...
Glass Fibers: Fiberglass/Glass Wool and Glass Fiber Reinforcements – A Global...Glass Fibers: Fiberglass/Glass Wool and Glass Fiber Reinforcements – A Global...
Glass Fibers: Fiberglass/Glass Wool and Glass Fiber Reinforcements – A Global...
 
Cymphonix Network Revealer for Real Time Bandwidth Monitoring
Cymphonix Network Revealer for Real Time Bandwidth MonitoringCymphonix Network Revealer for Real Time Bandwidth Monitoring
Cymphonix Network Revealer for Real Time Bandwidth Monitoring
 
Managing Oracle Clinical, RDC, and TMS User Accounts with Ease
Managing Oracle Clinical, RDC, and TMS User Accounts with EaseManaging Oracle Clinical, RDC, and TMS User Accounts with Ease
Managing Oracle Clinical, RDC, and TMS User Accounts with Ease
 
Accel Ops Brochure0609
Accel Ops Brochure0609Accel Ops Brochure0609
Accel Ops Brochure0609
 
2013 OHSUG - Benefits of Out-of-the-Box-CDA for Siebel Clinical
2013 OHSUG - Benefits of Out-of-the-Box-CDA for Siebel Clinical2013 OHSUG - Benefits of Out-of-the-Box-CDA for Siebel Clinical
2013 OHSUG - Benefits of Out-of-the-Box-CDA for Siebel Clinical
 

Semelhante a 2013 OHSUG - Integration of Argus and Other Products Using the E2B Interchange

Integrating Oracle Argus Safety with other Clinical Systems Using Argus Inter...
Integrating Oracle Argus Safety with other Clinical Systems Using Argus Inter...Integrating Oracle Argus Safety with other Clinical Systems Using Argus Inter...
Integrating Oracle Argus Safety with other Clinical Systems Using Argus Inter...Perficient
 
2013 OHSUG - Merging Multiple Drug Safety and Pharmacovigilance Databases int...
2013 OHSUG - Merging Multiple Drug Safety and Pharmacovigilance Databases int...2013 OHSUG - Merging Multiple Drug Safety and Pharmacovigilance Databases int...
2013 OHSUG - Merging Multiple Drug Safety and Pharmacovigilance Databases int...Perficient
 
Merging Multiple Drug Safety and Pharmacovigilance Databases
Merging Multiple Drug Safety and Pharmacovigilance DatabasesMerging Multiple Drug Safety and Pharmacovigilance Databases
Merging Multiple Drug Safety and Pharmacovigilance DatabasesPerficient
 
How to Migrate Drug Safety and Pharmacovigilance Data Cost-Effectively and wi...
How to Migrate Drug Safety and Pharmacovigilance Data Cost-Effectively and wi...How to Migrate Drug Safety and Pharmacovigilance Data Cost-Effectively and wi...
How to Migrate Drug Safety and Pharmacovigilance Data Cost-Effectively and wi...Perficient
 
rough-work.pptx
rough-work.pptxrough-work.pptx
rough-work.pptxsharpan
 
Validation and Business Considerations for Clinical Study Migrations
Validation and Business Considerations for Clinical Study MigrationsValidation and Business Considerations for Clinical Study Migrations
Validation and Business Considerations for Clinical Study MigrationsPerficient, Inc.
 
ISTQBCH2.ppt
ISTQBCH2.pptISTQBCH2.ppt
ISTQBCH2.pptghkadous
 
An Introduction to Clinical Study Migrations
An Introduction to Clinical Study MigrationsAn Introduction to Clinical Study Migrations
An Introduction to Clinical Study MigrationsPerficient, Inc.
 
Testing in the New World of Off-the-Shelf Software
Testing in the New World of Off-the-Shelf SoftwareTesting in the New World of Off-the-Shelf Software
Testing in the New World of Off-the-Shelf SoftwareJosiah Renaudin
 
Citrix AppDNA Management Overview v7.6
Citrix AppDNA Management Overview v7.6Citrix AppDNA Management Overview v7.6
Citrix AppDNA Management Overview v7.6Kerry Dirks MCPS MS
 
Software development PROCESS
Software development PROCESSSoftware development PROCESS
Software development PROCESSIvano Malavolta
 
software Engineering process
software Engineering processsoftware Engineering process
software Engineering processRaheel Aslam
 
Decision Matrix for IoT Product Development
Decision Matrix for IoT Product DevelopmentDecision Matrix for IoT Product Development
Decision Matrix for IoT Product DevelopmentAlexey Pyshkin
 
SCM Transformation Challenges and How to Overcome Them
SCM Transformation Challenges and How to Overcome ThemSCM Transformation Challenges and How to Overcome Them
SCM Transformation Challenges and How to Overcome ThemCompuware
 
Data Integrity II - Chromatography data system (CDS) in Pharma
Data Integrity II - Chromatography data system (CDS) in PharmaData Integrity II - Chromatography data system (CDS) in Pharma
Data Integrity II - Chromatography data system (CDS) in PharmaSathish Vemula
 
SPM lecture2 Requirements Management and Identification
SPM lecture2 Requirements Management and IdentificationSPM lecture2 Requirements Management and Identification
SPM lecture2 Requirements Management and IdentificationGarm Lucassen
 
Software Configuration Management.pptx
Software Configuration Management.pptxSoftware Configuration Management.pptx
Software Configuration Management.pptxMaSheilaMagboo
 

Semelhante a 2013 OHSUG - Integration of Argus and Other Products Using the E2B Interchange (20)

Integrating Oracle Argus Safety with other Clinical Systems Using Argus Inter...
Integrating Oracle Argus Safety with other Clinical Systems Using Argus Inter...Integrating Oracle Argus Safety with other Clinical Systems Using Argus Inter...
Integrating Oracle Argus Safety with other Clinical Systems Using Argus Inter...
 
2013 OHSUG - Merging Multiple Drug Safety and Pharmacovigilance Databases int...
2013 OHSUG - Merging Multiple Drug Safety and Pharmacovigilance Databases int...2013 OHSUG - Merging Multiple Drug Safety and Pharmacovigilance Databases int...
2013 OHSUG - Merging Multiple Drug Safety and Pharmacovigilance Databases int...
 
Merging Multiple Drug Safety and Pharmacovigilance Databases
Merging Multiple Drug Safety and Pharmacovigilance DatabasesMerging Multiple Drug Safety and Pharmacovigilance Databases
Merging Multiple Drug Safety and Pharmacovigilance Databases
 
How to Migrate Drug Safety and Pharmacovigilance Data Cost-Effectively and wi...
How to Migrate Drug Safety and Pharmacovigilance Data Cost-Effectively and wi...How to Migrate Drug Safety and Pharmacovigilance Data Cost-Effectively and wi...
How to Migrate Drug Safety and Pharmacovigilance Data Cost-Effectively and wi...
 
rough-work.pptx
rough-work.pptxrough-work.pptx
rough-work.pptx
 
Journey to the center of DevOps - v6
Journey to the center of DevOps - v6Journey to the center of DevOps - v6
Journey to the center of DevOps - v6
 
Validation and Business Considerations for Clinical Study Migrations
Validation and Business Considerations for Clinical Study MigrationsValidation and Business Considerations for Clinical Study Migrations
Validation and Business Considerations for Clinical Study Migrations
 
ISTQBCH2.ppt
ISTQBCH2.pptISTQBCH2.ppt
ISTQBCH2.ppt
 
ISTQBCH2.ppt
ISTQBCH2.pptISTQBCH2.ppt
ISTQBCH2.ppt
 
An Introduction to Clinical Study Migrations
An Introduction to Clinical Study MigrationsAn Introduction to Clinical Study Migrations
An Introduction to Clinical Study Migrations
 
Testing in the New World of Off-the-Shelf Software
Testing in the New World of Off-the-Shelf SoftwareTesting in the New World of Off-the-Shelf Software
Testing in the New World of Off-the-Shelf Software
 
Citrix AppDNA Management Overview v7.6
Citrix AppDNA Management Overview v7.6Citrix AppDNA Management Overview v7.6
Citrix AppDNA Management Overview v7.6
 
Software development PROCESS
Software development PROCESSSoftware development PROCESS
Software development PROCESS
 
software Engineering process
software Engineering processsoftware Engineering process
software Engineering process
 
Decision Matrix for IoT Product Development
Decision Matrix for IoT Product DevelopmentDecision Matrix for IoT Product Development
Decision Matrix for IoT Product Development
 
SCM Transformation Challenges and How to Overcome Them
SCM Transformation Challenges and How to Overcome ThemSCM Transformation Challenges and How to Overcome Them
SCM Transformation Challenges and How to Overcome Them
 
Data Integrity II - Chromatography data system (CDS) in Pharma
Data Integrity II - Chromatography data system (CDS) in PharmaData Integrity II - Chromatography data system (CDS) in Pharma
Data Integrity II - Chromatography data system (CDS) in Pharma
 
MES systems
MES systemsMES systems
MES systems
 
SPM lecture2 Requirements Management and Identification
SPM lecture2 Requirements Management and IdentificationSPM lecture2 Requirements Management and Identification
SPM lecture2 Requirements Management and Identification
 
Software Configuration Management.pptx
Software Configuration Management.pptxSoftware Configuration Management.pptx
Software Configuration Management.pptx
 

Mais de Perficient

Freedom and Flexibility with Siebel Clinical (CTMS) Open UI
Freedom and Flexibility with Siebel Clinical (CTMS) Open UIFreedom and Flexibility with Siebel Clinical (CTMS) Open UI
Freedom and Flexibility with Siebel Clinical (CTMS) Open UIPerficient
 
Managing Global Studies with Oracle's Siebel Clinical Trial Management System...
Managing Global Studies with Oracle's Siebel Clinical Trial Management System...Managing Global Studies with Oracle's Siebel Clinical Trial Management System...
Managing Global Studies with Oracle's Siebel Clinical Trial Management System...Perficient
 
How to Rapidly Configure Oracle Life Sciences Data Hub (LSH) to Support the M...
How to Rapidly Configure Oracle Life Sciences Data Hub (LSH) to Support the M...How to Rapidly Configure Oracle Life Sciences Data Hub (LSH) to Support the M...
How to Rapidly Configure Oracle Life Sciences Data Hub (LSH) to Support the M...Perficient
 
Cloud-based vs. On-site CTMS - Which is Right for Your Organization?
Cloud-based vs. On-site CTMS - Which is Right for Your Organization?Cloud-based vs. On-site CTMS - Which is Right for Your Organization?
Cloud-based vs. On-site CTMS - Which is Right for Your Organization?Perficient
 
Clinical Trial Supply Management with Siebel CTMS
Clinical Trial Supply Management with Siebel CTMSClinical Trial Supply Management with Siebel CTMS
Clinical Trial Supply Management with Siebel CTMSPerficient
 
Using Oracle Health Sciences Data Management Workbench to Optimize the Manage...
Using Oracle Health Sciences Data Management Workbench to Optimize the Manage...Using Oracle Health Sciences Data Management Workbench to Optimize the Manage...
Using Oracle Health Sciences Data Management Workbench to Optimize the Manage...Perficient
 
How St. Jude Medical Manages Oracle Clinical Studies Using Accel-Copy
How St. Jude Medical Manages Oracle Clinical Studies Using Accel-CopyHow St. Jude Medical Manages Oracle Clinical Studies Using Accel-Copy
How St. Jude Medical Manages Oracle Clinical Studies Using Accel-CopyPerficient
 
Evaluating and Investigating Drug Safety Signals with Public Databases
Evaluating and Investigating Drug Safety Signals with Public DatabasesEvaluating and Investigating Drug Safety Signals with Public Databases
Evaluating and Investigating Drug Safety Signals with Public DatabasesPerficient
 
The Perils of Clinical Trial Budgeting
The Perils of Clinical Trial BudgetingThe Perils of Clinical Trial Budgeting
The Perils of Clinical Trial BudgetingPerficient
 
2013 OHSUG - Use Cases for using the Program Type View in Oracle Life Science...
2013 OHSUG - Use Cases for using the Program Type View in Oracle Life Science...2013 OHSUG - Use Cases for using the Program Type View in Oracle Life Science...
2013 OHSUG - Use Cases for using the Program Type View in Oracle Life Science...Perficient
 
2013 OHSUG - The Ins and Outs of CTMS Data Migration
2013 OHSUG - The Ins and Outs of CTMS Data Migration2013 OHSUG - The Ins and Outs of CTMS Data Migration
2013 OHSUG - The Ins and Outs of CTMS Data MigrationPerficient
 
2013 OHSUG - Siebel Clinical Integration with Other Systems
2013 OHSUG - Siebel Clinical Integration with Other Systems2013 OHSUG - Siebel Clinical Integration with Other Systems
2013 OHSUG - Siebel Clinical Integration with Other SystemsPerficient
 
2013 OHSUG - Sharing CTMS Data between Sponsors and Contract Research Organiz...
2013 OHSUG - Sharing CTMS Data between Sponsors and Contract Research Organiz...2013 OHSUG - Sharing CTMS Data between Sponsors and Contract Research Organiz...
2013 OHSUG - Sharing CTMS Data between Sponsors and Contract Research Organiz...Perficient
 
2013 OHSUG - Oracle Clinical and RDC Training for Data Management and Clinica...
2013 OHSUG - Oracle Clinical and RDC Training for Data Management and Clinica...2013 OHSUG - Oracle Clinical and RDC Training for Data Management and Clinica...
2013 OHSUG - Oracle Clinical and RDC Training for Data Management and Clinica...Perficient
 
2013 OHSUG - Use Cases for Using the Program Type View in Oracle Life Science...
2013 OHSUG - Use Cases for Using the Program Type View in Oracle Life Science...2013 OHSUG - Use Cases for Using the Program Type View in Oracle Life Science...
2013 OHSUG - Use Cases for Using the Program Type View in Oracle Life Science...Perficient
 
2013 OHSUG - Facilitating Pharmacovigilance Globalization with Process Reengi...
2013 OHSUG - Facilitating Pharmacovigilance Globalization with Process Reengi...2013 OHSUG - Facilitating Pharmacovigilance Globalization with Process Reengi...
2013 OHSUG - Facilitating Pharmacovigilance Globalization with Process Reengi...Perficient
 
2013 OHSUG - Clinical Data Warehouse Implementation
2013 OHSUG - Clinical Data Warehouse Implementation2013 OHSUG - Clinical Data Warehouse Implementation
2013 OHSUG - Clinical Data Warehouse ImplementationPerficient
 
2013 OHSUG - Best Practices for Setting up the CDA Repository for CTMS/OC
2013 OHSUG - Best Practices for Setting up the CDA Repository for CTMS/OC2013 OHSUG - Best Practices for Setting up the CDA Repository for CTMS/OC
2013 OHSUG - Best Practices for Setting up the CDA Repository for CTMS/OCPerficient
 
2013 OHSUG - Using Oracle's Empirica Topics to Document Your Signal Managemen...
2013 OHSUG - Using Oracle's Empirica Topics to Document Your Signal Managemen...2013 OHSUG - Using Oracle's Empirica Topics to Document Your Signal Managemen...
2013 OHSUG - Using Oracle's Empirica Topics to Document Your Signal Managemen...Perficient
 
Approaches to Populating the Sponsor CTMS with CRO Data
Approaches to Populating the Sponsor CTMS with CRO DataApproaches to Populating the Sponsor CTMS with CRO Data
Approaches to Populating the Sponsor CTMS with CRO DataPerficient
 

Mais de Perficient (20)

Freedom and Flexibility with Siebel Clinical (CTMS) Open UI
Freedom and Flexibility with Siebel Clinical (CTMS) Open UIFreedom and Flexibility with Siebel Clinical (CTMS) Open UI
Freedom and Flexibility with Siebel Clinical (CTMS) Open UI
 
Managing Global Studies with Oracle's Siebel Clinical Trial Management System...
Managing Global Studies with Oracle's Siebel Clinical Trial Management System...Managing Global Studies with Oracle's Siebel Clinical Trial Management System...
Managing Global Studies with Oracle's Siebel Clinical Trial Management System...
 
How to Rapidly Configure Oracle Life Sciences Data Hub (LSH) to Support the M...
How to Rapidly Configure Oracle Life Sciences Data Hub (LSH) to Support the M...How to Rapidly Configure Oracle Life Sciences Data Hub (LSH) to Support the M...
How to Rapidly Configure Oracle Life Sciences Data Hub (LSH) to Support the M...
 
Cloud-based vs. On-site CTMS - Which is Right for Your Organization?
Cloud-based vs. On-site CTMS - Which is Right for Your Organization?Cloud-based vs. On-site CTMS - Which is Right for Your Organization?
Cloud-based vs. On-site CTMS - Which is Right for Your Organization?
 
Clinical Trial Supply Management with Siebel CTMS
Clinical Trial Supply Management with Siebel CTMSClinical Trial Supply Management with Siebel CTMS
Clinical Trial Supply Management with Siebel CTMS
 
Using Oracle Health Sciences Data Management Workbench to Optimize the Manage...
Using Oracle Health Sciences Data Management Workbench to Optimize the Manage...Using Oracle Health Sciences Data Management Workbench to Optimize the Manage...
Using Oracle Health Sciences Data Management Workbench to Optimize the Manage...
 
How St. Jude Medical Manages Oracle Clinical Studies Using Accel-Copy
How St. Jude Medical Manages Oracle Clinical Studies Using Accel-CopyHow St. Jude Medical Manages Oracle Clinical Studies Using Accel-Copy
How St. Jude Medical Manages Oracle Clinical Studies Using Accel-Copy
 
Evaluating and Investigating Drug Safety Signals with Public Databases
Evaluating and Investigating Drug Safety Signals with Public DatabasesEvaluating and Investigating Drug Safety Signals with Public Databases
Evaluating and Investigating Drug Safety Signals with Public Databases
 
The Perils of Clinical Trial Budgeting
The Perils of Clinical Trial BudgetingThe Perils of Clinical Trial Budgeting
The Perils of Clinical Trial Budgeting
 
2013 OHSUG - Use Cases for using the Program Type View in Oracle Life Science...
2013 OHSUG - Use Cases for using the Program Type View in Oracle Life Science...2013 OHSUG - Use Cases for using the Program Type View in Oracle Life Science...
2013 OHSUG - Use Cases for using the Program Type View in Oracle Life Science...
 
2013 OHSUG - The Ins and Outs of CTMS Data Migration
2013 OHSUG - The Ins and Outs of CTMS Data Migration2013 OHSUG - The Ins and Outs of CTMS Data Migration
2013 OHSUG - The Ins and Outs of CTMS Data Migration
 
2013 OHSUG - Siebel Clinical Integration with Other Systems
2013 OHSUG - Siebel Clinical Integration with Other Systems2013 OHSUG - Siebel Clinical Integration with Other Systems
2013 OHSUG - Siebel Clinical Integration with Other Systems
 
2013 OHSUG - Sharing CTMS Data between Sponsors and Contract Research Organiz...
2013 OHSUG - Sharing CTMS Data between Sponsors and Contract Research Organiz...2013 OHSUG - Sharing CTMS Data between Sponsors and Contract Research Organiz...
2013 OHSUG - Sharing CTMS Data between Sponsors and Contract Research Organiz...
 
2013 OHSUG - Oracle Clinical and RDC Training for Data Management and Clinica...
2013 OHSUG - Oracle Clinical and RDC Training for Data Management and Clinica...2013 OHSUG - Oracle Clinical and RDC Training for Data Management and Clinica...
2013 OHSUG - Oracle Clinical and RDC Training for Data Management and Clinica...
 
2013 OHSUG - Use Cases for Using the Program Type View in Oracle Life Science...
2013 OHSUG - Use Cases for Using the Program Type View in Oracle Life Science...2013 OHSUG - Use Cases for Using the Program Type View in Oracle Life Science...
2013 OHSUG - Use Cases for Using the Program Type View in Oracle Life Science...
 
2013 OHSUG - Facilitating Pharmacovigilance Globalization with Process Reengi...
2013 OHSUG - Facilitating Pharmacovigilance Globalization with Process Reengi...2013 OHSUG - Facilitating Pharmacovigilance Globalization with Process Reengi...
2013 OHSUG - Facilitating Pharmacovigilance Globalization with Process Reengi...
 
2013 OHSUG - Clinical Data Warehouse Implementation
2013 OHSUG - Clinical Data Warehouse Implementation2013 OHSUG - Clinical Data Warehouse Implementation
2013 OHSUG - Clinical Data Warehouse Implementation
 
2013 OHSUG - Best Practices for Setting up the CDA Repository for CTMS/OC
2013 OHSUG - Best Practices for Setting up the CDA Repository for CTMS/OC2013 OHSUG - Best Practices for Setting up the CDA Repository for CTMS/OC
2013 OHSUG - Best Practices for Setting up the CDA Repository for CTMS/OC
 
2013 OHSUG - Using Oracle's Empirica Topics to Document Your Signal Managemen...
2013 OHSUG - Using Oracle's Empirica Topics to Document Your Signal Managemen...2013 OHSUG - Using Oracle's Empirica Topics to Document Your Signal Managemen...
2013 OHSUG - Using Oracle's Empirica Topics to Document Your Signal Managemen...
 
Approaches to Populating the Sponsor CTMS with CRO Data
Approaches to Populating the Sponsor CTMS with CRO DataApproaches to Populating the Sponsor CTMS with CRO Data
Approaches to Populating the Sponsor CTMS with CRO Data
 

Último

IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 

Último (20)

IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 

2013 OHSUG - Integration of Argus and Other Products Using the E2B Interchange

  • 1. PREVIOUS NEXTPREVIOUS NEXT Integration of Argus and Other Products Using the E2b Interchange September 13, 2013 Rodney Lemery, MPH, PhD Vice President, Safety and Pharmacovigilance BioPharm Systems, Inc. 1
  • 2. PREVIOUS NEXT Agenda • Project Initiation – Stakeholder Identification – System Design – Timeline • Development • Implementation • Challenges • Summary 2
  • 3. PREVIOUS NEXT • Stakeholder Identification – All information systems implementation projects in the area of health information begin by identifying key stakeholders. – These stakeholders must work in concert and collaboration in order to achieve their objectives as all of them are involved in the planning and execution of the project (O’Carroll et al., 2003) Project Initiation 3
  • 4. PREVIOUS NEXT • Stakeholder Identification – O’Carroll et al describe these stakeholders as two camps: • IT View • Business View – Some have suggested that given our field’s stress on the regulatory process that a third camp also be considered: • QA View Project Initiation 4
  • 5. PREVIOUS NEXT • IT Needs – How will the integration actually process? • Direct database to database connectivity? • Web services? • What is the system architecture being used? – The unique case ID that intermediate system may generate – is there any value in it being an intelligent key like • <STUDY>_<USUBJID>_<AESEQ>_<SOME_SEQ_NUMBER> • Or should it be a plain sequence number? – Is the integration unidirectional or bi-directional between the systems? Project Initiation 5
  • 6. PREVIOUS NEXT • System Design Used in This Tutorial Project Initiation 6
  • 7. PREVIOUS NEXT • IT Needs Answers in this Practical Example – How will the integration actually process? • A combination of database table manipulation in the LSH system resulting in the generation of an E2b(+) XML file that will be moved using Web Services into the appropriate Incoming folder for Argus Interchange – Is the integration unidirectional or bi-directional between the systems? • The integration is unidirectional only as the OLX and OC/RDC systems are considered source by this client Project Initiation 7
  • 8. PREVIOUS NEXT • Business Needs – When should data be triggered for transfer from the source to the target systems? • Daily, Hourly? – What specific data should be copied from the source to the target system? • All laboratory data? • All medical history data? – It is typical practice in a traditional safety practice to only enter the laboratory tests and medical history data for a participant that are deemed “medically relevant” to the event of interest for the case. How does this clinically challenging concept get applied to an information system? Project Initiation 8
  • 9. PREVIOUS NEXT • Business Needs (cont.) • Every event? – Many companies use Argus to track more than just adverse event data. Some use it to track quality issues, device failure terms, medical information data and registry information just to name a few. – What constitutes a “case” in the source system? Project Initiation 9
  • 10. PREVIOUS NEXT • Business Needs Used in This Tutorial – When should data be triggered for transfer from the source to the target systems? • This example integration has 5 data movements that require scheduling 1. OLX and OC/RDC data into LSH 2. Transformation of LSH data into SDTM standard 3. Creation of E2b(+) XML file from the SDTM standardized data and queue for transfer 4. Transfer of XML file to network share via Web Methods 5. Import into Argus via Interchange Project Initiation 1 0
  • 11. PREVIOUS NEXT • QA Needs – Most of our client base would see this type of work as custom development and place a risk level of medium to high in its development – This would mean a significant amount of testing usually in a phased approach popular with the FDA regulations • IQ – Installation Qualification – Phase responsible for the documentation and testing of the installation process according to the system design documentation and usually governed by its own protocol and summary report. • OQ – Operational Qualification – Phase responsible for the functional testing of the system according to the functional requirements specification and usually governed by its own protocol and summary report. • PQ – Performance Qualification – Phase responsible for the user acceptance testing of the system according to the user requirements specification and usually governed by its own protocol and summary report. Project Initiation 1 1
  • 12. PREVIOUS NEXT –What is the timeline? Do any of the integrated systems have critical dates that may impact timeline? Project Initiation 1 2
  • 13. PREVIOUS NEXT Development/Testing • Development/Testing – Mapping – Must occur before development begins; iterative process involving users • Used to identify source for standard E2B fields and to define required extended tags 1 3
  • 14. PREVIOUS NEXT Development/Testing • Mapping – First phase of development; Iterative process involving users – Document the source locations, E2b tags, and Argus target fields – Map standard E2b tags and define required E2b(+) tags
  • 15. PREVIOUS NEXT Development/Testing • Mapping (contd.) – Source • Multi-record data mapped to repeating E2b sections • “Where Clause” can be specified for added granularity • Special consideration given to max. lengths across mapping – E2b Tag • Leverage default E2b tags where possible • Define placement and order of E2b(+) tags within standard sections • E2b(+) tags names: “_EXTENSION” and <= 30 characters in Argus – Target (Argus) • Identify code list mappings • Surface user defined fields if necessary
  • 16. PREVIOUS NEXT Development/Testing • Development/Testing – Argus configuration • Surface UD fields, configure products, studies, etc. • Enable Interchange and required AG Services 1 6
  • 17. PREVIOUS NEXT Development/Testing • Synchronize Configuration – Code Lists • Challenges mapping free-text source to target code lists • Define process for error handling • Establish procedure for future updates
  • 18. PREVIOUS NEXT Development/Testing • Synchronize Configuration (contd.) – Studies • Limitations on importing study products (ex. duplicate records)
  • 19. PREVIOUS NEXT Development/Testing • Synchronize Configuration (contd.) – Products • Product names must match Argus Trade Names verbatim • Evaluate central product repository for ease of integration
  • 20. PREVIOUS NEXT Development/Testing • Development/Testing – Develop Argus custom profile and extended tags • Define custom, extended profile in ESM and custom DTD file • Load extended tags in CFG_E2B and LM_ESM_ARGUS_MAPPING tables • Add extended tags to DTD • Develop custom import/export programming per extended tag. – Most of the export code is defined at the parent tag level (ex. “drug”) while the import code is defined per tag – Import code leverages PL/SQL and Argus API while export code is basic SQL 2 0
  • 21. PREVIOUS NEXT Development/Testing • Define E2b(+) Tags – Add tags to DTD • Location must match order in E2b file Two Places
  • 22. PREVIOUS NEXT Development/Testing • Define E2b(+) Tags (cont.) – Insert tag records • Use SQL*Loader for convenience • Two tables: CFG_E2B and LM_ESM_ARGUS_MAPPING
  • 23. PREVIOUS NEXT Development/Testing • Define E2b(+) Tags (cont.) – Add Receive Code • PL/SQL block per tag leveraging Argus API • Helpful to use existing tags as examples
  • 24. PREVIOUS NEXT Development/Testing • Define E2b(+) Tags (cont.) – Add Transmit Code • Only required for outgoing files (i.e. when Argus is the source) • Basic SQL, usually defined at the parent element level (ex. Patient) • Verify “Column Position” in CFG_E2B matches SELECT statement order
  • 25. PREVIOUS NEXT Development/Testing • Add E2b(+) Profile – Copy existing Profile to create new Profile – Check “Extended E2b”
  • 26. PREVIOUS NEXT Development/Testing • Create E2b(+) Profile DTD – Copy and rename existing DTD – Link profile to DTD
  • 27. PREVIOUS NEXT Development/Testing • E2b Validation Rules – Modify for E2b(+) profile to ease import restrictions • Incoming files only need to meet minimum Argus case creation requirements (not regulatory ICSR requirements) • Minimize number of “mandatory” and “mandatory optional” tags – CFG_E2B Table • Update MANDATORY and MANDATORY_DTD_ELEMENT columns – CFG_M2_ADDITIONAL Table • Contains additional E2b validation rules • Rules can be added/removed according to requirements
  • 28. PREVIOUS NEXT Development/Testing • Development/Testing – Configure Integration Points • Argus reporting destination configured to point to incoming/outgoing directories via Argus ESM (network paths ok) • Mechanism for moving E2B files to/from directories? – Web services? 2 8
  • 29. PREVIOUS NEXT Development/Testing • Configure Reporting Destination Reporting Destination Code List ESM Mapping
  • 30. PREVIOUS NEXT Development/Testing • Development/Testing – Testing • Iterative process involving user groups • Include several cycles of end-to-end testing 3 0
  • 31. PREVIOUS NEXT Implementation/Maintenance • Implementation/Maintenance – Consider phased rollout – ex. individual studies or limited data points supplemented by manual data entry – Define process for configuration changes across systems – Changes can impact multiple systems (ex. configuring a new product or study) – Define process for bridge modifications (ex. addition of new extended tag) 3 1
  • 32. PREVIOUS NEXT • Gotchas (examples)? – Synchronizing configuration across systems (ex. product configuration) – E2B tag order must be appropriately configured within CFG_E2B table and match export SQL select order – Extended tag names cannot exceed 30 characters – Cannot add new parent tags or repeating sections – Default logic for importing study products (potential for duplicate products) • Argus creates a single study product even if multiple products are delivered to the patient – Carefully consider enabling Argus auto-acceptance • Business implications – Known limitations with device products – Working within standard E2B specification • eMDR standards use HL7 formatted files – Argus does not delete records or clear out values on import of follow-ups 32 Challenges
  • 33. PREVIOUS NEXT • Project Initiation – Stakeholder Identification – System Design – Timeline • Development • Implementation • Challenges • Summary 33 Summary
  • 34. PREVIOUS NEXT • O’Carroll, P. (2003). Public Health Informatics and Information Systems. Springer 34 References
  • 35. PREVIOUS NEXT35 Contact 2000 Alameda de las Pulgas Suite 154 San Mateo, CA 94403-1270 www.biopharm.com Rodney L. Lemery MPH, PhD Vice Pres. Safety and PV Tel (650) 292-5310 Fax (650) 292-5301 rlemery@biopharm.com