Computer programs in histopathology record keeping

Size: px
Start display at page:

Download "Computer programs in histopathology record keeping"

Transcription

1 J Clin Pathol 1982;35:40-44 Computer programs in histopathology record keeping KV SWETTENHAM, C NICKOLS, CL BERRY From the Department of Morbid Anatomy, The London Hospital, London El SUMMARY Increasing work loads, changes in the nature of data obtained from biopsies, and the use of laboratory statistics in determining financial provision for pathological services combine to enhance the value of computer generated results and indexing in histopathology. The system described here depends on an indexed file system using the Basic Plus-2 language with a PDP- 11 computer and SNOP. Error traps are included. The system is designed for secretarial use, SNOP coding being carried out by medical staff. The combination of an increasing work load, difficulties in obtaining secretarial staff, an increased call for statistical data to provide the basis for administrative decisions and the natural progression of the subject, have all combined to increase the importance of accurate record keeping in histopathology. Endoscopy, with repeated biopsies from individuals throughout the course of their disease has increased the need for prompt tracing of previous opinions to enable comparisons to be made and clinical research is now dependent on the processing of larger numbers of cases and the examination of more variables than before. The aim of our project was to write computer programs for use by secretarial staff in histopathology. These would enable them to enter patient details, macroscopical and microscopial data, would compile registers and indices and print reports, with the most economical use of data storage. The basis of the program was the use of the RMS (Record Management Services) file handling system used by the PDP-1 1 computer (North-East Thames Regional Health Authority). This facility allows the choice of three types of file organisation: Sequential, Relative, and Indexed. In a Sequential file records are stored one after the other -like the alphabet or an address book, but the file has to be read from the beginning to reach the information In a Relativefile the position of the records can be found by specifying a relative position in the file; an example of this kind is a block of flats where each flat in the block can be Accepted for publication 6 May related to any other flat by its flat number. The type we chose was an Indexed file, which is constructed so that individual records can be accessed by means of "keys" associated with the data, a faster system for retrieval. An example of this type is a catalogue where numbers are used as codes (keys) to identify the contents. The main disadvantage is that the memory space allocation of the record must be stated at the time of programming. For files in use by more than one person (multiple access), the number of records stored (file size) must be stated and a file of this size created. An "Extend" file size, for single users, allows the file to grow as records are entered, to the maximum size stated at the time of program writing. We have used multiple and single access systems, which, apart from access details, are identical. They are composed of programs for the entry of departmental and hospital number, patient details, reports, SNOP codes, and the printing out of reports. Specific patient details and the SNOP codes are transferred automatically to a small file to serve as a name, number, and SNOP code index. Various oth -r programs are provided for a "Search and Find" operation on data in the small file, which can also be accessed and used independently of the main system. A file size of 5000 blocks was chosen for both the main and small file. This allows a total of 1300 cases to be stored before the main file is reused and cases before the small file is reused. The data collected from the main file are kept as printed copy, the data from the small file are transferred to magnetic tape when the file is full.

2 Computer programs in histopathology record keeping Method THE MAIN FILE A series of programs were written which would each perform a specified function, allowing individual programs to be changed without interfering with the main structure. The only firm decisions which have to be made are those specified in the "Map" and "Open" statements as these define the characteristics of the files and cannot easily be changed. The variables and size defined in the "Map" statement for the main file are shown in Table 1. Table I Map statement for the main file Departmental number Hospital record number Date sent Patient's surname and forename Date of birth Sex Consultant Ward A number of lines for macroscopical description Date of typing and initials of secretary Consultants initials (for macroscopical description) A number of lines for microscopical report Five pairs of SNOP codes Date of typing report Consultants initials (for microscopical report) Previous surgical numbers-and a variable code used to open second file A total of 1977 characters The "keys" defined in the "Open" statement were: Primary-Department number. Alternate-Patients surname, Forename. The definition of the departmental number as the primary key allows the data to be accessed for the purpose of updating and printing. The patient's surname and forename defined as alternate keys enables their use for the name-number index program. For the multiple access file, the file size has to be defined in the "Open" statement. Using these file definitions, the first program, "CLRU" was written, to create the file which the other programs will use. Rerunning the program clears the data from the file. ENTRY OF DATA "START" This first asks for the departmental number of the patient-typed in at the printer or Visual Display Unit (VDU). All the data are then stored under this primary key. If the "RETURN" key is pressedgiving a "null" answer, the program will automatically close the file and end the program. If not closed the program will continue to ask questionsfor example, date tissue sent, patient's surname and forename, record number, age or date of birth, the consultant and the source of the specimen. As it is essential that this data is correct a "correction" facility is provided during various phases of data entry, reminding the secretary to look back over the data already typed and go back and correct any mistakes. The next stage is macroscopical description, which is allowed 14 lines of 62 characters. Again, a "correction" function is added at the end of the description. With The London Hospital programs the user is given the opportunity to open a second file for additional macroscopical detail, if The third stage of the program allows the date of typing, typists' initials, the initials of the doctor who described the specimen and the initials of the consultant who will be reporting the case to be entered. The final part of the program is an automatic error trap. If a secretary attempts to store a departmental number that is already in memory, the VDU screen will flash "Entry Error" and again ask for the departmental number. If any other error is found the screen will display a number which indicates the error and the position in the program where it occurred. With all the data typed correctly and checked for mistakes, the data are then put into the file. The machine then goes back to the start of the program to enable further records to be entered. If no more data are to be added the "RETURN" key is pressed and the file is closed. PRINTING OUT "PRINT I" This program begins by displaying its function, printing out departmental number and macroscopical data, making it possible to see that the right program has been chosen. The first and last departmental number to be printed are then specified and all data between these two is printed. The copy is then given to the pathologist for microscopical reporting and SNOP coding. This program a*fo incorporates an error trap, if a departmental number is missing the printer will stop and the VDU will flash "Number not found." When all the data has been printed, the printer is automatically switched off and the file closed while the VDU will display "Control returned to VDU" to show that the program has ended. Data may also be displayed on the VDU without printing. The sheet generated by "PRINT 1" is returned from the pathologist to the secretary who runs "UPDATE" to enter the microscopical report and SNOP codes. This program works in a similar way to those described above first displaying its function, and asking for the first departmental number to 41

3 42 "update." This number is used as the primary key to find the correct record. An error trap is included. Having found the record the program then asks for up to five pairs of SNOP codes. If a SNOP code is not entered the VDU will display-"snop code not entered, this report will not be printed." The date of typingand secretary's and pathologist's initials are then entered, an error trap is run and the microscopical report is then entered using 14 lines of 62 characters. A facility for extending the report is available. A further mistake check then occurs; if all is correct the record is then updated. The program then opens the small file. The primary and two alternate keys remain the same but the Hospital record number and first pair of SNOP codes are added as alternate keys. These data are then stored automatically (file size 65 characters). If more SNOP codes have been used then a further file is opened, these SNOP codes become alternate keys and are again stored automatically. As most records will only have one pair of SNOP codes, the opening of a second file only when there are more than one gives economical use of memory storage (file size 51 characters). The program then goes back and asks for the next departmental number to update. As with the previous programs, pressing "RETURN" (null entry), causes the program to close all files and end. The complete report is printed using "PRINT 2" which is closely comparable to "PRINT 1." If the record is found but SNOP codes have not been added, then the VDU displays "No SNOP codes" and the report is not printed. The program then goes on to print the next complete record. The program prints the report on one sheet of paper (8 x 11 inches (20 x 28 cm)) with the departmental number and patient details at the top of the sheet. This is followed by the macroscopical description and the microscopical report, with the SNOP codes, date of typing and space for the pathologist's signature at the end (see Figs 1 and 2). The paper used in the line printer is 8 inches (20 cm) wide, tractor fed, continouus sheet, perforated at lengths of 11 inches (28 cm)-which allows for one report per sheet. Our extended macroscopical and microscopic report results in two sheets with the departmental number and patient details on the top of both sheets. The printed reports are then given to the pathologist to sign before being sent to the ward or becoming part of the departmental records. Other programs These programs are used to deal with departmental enquiries, and with clearing of data from the files. "MANDY" makes use of the fact that the patient's Il ',)vtn TJrffWi ua L '-.LA 1- :, A L i'j ` N i, OW.All "I HI.'i :I.. 'iril! IW i. t.tiot Ii1., 011, *, IL' il5i O II if i-:.r I.LILO1 NG' Ai:,i 1:I 1il:l..,1! I,l~~~~~~~~~ Rll ti u,! + L Ij.Ilbl,i!.t {r.:l: 'ti it I~~I'1 qii!i: t.!> i, I'llt Isil AI4tr: tti) NOI l& &i! P1!! i'l I4 (i~~ I- ',IM; il,: ~ ~ t ~ ~ ~~~t,f f IFF:s, N ii iii:;}@i 1l 7n', Swettenham, Nickols, Berry!:i if-r;tr.r*;,i!- LI ta 1. it H ;. Irii iii i,;/ irirfi ir rri rir IrJ dt r i fh i ll. ;! iii.,, ',. f! Il rfrrrr rrrrrrfn W ilii1j) J~lII Ik.1 ~ 1- lj İI..,i rrf Ir rr I ro! Ir!.,r.; Ii ri tl("., ll,, HL i,hd 4I l N!I" 'W lt t1 V, :ll., fir, iti ii II II firfi rrrr İIi ii I ii iirrfifiirii, IiL:':,, l I r, f INi OPi N,IrII ri it Iii ij'! i!! I, ill!! rl INi- I! S~ I",NfilSl Nw1 ej; ;/ O'i I'1 Fig. 1 Double sheet report (I II name has been defined as an alternate key in the "Open" statement, thus allowing a p:ogram to be written which will search by name and not departmental number. When an enquiry about a patient is made, the secretaries can enter the name and the computer will return the departmental numbers of

4 Computer programs in histopathology record keeping Fig. 2 Single sheet report! f1 (It Nit [( C AL E.-lt ONl 6,H.6N b f1i t0 -,' 1 L1zi1. i I6 si1k.16i 6. '6 _ r N x. ON'APl.tJl -ii& if6 ii: ~ 11iF S' iils ~ ~ ~ ~ ~ il.! fft 1" 11l il W1 *]thi H."tu.:,,J IM*1'id, t'.d 1, ~ HT " th&e.isl'.inchuirll I;t O)' ỊW fl.-6,1 -F M EF. 11 l:" LbT NBYU NORMA r'trl0 v ILiNELi the patients on record that match the name. If the hospital record number is known then this can be entered with the name so that a more accurate match can be made. If the patient has had any biopsies within the previous month, these numbers will also be returned, making it possible to choose the report which is relevant, or to read all of them. "MANDY 2" searches the small file which we anticipate will cover 3-4 yr. "DELETE" will remove one particular record at a time from the main and small files. The program first asks for the departmental number of the record to be deleted, and then displays the patient's data on the VDU enabling the record to be checked. A definite instruction to remove the record must be made before it is deleted. In order to reuse the main file, existing records have to be deleted to allow further data to be entered. "RECDEL" will display the last departmental number deleted and the date on which this operation was carried out. It then asks for the number of records to delete and the departmental number from which this is to start. The program first attempts to get the record out of the small file-if this operation is successful, it is certain that the specimen has been reported. The program then accesses the main file, gets the record and deletes it. If the record is not found in the small file-that is, is not reported, the main file is accessed and the data are transferred to a file which contains all the non-reported cases. The record in the main file is not deleted and the program continues by getting the next departmental number from the small file. When the program has finished deleting the specified records the last deleted departmental number is automatically stored. The VDU then asks for the date, and these two pieces of information are displayed first when the program is next run. Data transferred by this program into the "nonreported" file can be accessed using "MANDY" programs described previously. "MANDY" will search the file for a specific departmental number whilst "MANDY 2" will perform a name or departmental number search. A program called "SEQMF" searches the main file sequentially and is similar to "SDSEQ," described in the "Search and Find" section. "CODEIN" was written to enable missing SNOP codes to be added to the reports. As with "UPDATE" this program also transfers data automatically into the small file. For a summary of program functions see Table 2. THE SEARCH AND FIND FILES (SMALL FILE) The small file system may be used in two ways. Data may be fed into it automatically from the main file system or by using a program called "RECORD." The files in the small file system are generated by two short programs called "CLRT" and "CLRV." These are identical to "CLRU," previously described. The primary and alternate keys used are described later. In both instances the data stored are the same comprising the departmental number, still defined as the primary key, the patient's surname and forename -defined as the first and second alternate keys, the first pair of SNOP codes as the third and fourth alternate keys and the hospital record number as the fifth. The provision of an automatic secondary file allows the storage of a further four pairs of SNOP codes-also defined as alternate keys. It is thus possible to use the small file system as a name, number and disease index automatically generated by the main system or in its own right-data being fed in by the program "RECORD." This data entry program for the small file begins by asking for the departmental number, then continues by asking questions regarding the patientthe surname, forename, sex, date of birth or age, hospital record number and the first pair of SNOP codes. As with the main file data entry programs a correction facility is available before the program asks if there are any more SNOP codes to be added. If not, then the data are put into the small file and the program returns to the beginning. If there are 43

5 44 Table 2 Program Summary offunction ofprograms Main file system CLRU Primary-generates the main file. Secondary-Clears the main file of data. START Enters departmental number, patient details and the macroscopical description. PRINT 1 Prints above. Printed copy given to pathologist. UPDATE Enters microscopical report and SNOP codes. Data are automatically transferred to the small file. PRINT 2 Prints above. Reports signed by pathologist. DELETE Deletes all data entered, with given departmental number, from the main and small files. MANDY Searches main file by name or name plus hospital number and returns the departmental number. This will also search the "non-reported" file. RECDEL Deletes reported cases from the main file-as CODEIN Allows SNOP codes to be entered plus automatic transfer to the small file. SEQMF Sequentially prints out departmental numbers and data between two given numbers or only the missing cases, as Program Small file system CLRT Primary-generates small files. CLRV Secondary-clears small files of data. RECORD Enters departmental number and patient details and SNOP codes. UPDATE (main file) As above but by automatic transfer. MANDY 2 Searches by name or name plus hospital number. Returns departmental number. This will also search the "non-reported" file. FIND I Searches by departmental number, patient's surname, surname plus record number and first pair of SNOP codes. FIND 2 Searches by departmental number, patient's surname, surname plus hospital record number, hospital record number, or forename. 4 SNOPS Searches by Topographical code Morphological code or both, in the extra SNOP file. SDSEQ Sequential print out of departmental numbers and data between two given numbers or only the missing cases, as TYPRIT Deletes all data entered with a given departmental number from the small file. more SNOP codes, the file for the extra codes is automatically opened, a request for entry is displayed on the VDU. After correction, these are then stored in the second file and the program returns to the beginning. Like all other programs, pressing the "RETURN" key closes the files and ends the run. The search and find programs are written using a combination of keys. The program entitled "FIND 1" will access data using the departmental number (primary key) or the patient's surname (alternate key) and the first pair of SNOP codes (alternate keys). For example, entering a given SNOP code will return all the records that match this code. (The SNOP code referred to here can be the Topographical or Morphological code, or both.) Swettenham, Nickols, Berry "FIND 2" works ina similar way except that it uses different keys for its function. A choice is given to match the records on file with the departmental number, patient's surname, surname and forename, hospital record number or forename alone. If it is not clear which is the surname and which is the forename the program will automatically swop them over and rerun the search. On both "FIND 1" and "FIND 2" an automatic error trap is incorporated to prevent the file from returning an error when all the records on file have been searched through in order to find the match. The program automatically goes back to ask if another search is required, if it is not, then typing in "NO" or pressing the "RETURN" key will close all the files and end the program. As the additional SNOP codes have been designated alternate keys, this file may also be accessed to match these extra codes, by a program called "4SNOPS." This will return any match, if found, for any SNOP code entered. A program is provided to duplicate the function of "PRINT 2" used in the main system. This program, called "SDSEQ" will print the data in the small file sequentially between two given departmental numbers, either on the line printer or the VDU. If the number is not found the number missing will actually be printed. This enables the content of the small file to be rapidly checked, which is particularly useful when the small file is used independently and the data are not generated by the main system. The last program, "TYPRIT," is used to delete data from the small file. This is necessary when using the small file system alone or when the primary data has been deleted from the main file-that is, when it exceeds 1300 cases. Running this program displays the data requested and a definite statement has to be made before the data are deleted from the file. The program ends by displaying the name of the program used to re-enter the correct data. Conclusion Reading an account of a computer program is seldom other than tedious. The system, in use, is flexible and relieves the secretarial staff of much tedious work, improving their input of data, increasing accuracy and allowing more time for activities often considered to be unimportant, such as the prompt issuing of post-mortem reports. The main difficulty in its use is the establishment of "British Telecom" connections, for the rapidity of machine language is frustrated by the slowness ofthe telephone. Requests for reprints to: Professor CL Berry, Department of Morbid Anatomy, The London Hospital Medical College, London El 1BB, England.

Cervical Cytology ICE system user manual

Cervical Cytology ICE system user manual Cervical Cytology ICE system user manual Instructions for Greater Manchester, Cumbria and Lancashire GP practices accessing ICE Desktop via Internet Explorer In this document: Page: 1. Access and login

More information

Vision Anywhere (Windows 8)

Vision Anywhere (Windows 8) Vision Vision Anywhere (Windows 8) Quick Reference Copyright INPS Ltd 2015 The Bread Factory, 1A Broughton Street, Battersea, London, SW8 3QJ T: +44 (0) 207 5017000 F:+44 (0) 207 5017100 W: www.inps.co.uk

More information

Procedure re-written. (i.e. All staff with responsibility for the creation, use and management of organisational responsibility)

Procedure re-written. (i.e. All staff with responsibility for the creation, use and management of organisational responsibility) Standard Operating Procedure Title of Standard Operation Procedure: Corporate Records Management Procedure Reference Number: ECT002863 Version No: 2.0 Supersedes Versions No: 0.1 Amendments Made: Procedure

More information

Practical use of a word processor in a histopathology laboratory

Practical use of a word processor in a histopathology laboratory Practical use of a word processor in a histopathology laboratory J Clin Pathol 1982;35:151-158 JAMES C BRIGGS, NASSIF BN IBRAHIM, IAN MACKINTOSH, DAVID NORRIS From the Departments of Histopathology and

More information

FORM 1 DATA ACCESS REQUEST (DAR)

FORM 1 DATA ACCESS REQUEST (DAR) FM 1 DATA ACCESS REQUEST (DAR) (Except with the consent of the individual concerned, the personal data collected in this Form will be used for the purpose of processing this data access request and other

More information

Performing Electronic Pathology Requesting using EMIS LV Practice System. To request a Test when in EMIS LV Consultation Mode (CM)

Performing Electronic Pathology Requesting using EMIS LV Practice System. To request a Test when in EMIS LV Consultation Mode (CM) Performing Electronic Pathology Requesting using EMIS LV Practice System The following standard operational procedure details the use of the electronic pathology requesting system used by the Pathology

More information

Global Telemedicine Market (Telehome and TeleHospital): Size, Trends & Forecasts ( ) March 2017

Global Telemedicine Market (Telehome and TeleHospital): Size, Trends & Forecasts ( ) March 2017 Global Telemedicine Market (Telehome and TeleHospital): Size, Trends & Forecasts (2017-2021) March 2017 Global Telemedicine Market Report Scope of the Report The report entitled Global Telemedicine Market:

More information

A Flat file database. Problems with a flat file database (data redundancy)

A Flat file database. Problems with a flat file database (data redundancy) Data capture Before you can create a database, you need to collect data. This is known as data capture. One of the most common ways is to use and optical mark reader (OMR). An OMR sensor is used for marking

More information

MacroView DM Macro digital imaging for advanced anatomical and forensic investigations

MacroView DM Macro digital imaging for advanced anatomical and forensic investigations MacroView DM Macro digital imaging for advanced anatomical and forensic investigations MacroVIEW DM Macro digital imaging system for diagnostic and forensic post mortem investigations The MacroView DM

More information

Pathology Informatics Training and Education Workshop Lab InfoTech Summit April 9, 2008

Pathology Informatics Training and Education Workshop Lab InfoTech Summit April 9, 2008 Pathology Informatics Training and Education Workshop Lab InfoTech Summit April 9, 2008 Walter H. Henricks, M.D. Cleveland Clinic Pathology Informatics Mission of pathology is to provide information necessary

More information

Vision+ SMS Text Messaging User Guide

Vision+ SMS Text Messaging User Guide Vision 3 Vision+ SMS Text Messaging User Guide Copyright INPS Ltd 2015 The Bread Factory, 1A Broughton Street, Battersea, London, SW8 3QJ T: +44 (0) 207 501700 F:+44 (0) 207 5017100 W: www.inps.co.uk Copyright

More information

AUSCARE - Manual Melbourne Health

AUSCARE - Manual Melbourne Health CONTENTS Navigation... 4 Search using Patient Demographics... 5 Search using Location Atributes... 5 Search using Doctor and / or Consultant... 6 Icon Status... 6 Investigations Tab... 7 Zoom in or out...

More information

BRIDGEWATER SURGERIES. Privacy Notice

BRIDGEWATER SURGERIES. Privacy Notice BRIDGEWATER SURGERIES Privacy Notice We understand how important it is to keep your personal information safe and secure and we take this very seriously. We have taken steps to make sure your personal

More information

The IBMS: 2016 and beyond

The IBMS: 2016 and beyond The IBMS: 2016 and beyond Ian Sturdgess IBMS President Pathology Services Manager West Hertfordshire Hospitals NHS Trust Institute of Biomedical Science The professional body for the biomedical science

More information

Cerner WebConnect. User Manual LB-079-MED* *ISO 15189:2012 accreditation applies for the NRL Dubai laboratory only

Cerner WebConnect. User Manual LB-079-MED* *ISO 15189:2012 accreditation applies for the NRL Dubai laboratory only Cerner WebConnect User Manual LB-079-MED* *ISO 15189:2012 accreditation applies for the NRL Dubai laboratory only 2 CONTENTS INTRODUCTION 3 1 BEFORE YOU GET STARTED 1.1 System Requirements 1.2 Internet

More information

... user-friendly explanations for HL7, SNOMED, DICOM, XML, BDT

... user-friendly explanations for HL7, SNOMED, DICOM, XML, BDT ... user-friendly explanations for HL7, SNOMED, DICOM, XML, BDT HL 7 (Health Level 7) The quality of modern software can be measured by its ability to integrate with other systems. For this reason, an

More information

My Health Online 2017 Website Update Configuration User Guide

My Health Online 2017 Website Update Configuration User Guide My Health Online 2017 Website Update Configuration User Guide Version 1 15 June 2017 Vision The Bread Factory 1a Broughton Street London SW8 3QJ Registered No: 1788577 England www.visionhealth.co.uk T

More information

Instructions for the Conduct of the Examination and Coursework (ICE) Physical Education. Entry Level Certificate (ELC) 8930

Instructions for the Conduct of the Examination and Coursework (ICE) Physical Education. Entry Level Certificate (ELC) 8930 8930 Instructions for the Conduct of the Examination and Coursework (ICE) Physical Education Entry Level Certificate (ELC) 8930 Summer 2006 Please pass one copy of this booklet to the teacher responsible

More information

A Patient s Guide to the Portal

A Patient s Guide to the Portal A Patient s Guide to the Portal Version 2.0 1 P a g e Contents Health365... 3 What can I do with Health365?... 3 Sign In... 4 How to begin:... 4 Home Page... 6 Select patient and options... 6 Appointments...

More information

Data Sharing Agreement

Data Sharing Agreement 1 Parties This Data Sharing Agreement is made between: 1.1 The Health and Social Care Information Centre ("NHS Digital"), a non-departmental public body established pursuant to section 252 of the Health

More information

EMIS LV. Requesting and Viewing Pathology Tests using the Anglia ICE System

EMIS LV. Requesting and Viewing Pathology Tests using the Anglia ICE System EMIS LV Requesting and Viewing Pathology Tests using the Anglia ICE System Making a request from EMIS (LV) Find the patient within EMIS in the normal manner. Enter Consultation Mode [CM] and then select

More information

The contact list shows all past consults, letters, pathology etc.

The contact list shows all past consults, letters, pathology etc. BASIC CLINICAL OPEN A PATIENT S CLINICAL RECORD Method 1: Select the patient s appointment and click the stethoscope icon Method 2: Go to Open > Patients, enter the patient s name and click OK, and then

More information

Vine Medical Group Patient Registration Form Your Information

Vine Medical Group Patient Registration Form Your Information Your Information Welcome to Vine Medical Group. In order for us to offer you the high standards of clinical care we give to our patients, we ask that you complete this registration form. Before we are

More information

ilab (Laboratory Information System formerly APEX)

ilab (Laboratory Information System formerly APEX) ilab (Laboratory Information System formerly APEX) Table of Contents Logging on to the ilab system from a PC... 2 Logging on to the ilab system from a VT (Not applicable if using a PC)... 2 Changing your

More information

2. The internet is connected and working to your satisfaction, particularly if you are intending to download pathology or use HIC online.

2. The internet is connected and working to your satisfaction, particularly if you are intending to download pathology or use HIC online. Dear Practice Manager/Provider, We will be installing Genie at your practice shortly. Please carefully read and complete the following checklist as soon as possible. It raises issues that you should consider

More information

Accuracy made easy. Improving patient safety through lean workflow. Thermo Scientific Labeling and Tracking Solutions

Accuracy made easy. Improving patient safety through lean workflow. Thermo Scientific Labeling and Tracking Solutions Thermo Scientific Labeling and Tracking Solutions Accuracy made easy Improving patient safety through lean workflow PrintMate AS Cassette Printer SlideMate AS Slide Printer LabWriter Software Primary labeling

More information

KWONG WAH HOSPITAL Data Access Request

KWONG WAH HOSPITAL Data Access Request KWONG WAH HOSPITAL Data Access Request (Except with the consent of the individual concerned, the personal data collected in this Form will be used for the purpose of processing this data access request

More information

Electronic skin cancer reporting tool User guide

Electronic skin cancer reporting tool User guide Electronic skin cancer reporting tool User guide Dr Michael Eden m.eden@nhs.net PUBS 280514 1 V2 Final Contents Introduction... 3 Overview... 3 How it works... 3 Benefits... 3 Getting started... 4 Starting

More information

MILESTONE. MacroVIEW DM. Macro digital imaging for advanced anatomical and forensic investigations

MILESTONE. MacroVIEW DM. Macro digital imaging for advanced anatomical and forensic investigations MILESTONE H E L P I N G P A T I E N T S MacroVIEW DM Macro digital imaging for advanced anatomical and forensic investigations MacroVIEW DM Macro digital im The MacroView DM builds on our over 15 years

More information

PayDetails Description Identity of Employee Basic Pay for Month Numeric value of month

PayDetails Description Identity of Employee Basic Pay for Month Numeric value of month Q 1 M/s Alpha Ltd. maintains database of its employees the details of two tables of which is given below: Employees Identity of Employee Name of Employee PayDetails Identity of Employee Basic Pay for Month

More information

Medical Office System Chapter 5: Setting Up The Practice File

Medical Office System Chapter 5: Setting Up The Practice File Medical Office System Chapter 5: Setting Up The Practice File This chapter discusses customizing your Medical Office System. defining your practice. establishing security for financial functions. First

More information

Intensive Care Unit and Paediatric Intensive Care Unit Essential Toolbar Buttons

Intensive Care Unit and Paediatric Intensive Care Unit Essential Toolbar Buttons Intensive Care Unit and Paediatric Intensive Care Unit Essential Toolbar Buttons The following buttons are situated on the PowerChart Toolbar which are commonly used throughout the Digital Release. Care

More information

STANDARD OPERATING PROCEDURE

STANDARD OPERATING PROCEDURE PATHOLOGY Date of issue: July 2011 Page 1 of 24 MICROBIOLOGY DEPARTMENT STANDARD OPERATING PROCEDURE Document Identification: TP-GEN-ICEPCS Title: Electronic Test Requesting and result viewing using Sunquest

More information

Unit 1 Computer Systems, Programming and Networking Concepts

Unit 1 Computer Systems, Programming and Networking Concepts Surname Other Names Leave blank Centre Number Candidate Number Candidate Signature General Certificate of Education January 2003 Advanced Subsidiary Examination COMPUTING Unit 1 Computer Systems, Programming

More information

The WellComm Report Wizard Guidance and Information

The WellComm Report Wizard Guidance and Information The WellComm Report Wizard Guidance and Information About Testwise Testwise is the powerful online testing platform developed by GL Assessment to host its digital tests. Many of GL Assessment s tests are

More information

The Middle of a MEDITECH Environment

The Middle of a MEDITECH Environment The Middle of a MEDITECH Environment Delivering Value with an Interface Engine About the Author: Jenny Gilberg Jenny Gilberg is an interface analyst for SISU Medical Systems, a consortium of Minnesota

More information

Experience fast on-demand or batch cassette printing in any color

Experience fast on-demand or batch cassette printing in any color Experience fast on-demand or batch cassette printing in any color Tissue-Tek SmartWrite Cassette Printers The SMART system solution for cassette printing Increase efficiency for your laboratory while reducing

More information

SystmOne Mobile Working

SystmOne Mobile Working SystmOne Mobile Working Overview of the Patient Record Functionality Version 2.0 Table of Contents Retrieving a Patient Record Pages 2-3 The Demographics Box Page 4 The Clinical Tree (Vertical Toolbar)

More information

Level 3 Word processing software (WP )

Level 3 Word processing software (WP ) Level 3 Word processing software (WP 7574-329) ITQ (QCF) Assignment guide for Candidates Assignment B www.cityandguilds.com November 2011 Version 2.0 About City & Guilds City & Guilds is the UK s leading

More information

Pan - London Cervical Sample Taker Database

Pan - London Cervical Sample Taker Database Pan - London Cervical Sample Taker Database User Guide for All Sample Takers General Practitioners Doctors working in CASH& GUM clinics All Nurses Qualified in Sample Taking Colposcopists Gynaecologists/Obstetricians

More information

SOFTWARE SERVICES UNIT

SOFTWARE SERVICES UNIT SOFTWARE SERVICES UNIT Welsh Clinical Communication Gateway Version 17.1 Training Notes The purpose of these Notes is to highlight the changes to Welsh Clinical Communication Gateway () that occur in version

More information

Accuracy made easy. Improving patient safety through lean workflow. Thermo Scientific Labelling and Tracking Solutions

Accuracy made easy. Improving patient safety through lean workflow. Thermo Scientific Labelling and Tracking Solutions Thermo Scientific Labelling and Tracking Solutions Accuracy made easy Improving patient safety through lean workflow PrintMate AS Cassette Printer SlideMate AS Slide Printer LabWriter Software Primary

More information

SALISBURY NHS FOUNDATION TRUST. TITLE - Information Strategy Annual Review

SALISBURY NHS FOUNDATION TRUST. TITLE - Information Strategy Annual Review SALISBURY NHS FOUNDATION TRUST PAPER - SFT 1931 TITLE - Information Strategy 2007 2010 Annual Review PURPOSE OF PAPER To inform the Board as to progress made within the Information Systems Strategy during

More information

Registration for Online Services at Drayton Medical Practice

Registration for Online Services at Drayton Medical Practice Registration for Online Services at Drayton Medical Practice This user guide explains the Registration process undertaken by the patient to create an Online User Account, how to maintain it and how to

More information

NHSmail Migration Communications Plan Template

NHSmail Migration Communications Plan Template NHSmail Migration Communications Plan Template June 2018 Version 2 Copyright 2017Health and Social Care Information Centre. The Health and Social Care Information Centre is a non-departmental body created

More information

CHRIS Introduction Guide

CHRIS Introduction Guide 1 Introduction... 3 1.1 The Login screen... 3 1.2 The itrent Home page... 5 1.2.1 Out of Office... 8 1.2.2 Default User Preferences... 9 1.2.3 Bookmarks... 10 1.3 The itrent Screen... 11 The Control Bar...

More information

Official Statistics - Relational Database Management Systems. Official Statistics - Relational Database Management Systems

Official Statistics - Relational Database Management Systems. Official Statistics - Relational Database Management Systems Chapter 1 Database fundamentals 1.1. What is a database? A database is a stored collection of data designed for efficient information retrieval, efficient data maintenance and centralised control of an

More information

APPENDIX 1 7 APPENDIX 2 8 APPENDIX 3 10 APPENDIX 4 11

APPENDIX 1 7 APPENDIX 2 8 APPENDIX 3 10 APPENDIX 4 11 Trust Policy and Procedure Document ref. no: PP(16)276 Form Creation Policy For use in: For use by: For use for: Document owner: Status: Trust wide All staff Management of Form Creation Health Records

More information

University of Minnesota Oral Pathology Laboratory. Introduction to Outreach Features & Instructions for Submitting a Biopsy and Getting Results

University of Minnesota Oral Pathology Laboratory. Introduction to Outreach Features & Instructions for Submitting a Biopsy and Getting Results University of Minnesota Oral Pathology Laboratory Introduction to Outreach Features & Instructions for and Getting Results Welcome! Thank you for choosing the University of Minnesota Oral Pathology Laboratory!

More information

CONTENTS 1) OVERVIEW OF ICAS 2. 2) DATA WAREHOUSING 4 Connecting on to ICAS 4 Logging on to ICAS 5

CONTENTS 1) OVERVIEW OF ICAS 2. 2) DATA WAREHOUSING 4 Connecting on to ICAS 4 Logging on to ICAS 5 CONTENTS 1) OVERVIEW OF ICAS 2 2) DATA WAREHOUSING 4 Connecting on to ICAS 4 Logging on to ICAS 5 3) THE INTEGRATED CAMPUS ADMINISTRATION SYSTEM THE MODULES 7 Applications & Enquiries Module 7 Registration

More information

INFORMATION GOVERNANCE. Caldicott Approval Procedure

INFORMATION GOVERNANCE. Caldicott Approval Procedure NHS TAYSIDE INFORMATION GOVERNANCE Caldicott Approval Procedure Author: Peter McKenzie Review Group: Information Governance Group Review Date: September 2010 Last Update: September 2009 Document : NHST-ISC-CAP

More information

North Carolina State University 2004 Labwrite Project

North Carolina State University 2004 Labwrite Project North Carolina State University 2004 Labwrite Project LabWrite main homepage pg User Tabs How to use LabWrite Resources Special Features Labwrite Stage PreLAB: Getting started Questions to answer before

More information

STANDARDISATION IN DIGITAL PATHOLOGY. Marcial García Rojo Hospital de Jerez. Cádiz. España Vice-President Spanish Society for Health Informatics

STANDARDISATION IN DIGITAL PATHOLOGY. Marcial García Rojo Hospital de Jerez. Cádiz. España Vice-President Spanish Society for Health Informatics STANDARDISATION IN DIGITAL PATHOLOGY Marcial García Rojo Hospital de Jerez. Cádiz. España Vice-President Spanish Society for Health Informatics Multiple image sources Introduction Digital imaging in pathology

More information

Optimization of Clinical Data Analysis

Optimization of Clinical Data Analysis Optimization of Clinical Data Analysis Hugues Gerard, Philippe Richardot, Robin Deransy, Marc-Antoine de Rotrou AR.R.I.S. Applications et Realisations de la Recherche Informatique et Statistique Keywords

More information

Stockbrokers And Financial Advisers Association (SAFAA) Supervisor Guidelines Ver7

Stockbrokers And Financial Advisers Association (SAFAA) Supervisor Guidelines Ver7 Stockbrokers And Financial Advisers Association (SAFAA) Supervisor Guidelines Ver7 These guidelines outline the online examination scenario for the suite of Stockbrokers And Financial Advisers Association

More information

Thank you for using our clinical software Medinet. Together with Practice 2000, Medinet offers a complete solution for Medical Practitioners.

Thank you for using our clinical software Medinet. Together with Practice 2000, Medinet offers a complete solution for Medical Practitioners. Brief Guide Forewords Thank you for using our clinical software Medinet. Together with Practice 2000, Medinet offers a complete solution for Medical Practitioners. Medinet helps GPs to streamline clinical

More information

NCAS SUBJECT ACCESS REQUEST FORM (DATA PROTECTION ACT 1998)

NCAS SUBJECT ACCESS REQUEST FORM (DATA PROTECTION ACT 1998) (Please note that this form should not be used by a patient wishing to access health records about them held by a local healthcare organisation (e.g. hospital, GP surgery, dental practice, pharmacy). The

More information

CDA Messages. Vision 3

CDA Messages. Vision 3 Vision 3 CDA Messages Copyright INPS Ltd 2016 The Bread Factory, 1A Broughton Street, Battersea, London, SW8 3QJ T: +44 (0) 207 501700 F:+44 (0) 207 5017100 W: www.inps.co.uk Copyright Notice 2016 INPS

More information

The system will prompt for Login ID and Password (NB login credentials will be supplied to all staff after Commissioning).

The system will prompt for Login ID and Password (NB login credentials will be supplied to all staff after Commissioning). training handout This training handout is intended to support the learning outcomes for pre-install training for clinical staff. Getting Started / Basic Navigation Medical Record Accessing appointment

More information

PRN (When Required) Medications

PRN (When Required) Medications PRN (When Required) Medications PRN medications are added in the add drug area the same as all other medications. In the Packing menu select PRN. The dose time slots will become marked PRN and only one

More information

The purpose of this newsletter is to highlight the changes to SCI Gateway that occur in version 13.0.

The purpose of this newsletter is to highlight the changes to SCI Gateway that occur in version 13.0. Scottish Care Information SCI Gateway Versiion 13.0 Newslletter The purpose of this newsletter is to highlight the changes to SCI Gateway that occur in version 13.0. The major changes are listed on pages

More information

Billing Unit number* please insert your 16 digit account number as shown on your Summary Statement:

Billing Unit number* please insert your 16 digit account number as shown on your Summary Statement: Amendment Form This Amendment Form should be used for the following types of organisations: Limited companies Other bodies corporate, e.g. limited liability partnerships, charitable incorporated organisations,

More information

Rx Medical. Release Notes

Rx Medical. Release Notes Rx Medical Version 6.6 Build 82 Release Notes These Release Notes contain important information for all Rx Medical users. Please ensure the Release Notes are circulated amongst all your staff. We suggest

More information

Statutory Notifications

Statutory Notifications Registration under the Health and Social Care Act 2008 Statutory Notifications Guidance for registered providers and managers of NHS GP and other primary medical services May 2013 Statutory notifications

More information

Guidance for Completion of Form R Parts A & B

Guidance for Completion of Form R Parts A & B 1 Guidance for Completion of Form R Parts A & B 2 Table of Contents The following document details each field of the Form R giving guidance, examples and required actions. Please read through this document

More information

OsiriX in the Enterprise:

OsiriX in the Enterprise: Page 1 OsiriX in the Enterprise: How Blackbird integrated the premier Open Source DICOM viewer into the distributed radiology practice. By Darryl Garth Vine, M.D. Page 2 Contents Page 3 Executive Summary

More information

Do not place any stamps or stickers on the form, (e.g. those featuring addresses). Do not write over the edges of the boxes.

Do not place any stamps or stickers on the form, (e.g. those featuring addresses). Do not write over the edges of the boxes. Version 1.0 1 Note only individuals who are new to the PVG scheme and not currently a member of the PVG Scheme should complete this application form. Please contact Disclosure Scotland if you would like

More information

Operating Systems. Designed and Presented by Dr. Ayman Elshenawy Elsefy

Operating Systems. Designed and Presented by Dr. Ayman Elshenawy Elsefy Operating Systems Designed and Presented by Dr. Ayman Elshenawy Elsefy Dept. of Systems & Computer Eng.. AL-AZHAR University Website : eaymanelshenawy.wordpress.com Email : eaymanelshenawy@yahoo.com Reference

More information

Synoptic Reporting in Tumor Pathology Advantages of a Web-Based System

Synoptic Reporting in Tumor Pathology Advantages of a Web-Based System Informatics / SYNOPTIC REPORTING IN TUMOR PATHOLOGY Synoptic Reporting in Tumor Pathology Advantages of a Web-Based System Zhenhong Qu, MD, PhD, 1 Shibu Ninan, MS, 1 Ahmed Almosa, MS, 1 K.G. Chang, MD,

More information

Pan - London Cervical Sample Taker Database

Pan - London Cervical Sample Taker Database Pan - London Cervical Sample Taker Database User Guide for All Sample Takers General Practitioners Doctors working in CASH& GUM clinics All Nurses Qualified in Sample Taking Qualified Physician Associates

More information

London Examinations IGCSE

London Examinations IGCSE Centre No. Candidate No. Surname Signature Initial(s) Paper Reference(s) 4385/1F London Examinations IGCSE Information and Communication Technology Paper 1F Foundation Tier Monday 14 May 2007 Morning Time:

More information

CD _. _. 'p ~~M CD, CD~~~~V. C ~'* Co ~~~~~~~~~~~~- CD / X. pd.0 & CD. On 0 CDC _ C _- CD C P O ttic 2 _. OCt CD CD (IQ. q"3. 3 > n)1t.

CD _. _. 'p ~~M CD, CD~~~~V. C ~'* Co ~~~~~~~~~~~~- CD / X. pd.0 & CD. On 0 CDC _ C _- CD C P O ttic 2 _. OCt CD CD (IQ. q3. 3 > n)1t. n 5 L n q"3 +, / X g ( E 4 11 " ') $ n 4 ) w Z$ > _ X ~'* ) i 1 _ /3 L 2 _ L 4 : 5 n W 9 U~~~~~~ 5 T f V ~~~~~~~~~~~~ (Q ' ~~M 3 > n)1 % ~~~~V v,~~ _ + d V)m X LA) z~~11 4 _ N cc ', f 'd 4 5 L L " V +,

More information

School Admissions Guidance: Completing an Online Application Form for Primary and Secondary Schools in Bath & North East

School Admissions Guidance: Completing an Online Application Form for Primary and Secondary Schools in Bath & North East School Admissions Guidance Completing an Online Application Form for Primary and Secondary Schools in Bath & North East Bath and North East - Page 1 of 22 - The place to live, work and visit Online School

More information

Jovanka N. Harrison, Ph.D., Chair For the NAACCR Pathology Data Work Group, and the NAACCR Supplement WG/Task Force

Jovanka N. Harrison, Ph.D., Chair For the NAACCR Pathology Data Work Group, and the NAACCR Supplement WG/Task Force Jovanka N. Harrison, Ph.D., Chair For the NAACCR Pathology Data Work Group, and the NAACCR Supplement WG/Task Force North American Association of Central Cancer Registries Annual Conference Austin, Texas

More information

Pearson's Comprehensive Medical Assisting

Pearson's Comprehensive Medical Assisting Pearson's Comprehensive Medical Assisting Administrative and Clinical Competencies Second Edition CHAPTER CHAPTER 11 Written Communication Lesson 2: Handling Mail in the Medical Office Lesson Objectives

More information

CENTRAL COMMUNICATION INTERFACE. Go for simplicity

CENTRAL COMMUNICATION INTERFACE. Go for simplicity CENTRAL COMMUNICATION INTERFACE Go for simplicity SCENARA.CONNECT For hospital staff Reduced complexity Efficiency Safety Scalability Interop made SCENARA.CONNECT KARL STORZ documentation systems with

More information

GCSE ICT AQA Specification A (Full Course) Summary

GCSE ICT AQA Specification A (Full Course) Summary GCSE ICT AQA Specification A (Full Course) Summary Areas not covered by the short course are shown in red. 9.1 The general Understand that information systems may be 1 structure of information systems

More information

To begin, click Lab Order on the top menu. Select Mater Hospital from the drop down list.

To begin, click Lab Order on the top menu. Select Mater Hospital from the drop down list. HEALTHLINK LAB ORDER USER GUIDE To begin, click Lab Order on the top menu. Select Mater Hospital from the drop down list. You will be presented with the Patient Search page where you can select the correct

More information

SOP-QA-32 V2. Document History Version Description of update Date Effective 1 Change of number for Q-Pulse

SOP-QA-32 V2. Document History Version Description of update Date Effective 1 Change of number for Q-Pulse Title: Effective Date: 1-4-17 Review Date: 1-4-20 Author: Gary Cooper, Named Archivist QA Approval: Richard Cowie, QA Manager Approver: Prof Maggie Cruickshank, R&D Director Approved by QA: N/A Document

More information

What is the Northern Ireland ehealth and Care strategy?

What is the Northern Ireland ehealth and Care strategy? What is the Northern Ireland ehealth and Care strategy? The regional ehealth and Care strategy provides a framework and plan for regional coordination and collaboration to further develop ehealth in Northern

More information

DICOM Conformance Statement. EasyWeb 3.0. Document Number XZR January Copyright Philips Medical Systems Nederland B.V.

DICOM Conformance Statement. EasyWeb 3.0. Document Number XZR January Copyright Philips Medical Systems Nederland B.V. Philips Medical Systems DICOM Conformance Statement EasyWeb 3.0 Document Number XZR 951-000010.00 20 January 2000 Copyright Philips Medical Systems Nederland B.V. 2000 Philips Medical Systems apple PHILIPS

More information

OrderSmart. April 21, Passport Health Communications, Inc. All Rights Reserved

OrderSmart. April 21, Passport Health Communications, Inc. All Rights Reserved OrderSmart P hysician Office userguide April 21, 2014 2014 Passport Health Communications, Inc. All Rights Reserved Table of Contents 1.0 General Information... 7 1.1 Product Overview... 7 1.2 Authorized

More information

Notification to amend firm details

Notification to amend firm details Notes Notification to amend firm details To update firm name and trading names, website address, accounting reference date, auditors, locum, contacts and addresses SUP 15 Annex 3R Notifications under SUP

More information

This section covers printing requirements for the supply of medicinal products and appliances under a patient group directive (Non-FP10).

This section covers printing requirements for the supply of medicinal products and appliances under a patient group directive (Non-FP10). Overprint Specification For: Non-FP10 Supply Forms This section covers printing requirements for the supply of medicinal products and appliances under a patient group directive (Non-FP10). Pharmacy Stamp

More information

April 25, Dear Secretary Sebelius,

April 25, Dear Secretary Sebelius, April 25, 2014 Department of Health and Human Services Office of the National Coordinator for Health Information Technology Attention: 2015 Edition EHR Standards and Certification Criteria Proposed Rule

More information

lao DISASSEMBLER Gould Inc., Design & TesT Sys~ems 4600 Old Ironsides Drive Santa Clara, CA Telephone: (408) Division

lao DISASSEMBLER Gould Inc., Design & TesT Sys~ems 4600 Old Ironsides Drive Santa Clara, CA Telephone: (408) Division Publication Number 07-0308-0 February 984 K 05-0 LOG I C ANAL YlER USERS M\NUAl ADDENDUM lao DISASSEMBLER Gould Inc., Design & TesT Sys~ems 4600 Old Ironsides Drive Santa Clara, CA 95050-279 Telephone:

More information

Vodafone mhealth Solutions Remote Care Services

Vodafone mhealth Solutions Remote Care Services Vodafone mhealth Solutions Remote Care Services Vodafone s mhealth Remote Care Services are helping healthcare providers to improve the quality of patient care as efficiently as possible by providing a

More information

eclinic smsc Installation & User Guide Windows Version 3.3.6

eclinic smsc Installation & User Guide Windows Version 3.3.6 eclinic smsc Windows Version 3.3.6 01.08.08 eclinic Pty Ltd ABN 80 092 450 274 657 Nicholson Street Carlton North Victoria 3054 Australia p +61 3 9381 4567 f +61 3 9381 4657 e helpdesk@eclinic.com.au w

More information

Test requesting in EMIS LV using Sunquest ICE

Test requesting in EMIS LV using Sunquest ICE GP ICE User Guide 1 Placing a request... 3 1.1 Navigating around the test request screen...4 1.1.1 Panels and pages... 4 1.1.2 Selecting a test... 4 1.1.3 Excluded tests... 4 1.1.4 Included tests... 5

More information

STOCKBROKERS AND FINANCIAL ADVISERS ASSOCIATION LIMITED SUPERVISOR GUIDELINES

STOCKBROKERS AND FINANCIAL ADVISERS ASSOCIATION LIMITED SUPERVISOR GUIDELINES STOCKBROKERS AND FINANCIAL ADVISERS ASSOCIATION LIMITED SUPERVISOR GUIDELINES These guidelines outline the online examination scenario for the suite of Stockbrokers And Financial Advisers Association Programs

More information

To update firm name and trading names, website address, accounting reference date, auditors, locum, contacts and addresses.

To update firm name and trading names, website address, accounting reference date, auditors, locum, contacts and addresses. This form may be completed on screen and printed, or printed for completion by hand. NOTE: You cannot save the form if you are completing it using Acrobat Reader. It is therefore advisable to assemble

More information

Introduction. content introduced in 2003, the packs can also be used with other examination boards.

Introduction. content introduced in 2003, the packs can also be used with other examination boards. Introduction effect that the user is actually present in a computer generated GCSE ICT Theory Packs 1 and environment. 2 have been written to comply with the AQA Specification A for GCSE ICT. The material

More information

Connecting Signature Slide Printer to your Laboratory Information System (LIS)

Connecting Signature Slide Printer to your Laboratory Information System (LIS) PRIMERA HEALTHCARE WHITE PAPER Connecting Signature Slide Printer to your Laboratory Information System (LIS) Version 2.4 July 19, 2012 TABLE OF CONTENTS Primera Healthcare White Paper... 1 Introduction...

More information

Auxiliary Storage and File Organisation

Auxiliary Storage and File Organisation Lesson 6 Auxiliary Storage and File Organisation Auxiliary storage refers to storage other than the main storage (e.g. magnetic tape or direct access devices). Other names given to auxilliary storage are

More information

CTAS e-li. Published on e-li (http://eli.ctas.tennessee.edu) April 28, 2018 Electronic Records

CTAS e-li. Published on e-li (http://eli.ctas.tennessee.edu) April 28, 2018 Electronic Records Published on e-li (http://eli.ctas.tennessee.edu) April 28, 2018 Dear Reader: The following document was created from the CTAS electronic library known as e-li. This online library is maintained daily

More information

CPRD Aurum Frequently asked questions (FAQs)

CPRD Aurum Frequently asked questions (FAQs) CPRD Aurum Frequently asked questions (FAQs) Version 2.0 Date: 10 th April 2019 Authors: Helen Booth, Daniel Dedman, Achim Wolf (CPRD, UK) 1 Documentation Control Sheet During the course of the project

More information

Introductory Exercises in Microsoft Access XP

Introductory Exercises in Microsoft Access XP INFORMATION SYSTEMS SERVICES Introductory Exercises in Microsoft Access XP This document contains a series of exercises which give an introduction to the Access relational database program. AUTHOR: Information

More information

Employee User Guide. Human Resources

Employee User Guide. Human Resources Employee User Guide Human Resources Contents Overview... 3 Policies governing usage... 3 Help... 3 Feedback... 3 Employee Self Service (ESS)... 4 Logging in and out... 4 The Home Page... 5 Holidays and

More information

CONSOLIDATED LABORATORY SERVICES

CONSOLIDATED LABORATORY SERVICES TABLE OF CONTENTS 2 INTRODUCTION 3 LOGIN 4 DESKTOP 5 TEST RESULTS 6 Basic Features 12 Advanced Features 16 TEST ORDERS Coming Soon 17 ACTIVITY REPORTS 17 Trace Accession 18 Activity Report 19 ADMINISTRATOR

More information

A RESOLUTION. WHEREAS, METRO is in need of taxicab services to supplement the METROLift

A RESOLUTION. WHEREAS, METRO is in need of taxicab services to supplement the METROLift RESOLUTION NO. 2013-2 AUTHORIZING THE PRESIDENT & CEO TO NEGOTIATE, EXECUTE AND DELIVER CONTRACTS WITH GREATER HOUSTON TRANSPORTATION COMPANY & FIESTA CAB COMPANY TO PROVIDE METROLIFT BACK-UP TAXICAB SERVICES

More information