ACME MEDICAL MANAGEMENT SYSTEM (AMMS)

Size: px
Start display at page:

Download "ACME MEDICAL MANAGEMENT SYSTEM (AMMS)"

Transcription

1 Section ACME MEDICAL MANAGEMENT SYSTEM (AMMS) 1.1 Purpose The main purpose of the AMMS is to facilitate reception desk functions at the Acme Medical Clinic (keeping track of patient and doctor information, scheduling appointments, etc) while allowing clinic staff to quickly search and locate patient information in real time. 1.2 Document Conventions All system features and requirements are listed in the order of decreasing precedence. 1.3 Intended Audience and Reading Suggestions This document is directed towards the designers, test team, project managers, and the ACME staff members who will be utilizing the patient-doctor database on a regular basis. It is highly recommended that the glossary as seen in Appendix A be reviewed prior to reading any section of this SDS. The suggested reading sequence for the ACME staff members is listed below: START 1. Appendix A 2. All subsections of section 1 3. All subsections of section All subsections of section 3.7 END All other sections are optional for the ACME staff reader. 1

2 Section Document Outline 1. Introduction... Error! Bookmark not defined. 2. Document Outline... Error! Bookmark not defined. 3. Document Description... Error! Bookmark not defined. 3.1 Introduction System Overview Design Considerations Assumptions Operating Environment General Constraints Development Methods Architectural Strategies Reuse of existing software components Future plans for extending or enhancing the software User Interface Paradigms Hardware paradigms Software Interfaces Error detection and recovery Communication mechanisms System Architecture UML class Diagram Policies and Tactics Development Testing Maintenance Interfaces Hierarchical Organization Compilation Detailed System Design Login Daily Room Schedule Doctors New Doctor Search Doctor Search Results for Doctors View Doctor Profile Patients New Patient New Patient Emergency Information Medical Insurance Information Search for Patient Search Results for Patients View Patient Profile (General Info Tab) View Patient Profile (Insurance Tab) View Patient Profile (Record Visits Tab) View Patient Profile (Medical History Tab) Scheduling Visitation Information Payment Examination Rooms Appointment Reminder Glossary Bibliography

3 Section 3.1 Introduction AMMS is intended to be used by the reception desk staff and doctors at Acme Medical Clinic to replace the current manual process to manage patient and doctor information. Currently, ACME is plagued by an inefficient and ineffective management system, which often leads to several problems which includes but not limited to the following: 1. Patients missing appointments 2. Scheduling conflicts 3. Examination room conflicts 4. Unforeseen waiting period between schedule appointment time, and the time the patient is seen by the doctor 5. Loss of patient files. 6. Difficulty in finding patient records. The AMMS will improve efficiency by assisting the reception desk staff in performing desk related functions. Similarly, this system will assist the doctors by providing them with a real-time view of their day-to-day appointments. There are other benefits that the AMMS will provide and these are: 1. Avoidance of schedule conflicts 2. Automated schedule reminders 3. Improvement of appointment scheduling, while allowing scheduling of the maximum appointments possible per day 4. Quick search interface for locating patient information such as insurance information, vitals, and scheduled appointments 5. Quick search interface for locating doctor information such as doctor name, doctor specialty, and scheduled appointments 6. Electronic data storage of patient and doctor record. 7. Easy to use graphical user interface 8. Addition, deletion and change functionality for maintaining doctor and patient records 9. Enforcement of a no wait policy 3

4 3.2 System Overview The AMMS serves as a replacement of the manual process employed by the reception desk staff in performing their day-to-day activities. The major functions provided by AMMS are: Data entry and modifications o Patient information o Doctor information o Visit information Doctor information retrieval Automated appointment reminders Appointment rescheduling Appointment scheduling Provision and maintenance of payment information o Methods of Payment Credit Card information Co-pay information Preferred Payment option Cash Retrieval of patient history o Initial visit o Scheduling History o Doctors Seen o Purpose of Visits o Descriptive Diagnosis and prescription o Vitals o Payments o Provision of electronic forms for patience and doctors 4

5 3.3 Design Considerations The design convention or programming standard to be used is the Microsoft Design Guidelines for Class Library Developers Assumptions 1. It is assumed that ACME has user-password management system which will be incorporated into AMMS. 2. It is assumed that ACME has SQL Server installed and running on a server. 3. It is assumed that any user (reception desk staff or doctor) possess some basic computer skills with the ability to type and use a Windows XP or 2000 PC. 4. It is assumed that ACME has an enforced NO WAIT policy 5. It is assumed that an ACME has an existing system which supports SMTP through a Microsoft exchange server Operating Environment AMMS will operate in a windows environment particularly on either a Windows XP or 2000 operating system. The Microsoft.NET framework 2.0 is a required component that must co-exist with the system General Constraints The following constraints were identified for the AMMS. a) The AMMS must work in a windows environment. b) The AMMS must interface with SQL server. c) The AMMS must be implemented in Microsoft.NET framework 2.0. d) The user (reception desk staff or doctor) must be notified when a search request is inappropriate or illegal. e) When a search is performed, the search results should be displayed and organized in tabs with the default tab being the general information tab. f) Each doctor is able to have more than one patient. g) Each doctor must have a unique ID number. h) Each patient must have a unique ID number. i) Each patient must have only one record. j) Any computer on which the AMMS will be running must have the following properties: I. 233 MHz minimum processor clock speed required (single or dual processor system); II. Intel Pentium/Celeron family, or AMD K6/Athlon/Duron family, or compatible processor available III. 128 MB of RAM or higher recommended IV. 10 megabytes of free disk space. 5

6 3.3.4 Development Methods Considerations for this project were first to divide the tasks grouped by the different users; the doctor, the receptionist, the patient, and credit card company. Once the tasks were grouped, data flow was analyzed between groups to see where information was generated to utilized. This lead from event-oriented decomposition to modular decomposition, to data-oriented decomposition, to settle on an objectoriented design. 3.4 Architectural Strategies Reuse of existing software components Patient and Doctor interfaces allows for entering new individuals, updating information, and deleting records those features and file maintenance are part of our Systems Toolbox and utilized as needed. Code that will be shared in AMMS can be seen when a doctor and a receptionist login into the system to search for patient information. They will both see the same screens and obtain the same results Future plans for extending or enhancing the software In the future, sales tax could be added to the application. An or text messaging system could also be interfaced in the future as an option to phone calls User Interface Paradigms The following rules will help design a user friendly, easy to navigate, and productive application. The rules followed by the design team are Shneiderman's 'Eight Golden Rules'. The Eight Golden Rules are: Strive for Consistency Enable frequent users to use shortcuts Offer Informative Feedback Design Dialogues to yield closure Offer simple error handling Permit easy reversal of actions Support internal locus of control Reduce short term memory load An example of these rules can be seen in the use of conventional drop down boxes throughout the application, the background color of all screens, a description (title) used in every screen, buttons to search, tabs to group relevant information in one screen, link back to main menu (present in every screen). 6

7 3.4.4 Hardware paradigms Any computer on which the AMMS will be running must have the following properties: MHz minimum processor clock speed required (single or dual processor system); 2. Intel Pentium/Celeron family, or AMD K6/Athlon/Duron family, or compatible processor available MB of RAM or higher recommended megabytes of free disk space. 5. A 7200 rpm hard drive Software Interfaces 1. The computer must have Windows XP/2000 installed. 2. Will use the.net framework 3. Will use SQL server 4. Will use existing password management system, for single logon to the system Error detection and recovery There should be a timeout for a session after a specified time (set by super-user). Error detection is described in detail in section for Functional Requirements, 5.3 for Security Requirements, 5.4 for Software Quality Requirements, 5.5 for Business Rules Communication mechanisms 1. functionality will be supported by the existing system used by ACME. 2. sent from the AMMS is customizable with patient name, and schedule appointment information. 3. Communication will be handled by contacting patients through automated telephone calls. 3.5 System Architecture The architectural style chosen was an object oriented design. This particular decomposition was chosen because it seemed to fit together with making patient and doctor abstract data types (ADT s). The patient abstract data type will contain all the necessary history, contact, and insurance information. The patient ADT will also interact with the payment ADT that contains all the patient account histories, outstanding patient balances, and outstanding insurance company balances. The doctor ADT will contain all contact information, specialty or field of medicine, and all patient history information from interaction with the patient ADT. 7

8 3.5.1 UML Class Diagram for AMMS Doctor search name doctor ID specialty contact info doctor_search() search_results() view_profile() Patient search name address patient ID contact info patient_search() search_results() view_profile() Payments cash credit card check amount bill_insurance() bill_patient() show_past_due() Doctor name address doctor ID specialty contact info new_doctor() update_doctor_table() Patient name address patient ID insurance info payment info contact info emergency info medical history schedule new_patient() list_of_doctors() update_patient_table() schedule_appointment() Credit Card System Scheduling doctor schedule exam room schedule daily room schedule show_monthly() show_available() open_time() show_daily() update_schedule() make_appointment() Reminders patient doctor type Check_appointment_date_time() generate_reminders() Automated reminder system 8

9 3.6 Polices and Tactics Development All the development is to be done with the.net development library and should use a mysql database to store the pertinent information. The project will be compiled using Microsoft Visual Studio.NET. All code will meet standard coding requirements. These will often link to the same page and will be merged into one cohesive application in the final stage of development Testing The individual pieces shall be tested separately and then once they are joined. Exhaustive testing is unnecessary, but full testing of everyday use should occur. In the event of a bug, a patch will be release within a reasonable time frame Maintenance The server should be backed up on a regular basis. The SQL database will need to remain as compact as the data set allows and old users should be removed. The client computers should be reasonably used and free of viruses and other problems Interfaces All manipulation of data should be done through the provided client web pages. The client and the server should be linked on a standard Ethernet network. All residents may only access the system by the use of a compatible web browser Hierarchical Organization The web pages should be laid out in an organized manner Compilation The system will be compiled using visual studio.net s built in compiler and will be loaded when the end user loads the default web browser. 9

10 3.7 Detailed System Design Login Display Components Username text box this text box is where the user enters their username. Password text box this text box is where the user enters their password. Sign In button - by selecting the user is logged in to the system s main screen. Display Precondition User must enter URL for application Display Post Condition Home screen for application is displayed Error Handling Username/Password will be verified. An error will be displayed and prompt the user to input proper values if username/password are incorrect. 10

11 3.7.2 Daily Room Schedule Display Components Daily tab Displays current tab Scheduling tab Allows users to enter submenu to schedule future appointment. Patient tab Allows users to enter submenu to register, update/search a patient. Doctors tab - Allows users to enter submenu to register, update/search a doctor. Reminders tab Allows users to enter submenu to view list of confirmed appointments. Payments tab Allows users to enter submenu to input information required for patient s payment. Daily schedule table Allows user to view current days scheduled by room and time. Logout link by clicking this link, the user is logged out of the system and is returned to login screen. Display Precondition User must be logged in Display Post Condition Displays sub menu 11

12 Displays login screen if logout button clicked Error Handling Screen will interface actively with scheduling, doctor, and patient database. If error occurs connecting to database, error message will be displayed Doctors Utilizes System Toolbox see Display Components Daily tab Allows users to view current days scheduled by room and time. Scheduling tab Allows users to enter submenu to schedule future appointment. Patient tab Allows users to enter submenu to register, update/search a patient. Doctors tab Displays current tab. Reminders tab Allows users to enter submenu to view list of confirmed appointments. Payments tab Allows users to enter submenu to input information required for patient s payment. New Doctor button - by selecting this button the new doctor screen is displayed Update/Search Doctor button - by selecting this button the update/search doctor screen is displayed. 12

13 Logout link by clicking this link, the user is logged out of the system and is returned to login screen. Display Precondition User must be logged in Doctor tab must have been clicked Display Post Condition Displays sub menu Displays login screen if logout button clicked Error Handling None New Doctor Display Components First Name Text box this box is where the user enters in the Doctor s first name Last Name Text box this box is where the user enters in the Doctor s last name Middle Initial Text box this box is where the user enters in the Doctor s middle initial Cell Phone# text box this text box is where the user enters the Doctor s cell phone number. 13

14 Work Phone# text box this text box is where the user enters the Doctor s work phone number. Pager Phone# text box this text box is where the user enters the Doctor s pager number. Specialty/Field text box this text box is where the user enters the Doctor s specialty Doctor ID# text box this text box is where the user enters the Doctor s ID number. Enter Button by selecting this button a new doctor profile is added to the system Back to main menu link by clicking this link the user will be taken back to the main menu(daily tab). Display Precondition User must be logged in User must click the New Doctor button Display Post Condition Displays New Doctor screen blank. Error Handling If user enters a value that is not consistent with the variable type. An error will display and prompt the user to input the proper value. If user leaves all fields blank, error message will prompt the user to enter required fields If doctor already exists, an error message will be displayed and the user will be taken back to new doctor screen 14

15 Search Doctor Display Components Last Name Text box this box is where the user enters in the Doctor s last name First Name Text box this box is where the user enters in the Doctor s first name Middle Initial Text box this box is where the user enters in the Doctor s middle initial Work Phone# text box this text box is where the user enters the Doctor s work phone number. Cell Phone# text box this text box is where the user enters the Doctor s cell phone number. Pager Phone# text box this text box is where the user enters the Doctor s pager number. Specialty/Field text box this text box is where the user enters the Doctor s specialty Doctor ID# text box this text box is where the user enters the Doctor s ID number. Search Button by selecting this button the system looks for matching profiles Back to main menu link by clicking this link the user will be taken back to the main menu(daily tab). 15

16 Display Precondition User must be logged in User must click the Search for button Display Post Condition Displays Search Results for doctor Error Handling If all fields are blank, system will display error message prompting user to enter at least one field to return search results Search Results for Doctor Display Components Search Result links by clicking a link within the search results (if any), the user will be taken to the screen that displays the doctor s information. Back to main menu link by clicking this link the user will be taken back to the main menu(daily tab). 16

17 Display Precondition User must be logged in User must click the Search button in the Search Doctor screen Display Post Condition Displays Update/View screen for Doctor Error Handling If no search results are returned the user will be shown a message saying nothing was found View Doctor Profile Save Display Components Last Name Label this label is where the Doctor s last name is displayed First Name Label this label is where Doctor s first name is displayed Middle Initial Label this label is where Doctor s middle initial is displayed 17

18 Work Phone# Label this label is where the Doctor s work phone number is displayed Cell Phone# Label this label is where the Doctor s cell phone number is displayed. Pager Phone# Label this label is where the user enters the Doctor s pager number is displayed. Specialty/Field Label this label is where the Doctor s specialty is displayed. Doctor ID# Label this label is where the Doctor s ID number is displayed. Save button by clicking this button any information changed will be updated Back to main menu link by clicking this link the user will be taken back to the main menu(daily tab). Display Precondition User must be logged in User must click the Search link from the search results screen Display Post Condition If back to main menu link is clicked, user will be taken back to main menu. Error Handling N/A 18

19 3.7.4 Patient Utilizes System Toolbox see Display Components Daily tab Allows users to view current days scheduled by room and time. Scheduling tab Allows users to enter submenu to schedule future appointment. Patient tab Displays current tab Doctors tab Allows users to enter submenu to register, update/search a doctor. Reminders tab Allows users to enter submenu to view list of confirmed appointments. Payments tab Allows users to enter submenu to input information required for patient s payment. New Patient button - by selecting this button the new doctor screen is displayed Search for Patient button - by selecting this button the search for patient screen is displayed. Logout link by clicking this link, the user is logged out of the system and is returned to login screen. Display Precondition User must be logged in 19

20 Patient tab must have been clicked Display Post Condition Displays sub menu Displays login screen if logout button clicked Error Handling None 20

21 New Patient Display Components Today s Date label this label will display the current date Social Security Number text box this box will allow users to enter their social security number Last Name Text box this box is where the user enters in the Patient s last name First Name Text box this box is where the user enters in the Patient s first name 21

22 Middle Initial Text box this box is where the user enters in the Patient s middle initial Address Text box this box is where the user enters the Patient s street address City Text box this box is where the user enters in the Patient s City State Text box this box is where the user enters in the Patient s State Zip Code Text box this box is where the user enters in the Patient s Zip Code Date of Birth Text box this box is where the user enters in the Patient s date of birth Home Phone Text box this box is where the user enters in the Patient s home phone number Cell Phone Text box this box is where the user enters in the Patient s cell phone number Work Phone Text box this box is where the user enters in the Patient s work phone number Address text box this box is where the user enters in the Patient s Address Sex text box this box is where the user enters in the Patient Sex Employer text box this is where the user enters in the Patient s Employer Occupation text box this is where the user enters in the Patient s Occupation Patient Id text box this is where the user enters in the Patient s ID Reason for Visit text box this is where the user enters in the Patient s reason for visit Preferred Contact Method text box this is where the user enters in the Patient s preferred contact method Next Button by selecting this button the user will be taken to the next screen for Patient information Back to main menu link by clicking this link the user will be taken back to the main menu(daily tab). Display Precondition User must be logged in User must click the New Patient Button 22

23 Display Post Condition Displays New Patient second screen Error Handling If user enters a value that is not consistent with the variable type. An error will display and prompt the user to input the proper value. If user leaves all fields blank, error message will prompt the user to enter required fields If patient already exists, an error message will be displayed and the user will be taken back to new patient screen New Patient Emergency Information Display Components First Name Text box this box will allow users to enter the Patient s emergency contact s first name Last Name Text box this box will allow users to enter Patient s emergency contact s last name Middle Initial Text box - this box will allow users to enter Patient s emergency contact s middle initial Relationship text box - this box allow users to enter the contact s relationship to Patient 23

24 Telephone # text box this box will display the Contact s phone number. Back Button by selecting this button the user will be taken back to the main Patient Information Screen. Next Button by selecting this button the user will be taken to the next screen for Medical Insurance Information. Back to main menu link by clicking this link the user will be taken back to the main menu(daily tab). Display Precondition User must be logged in User must click the Next Button from main Patient Information Screen User must click the Back Button from the Medical Insurance Information Screen Display Post Condition Displays Medical Insurance Information screen. Displays main Patient Information screen Error Handling If user enters a value that is not consistent with the variable type. An error will display and prompt the user to input the proper value. If user leaves all fields blank, error message will prompt the user to enter required fields 24

25 Medical Insurance Information Display Components First Name Text box this box will allow users to enter the Patient s first name Last Name Text box this box will allow users to enter Patient s last name Middle Initial Text box - this box will allow users to enter Patient s middle initial Relationship to Patient text box - this box allow users to enter the relationship to Patient Insurance Company text box this box allow users to enter the Insurance Company Name Insured s Employer text box this box allow users to enter Insured s Employer s Name Insured s SS# or ID# text box this box allow users to enter Insured s Social Security Number of Identification Number Group # text box this box allow users to enter Insured s Group Number Back Button by selecting this button the user will be taken back to the main Patient Information Screen. 25

26 Enter Button by selecting this button a new Patient profile is added to the system Back to main menu link by clicking this link the user will be taken back to the main menu(daily tab). Display Precondition User must be logged in User must click the Next Button from main Emergency Contact screen Display Post Condition Displays New Patient Information Screen blank Displays main menu (daily menu) Error Handling If user enters a value that is not consistent with the variable type. An error will display and prompt the user to input the proper value. If user leaves all fields blank, error message will prompt the user to enter required fields 26

27 Search for Patient Display Components Last Name Text box this box is where the user enters in the patient s last name First Name Text box this box is where the user enters in the patient s first name Middle Initial Text box this box is where the user enters in the patient s middle initial Work Phone# text box this text box is where the user enters the patient s work phone number. Cell Phone# text box this text box is where the user enters the patient s cell phone number. Home Phone# text box this text box is where the user enters the patient s pager number. Patient ID# text box this text box is where the user enters the patient s ID number. Search Button by selecting this button the system looks for matching profiles 27

28 Back to main menu link by clicking this link the user will be taken back to the main menu(daily tab). Display Precondition User must be logged in User must click the Search for button Display Post Condition Displays Search Results for patient Error Handling If all fields are blank, system will display error message prompting user to enter at least one field to return search results Search Results for Patient Patient Display Components Search Result links by clicking a link within the search results (if any), the user will be taken to the screen that displays the patient s information. Back to main menu link by clicking this link the user will be taken back to the main menu(daily tab). 28

29 Display Precondition User must be logged in User must click the Search button in the Search Patient screen Display Post Condition Displays General Information Tab for Patient. Error Handling If no search results are returned the user will be shown a message saying nothing was found View Patient Profile (General Info Tab) Display Components Date of last visit label this label will display the date of the last visit Social Security Number label this label will display the patient s social security number Sex text box this label will display the patient s Sex Last Name Text box this label will display the patient s last name 29

30 First Name Text box this label will display the patient s first name Middle Initial Text box this label will display the patient s middle initial Address Text box this label will display the patient s street address City Text box this label will display the patient s City State Text box this label will display the patient s State Zip Code Text box this label will display the patient s Zip Code Date of Birth Text box this label will display the patient s date of birth Home Phone Text box this label will display the patient s home phone number Cell Phone Text box this label will display the patient s cell phone number Work Phone Text box this label will display the patient s work phone number Address text box this label will display the patient s Address Employer text box this label will display the patient s Employer Occupation text box this label will display the patient s Occupation Preferred Contact Method text box this label will display the patient s preferred contact method General Info Tab - displays the current tab Insurance Tab - displays the insurance information Record Visits Tab - displays the record of previous visits Medical History Tab - displays the medical history Back to main menu link by clicking this link the user will be taken back to the main menu(daily tab). Display Precondition User must be logged in User must click a link from the patient search results Display Post Condition Displays chosen tab Taken to main menu if main menu link clicked 30

31 Error Handling N/A View Patient Profile (Insurance Tab) Display Components Name of Account Holder label - this label displays the name of the insurance account holder Company Name label this label displays the Insurance Company Name Phone Number label this label displays the Insurance Phone Number Insurance Number label this label displays the Insurance ID Number Last Co-pay/Payment Amount label this label displays the amount of the last payment General Info Tab - displays the patient s general information Insurance Tab - displays the current tab Record Visits Tab - displays the record of previous visits Medical History Tab - displays the medical history Back to main menu link by clicking this link the user will be taken back to the main menu(daily tab). Display Precondition 31

32 User must be logged in User must click the Insurance Tab Display Post Condition Displays different tab Displays main menu (daily menu), if main menu link clicked Error Handling N/A View Patient Profile (Record Visits Tab) Display Components Date of Previous Visit label - this label displays the date of previous patient s visits Filter Search by date text box this box will allow the user to display only a particular month/day date of visits General Info Tab - displays the patient s general information Insurance Tab - displays the insurance tab 32

33 Record Visits Tab - displays the current tab Medical History Tab - displays the medical history Back to main menu link by clicking this link the user will be taken back to the main menu(daily tab). Display Precondition User must be logged in User must click the Insurance Tab Display Post Condition Displays different tab Displays main menu (daily menu), if main menu link clicked Error Handling N/A View Patient Profile (Medical History Tab) 33

34 Display Components Date of Visit label this label displays the date of Patient s visit. Reason for Visit label this label displays the Patient s reason for visit. Doctor s Notes label this label displays the Doctor s notes. Heart Rate label this label displays the Patient s heart rate. Systolic label this label displays the Patient s Systolic. Diastolic label this label displays the Patient s Diastolic Temperature label this label displays the Patient s temperature for the current visit Weight label this label displays the Patient s weight. Height label this label displays the Patient s height. General Info Tab - displays the patient s general information Insurance Tab - displays the patient s insurance information Record Visits Tab - displays the patient s record visits Medical History Tab - displays the current tab Back to main menu link by clicking this link the user will be taken back to the main menu(daily tab). Display Precondition User must be logged in Display Post Condition Displays payment screen Displays login screen if logout button clicked Error Handling Screen will interface actively with scheduling, doctor, and patient database. If error occurs connecting to database, error message will be displayed. 34

35 3.7.5 Scheduling Display Components Daily tab Allows users to view current days scheduled by room and time. Scheduling tab Displays current tab Patient tab Allows users to enter submenu to register, update/search a patient. Doctors tab - Allows users to enter submenu to register, update/search a doctor. Reminders tab Allows users to enter submenu to view list of confirmed appointments. Payments tab Allows users to enter submenu to input information required for patient s payment. Daily schedule table Allows user to view current days scheduled by room and time. Logout link by clicking this link, the user is logged out of the system and is returned to login screen. Display Precondition User must be logged in 35

36 User must click scheduling tab Display Post Condition Scheduling will be adjusted for month Displays login screen if logout button clicked Error Handling Screen will interface actively with scheduling, doctor, and patient database. If error occurs connecting to database, error message will be displayed Visitation Information 36

37 Display Components Date of Visit text box this box allows users to enter date of Patient s visit Reason for Visit text box this is where the user enters in the Patient s reason for visit Doctor s Notes text box this is where the user enters in the Doctor s notes Heart Rate text box this is where the user enters in the Patient s heart rate for the current visit Systolic text box this is where the user enters in the Patient s Systolic for the current visit Diastolic text box this is where the user enters in the Patient s Diastolic for the current visit Temperature text box this is where the user enters in the Patient s temperature for the current visit Weight text box this is where the user enters in the Patient s weight for the current visit Height text box this is where the user enters in the Patient s height for the current visit Next Button by selecting this button the user will be taken to the payment screen. Back to main menu link by clicking this link the user will be taken back to the main menu(daily tab). Display Precondition User must be logged in Display Post Condition Displays payment screen Displays login screen if logout button clicked Error Handling Screen will interface actively with scheduling, doctor, and patient database. If error occurs connecting to database, error message will be displayed. 37

38 Payment Display Components Payment Account Holder text box this is where the user enters in the Payment Account Holder s name, if payment is by credit card Cash/Check check box this is where the user checks if the payment is by Cash or Check. Address text box this is where the user enters in the Address of the Account Holder Credit Card Number text box this is where the user enters in the Credit Card Number, if paid with Credit Card. Amount text box this is where the user enters in the Amount paid by the patient. Back Button by selecting this button the user will be taken back to the visitation information screen Pay Button by selecting this button the user will process the credit card/cash payment and keep a record of the transaction Back to main menu link by clicking this link the user will be taken back to the main menu(daily tab). Display Precondition User must be logged in 38

39 Display Post Condition Displays sub menu Displays login screen if logout button clicked Error Handling Screen will interface actively with scheduling, doctor, and patient database. If error occurs connecting to database, error message will be displayed Examination Rooms Room are maintained through the Scheduling Appointment Reminder Handled by automated system 39

40 Appendix A Glossary Term Database Software Requirements Specification Stakeholder Reception Desk Staff Doctor AMMS SQL Server No wait policy MHz MB RAM SDS SMTP Definition Collection of all the information monitored by this system. A document that completely describes all of the functions of a proposed system and the constraints under which it must operate. For example, this document. Any person with an interest in the project who is not a developer. User of the system. This are principal system user This is the secondary system user Acme Medical Management System Data store for the system. System interfaces with this. This is a policy that ensures that appointment times as honored. Thus, if an appointment is scheduled for 8am, the patient must see the doctor at exactly 8am and no later. MegaHertz MegaByte Random access memory Software requirements specification Simple mail transfer protocol Bibliography References The Case o f The Killer Robot, Richard G. Epstein, West Chester University West Chester, PA, epstein@golden, wcupa, edu, Copyright 1989, 1994 Richard G. Epstein 40

Patient Portal User Guide The Patient s Guide to Using the Portal

Patient Portal User Guide The Patient s Guide to Using the Portal 2014 Patient Portal User Guide The Patient s Guide to Using the Portal Table of Contents: What is the Patient Portal?...3 Enrolling in the Patient Portal.......... 4-19 A. Enrollment Option #1: First-Time

More information

COP 5725 Fall Hospital System Database and Data Interface. Term Project

COP 5725 Fall Hospital System Database and Data Interface. Term Project COP 5725 Fall 2016 Hospital System Database and Data Interface Term Project Due date: Nov. 3, 2016 (THU) Database The database contains most of the information used by the web application. A database is

More information

MERGE PAPERWORK DATA SERVICES. Definitions. 1 Customer ID 2 Customer ID 1 Prac. Name 2 Prac. Name 3 Customer ID 3 Prac. Name

MERGE PAPERWORK DATA SERVICES. Definitions. 1 Customer ID 2 Customer ID 1 Prac. Name 2 Prac. Name 3 Customer ID 3 Prac. Name MERGE PAPERWORK Master Database Practice Information Supplemental Databases Practice Information 1 Customer ID 2 Customer ID 1 Prac. Name 2 Prac. Name 3 Customer ID 3 Prac. Name How many databases are

More information

What is New in MyChart? My Medical Record Health Preferences Settings Appointments and Visits Visits Schedule an Appointment Update Information

What is New in MyChart? My Medical Record Health Preferences Settings Appointments and Visits Visits Schedule an Appointment Update Information What is New in MyChart? On August 26th, we will be upgrading and changing the look and feel to our MyChart patient portal site. We would like to make you aware of a few differences that you will see, when

More information

Personal Information. New Profile Icon

Personal Information. New Profile Icon What is New in MyChart? On December 8th, we will be upgrading our MyChart patient portal site. We would like to make you aware of a few differences that you will see, when you sign into your MyChart account.

More information

Covisint DocSite Enterprise

Covisint DocSite Enterprise Covisint DocSite Enterprise June 2013 Site Administrator User Guide Covisint DocSite Enterprise Site Administrator Guide Compuware-Covisint All rights reserved 2013 SiteAdminGuideDocSite-2013.5-061113

More information

Aerial iexchange Users Guide

Aerial iexchange Users Guide Aerial iexchange Users Guide 2014.1 How to Run the Util\\\ \user Disclaimer How to reach us Copyright Information contained in this document is subject to change without notice and does not present a commitment

More information

etrac Guide Vendor Module to the Version: 2.0 Published: 06/22/2014

etrac Guide Vendor Module to the Version: 2.0 Published: 06/22/2014 etrac Guide to the Vendor Module Version: 2.0 Published: 06/22/2014 Global DMS, 1555 Bustard Road, Suite 300, Lansdale, PA 19446 2014, All Rights Reserved. Table of Contents Minimum System Requirements...

More information

MillinPro+ USER GUIDE. A Complete Web-Based Platform for Managing Medical Bills and Insurance Claims

MillinPro+ USER GUIDE. A Complete Web-Based Platform for Managing Medical Bills and Insurance Claims MillinPro+ A Complete Web-Based Platform for Managing Medical Bills and Insurance Claims MILLIN ASSOCIATES, LLC USER GUIDE 2010-2012 Copyrights Reserved Millin Associates, LLC Document Change History Version

More information

RxWorks Inc 7/28/2010

RxWorks Inc 7/28/2010 RxWorks V4.3 Release Notes RxWorks Inc 7/28/2010 V2 The most Multi-Branch friendly release to date TABLE OF CONTENTS AUTOMATED MESSAGE MANAGER (AMM)... 5 SMS DETAILS FOR MULTI-BRANCH PRACTICES... 5 AUTOMATED

More information

User Manual Appointment System

User Manual Appointment System User Manual Appointment System Page 1 of 17 1.0 TABLE OF CONTENTS TABLE OF CONTENTS... 2 System Overview... 3 Menu Options... 3 Application Access... 3 Patient Registration... 6 Schedule Appointment...

More information

reaches back to the user over port 80. See figure 1.1 for a visual representation of the state approach.

reaches back to the user over port 80. See figure 1.1 for a visual representation of the state approach. Team 4 CMSC 495 February 4 2017 Design Software Design Components The broad overview of the Hygieia system allows users to interface with the program through a third party browsers like Internet Explorer,

More information

Table of Contents Getting Started: Login... 3 Home Page & Basic Navigation... 4 Messaging... 5 Visits My Medical Record...

Table of Contents Getting Started: Login... 3 Home Page & Basic Navigation... 4 Messaging... 5 Visits My Medical Record... Table of Contents Getting Started: Login... 3 Home Page & Basic Navigation... 4 Messaging... 5 Read Messages (Inbox)... 5 Delete Messages... 5 Get Medical Advice... 6 Letters... 7 Request Rx Refill...

More information

VAX VacationAccess Booking Engine

VAX VacationAccess Booking Engine Amadeus Tours - VAX VacationAccess VAX VacationAccess Booking Engine Frequently Asked Questions Intentionally left blank January 2013 VAX VacationAccess Page 2 Version Date: January 29, 2013 Table of Contents

More information

Your mymeritain Personalized Member Website

Your mymeritain Personalized Member Website Your mymeritain Personalized Member Website 2008 Meritain Health, Inc. Last Updated 5.23.2008 Your mymeritain Member Website The mymeritain Member Website offers Members a user-friendly web experience,

More information

WCB Online A User Guide for Tiered Service Providers

WCB Online A User Guide for Tiered Service Providers WCB Online User Guide for Tiered Service Providers WCB Online A User Guide for Tiered Service Providers A Nova Scotians safe and secure from workplace injury Table of Contents WCB Online 1 Profile Creation

More information

Patient Dashboard... 39

Patient Dashboard... 39 OmniMD Help Manual Table of Contents Copyright... 1 About Web help... 2 Audience... 2 Help Conventions... 2 Document Feedback... 2 About OmniMD... 3 Getting Started... 4 Patient... 6 Patient... 6 Add New

More information

MARTIN S POINT HEALTH CARE PROVIDER PORTAL GUIDE

MARTIN S POINT HEALTH CARE PROVIDER PORTAL GUIDE MARTIN S POINT HEALTH CARE PROVIDER PORTAL GUIDE The Martin s Point Provider Portal allows registered users to check the status of claims, pre-authorization requests and benefits/eligibility for US Family

More information

Krames On-Demand Integration Using HL7

Krames On-Demand Integration Using HL7 Krames On-Demand Integration Using HL7 Technical Documentation April, 2011 1 Table of Contents Table of Contents... 2 Krames On-Demand (KOD) HL7 Interfaces... 3 Types of HL7 Interfaces... 3 KOD HL7 Interface

More information

Online Services for Employers User Guide. Mayo Clinic Health Solutions

Online Services for Employers User Guide. Mayo Clinic Health Solutions Online Services for Employers User Guide Mayo Clinic Health Solutions Table of Contents 1.0 Registering and Signing In... 1 Registration... 1 User Definitions... 1 Signing In... 1 2.0 Enrollment... 3 3.0

More information

DXWeb Webenabled Version 4.0 Supplement

DXWeb Webenabled Version 4.0 Supplement DXWeb Webenabled Version 4.0 1 DXWeb Webenabled Version 4.0 Supplement To be used with the DENTRIX 9.0 User s Guide 727 E. Utah Valley Drive, Suite 500 American Fork, UT 84003 Tel. (801) 763-9300 Fax (801)

More information

Provider Secure Portal User Manual

Provider Secure Portal User Manual Provider Secure Portal User Manual Copyright 2011 Centene Corporation. All rights reserved. Operational Training 2 August 2011 Table of Contents Provider Secure Portal... 5 Registration... 6 Provider -

More information

How to use Novixus.com. Step by Step guide to using the new novixus.com website

How to use Novixus.com. Step by Step guide to using the new novixus.com website How to use Novixus.com Step by Step guide to using the new novixus.com website Requirements to use new site Browsers supported: How to Check your version 1. Internet Explorer 9 and higher 2. Chrome Version

More information

University Hospitals UH Personal Health Record User Guide

University Hospitals UH Personal Health Record User Guide This guide will help you learn how to use the University Hospitals Personal Health Record, including requesting appointments, viewing health information, sending secure messages and more. What is the?...

More information

The Patient Communicator (Sending patient messages & reminders)

The Patient Communicator (Sending patient messages & reminders) The Patient Communicator (Sending patient messages & reminders) Overview The Patient Communicator is used for sending messages and reminders to patients. These messages may be automated and sent in batch

More information

Hygieia The Health Management System User Guide and Test Plan

Hygieia The Health Management System User Guide and Test Plan Hygieia The Health Management System User Guide and Test Plan Presented by: Yuji Shimojo, Cara Howie, and Thomas Vera For: Dr. Clarence Huff CMSC 495 Created On: January 26, 2017 Table of Contents Contents

More information

Employee Self Service

Employee Self Service MUNIS Employee Self Service Munis Employee Self Service Administration User Guide Version 9.3 Employee Self Service (ESS) gives current employees the ability to monitor, maintain or estimate some of their

More information

Provider Portal Help Guide

Provider Portal Help Guide Sign up for the Secure Provider Portal Click on the For Providers link on www.ct.gov/husky. 1 You will be directed to the Welcome HUSKY Health Providers page. Select the Provider Login button. HUSKY Health

More information

Meritain Connect User Manual. for Employees. 1 Meritain Connect User Guide for Employees

Meritain Connect User Manual. for Employees. 1 Meritain Connect User Guide for Employees Meritain Connect User Manual for Employees 1 Meritain Connect User Guide for Employees Contents Introduction... 4 Accessing Meritain Connect... 5 Logging In... 5 Forgot Password... 6 Registration Process...

More information

ACH Concentration Service User Guide

ACH Concentration Service User Guide User Guide March 2008 Original Publication 5/2005 Version 9.0 NOTICE We have made every effort to ensure the accuracy of this manual. However, JPMorgan Chase Bank, N.A. and Metavante Corporation make no

More information

Universal Health Record Patient Access v17.3 User Guide

Universal Health Record Patient Access v17.3 User Guide Allscripts FollowMyHealth Universal Health Record Patient Access v17.3 User Guide Copyright 2017 Allscripts Healthcare, LLC and/or its affiliates. All Rights Reserved. www.allscripts.com Published Date:

More information

OpenEMR Users Guide. Based on Version Getting Started Getting to the Login Page. Changing Passwords Main Screen & Navigation.

OpenEMR Users Guide. Based on Version Getting Started Getting to the Login Page. Changing Passwords Main Screen & Navigation. OpenEMR Users Guide Based on Version 3.1.0 Table of Contents Getting Started Getting to the Login Page Logging In Changing Passwords pg 3 pg 3 pg 3 pg 4 Main Screen & Navigation Navigation Traditional

More information

OpenEMR Users Guide. Based on Version 4.0. Getting Started Getting to the Login Page. Changing Passwords Main Screen & Navigation.

OpenEMR Users Guide. Based on Version 4.0. Getting Started Getting to the Login Page. Changing Passwords Main Screen & Navigation. OpenEMR Users Guide Based on Version 4.0 Table of Contents Getting Started Getting to the Login Page Logging In Changing Passwords pg 3 pg 3 pg 3 pg 3 Main Screen & Navigation Navigation Traditional Tree

More information

Registering for the epa Portal One Authorized Entity/Provider per Practice to Complete

Registering for the epa Portal One Authorized Entity/Provider per Practice to Complete epa Training Guide Registering for the epa Portal One Authorized Entity/Provider per Practice to Complete 1. To get started, please visit www.caremark.com/epa and follow the link to register. The CVS

More information

OpenEMR Users Guide. Based on Version 4.0. Getting Started Getting to the Login Page. Changing Passwords Main Screen & Navigation.

OpenEMR Users Guide. Based on Version 4.0. Getting Started Getting to the Login Page. Changing Passwords Main Screen & Navigation. OpenEMR Users Guide Based on Version 4.0 Table of Contents Getting Started Getting to the Login Page Logging In Changing Passwords pg 3 pg 3 pg 3 pg 4 Main Screen & Navigation Navigation Traditional Tree

More information

Event Scheduling System 4.0 User Guide

Event Scheduling System 4.0 User Guide This document was produced by Voloper Creations Inc. 2000 2009 Voloper Creations Inc. All Rights Reserved Brands or product names are trademarks or registered trademarks of their respective holders. The

More information

kwiklook Core Operating Manual

kwiklook Core Operating Manual kwiklook Core Operating Manual Table Of Contents Orientation Tutorial for Operators...1 kwiklook Basics for Operators...1 Starting a kwiklook Session...2 kwiklook Log On...3 Introducing the kwiklook workspace...4

More information

NextMD Patient Portal Guide

NextMD Patient Portal Guide Internet Security Below are some suggestions to help keep your health information secure: Use a password that is easy to remember but difficult for others to guess. Some web browsers will ask you to save

More information

Wellington City Council Funding Portal Quick Reference Guide for Applicants

Wellington City Council Funding Portal Quick Reference Guide for Applicants Wellington City Council Funding Portal Quick Reference Guide for Applicants Before you Begin The intended audience for this document is a new user who is registering for the first time or for a returning

More information

MYCHART FREQUENTLY ASKED QUESTIONS

MYCHART FREQUENTLY ASKED QUESTIONS What is mychart?... 2 Is there a fee to use mychart?... 2 What do I need to use mychart?... 2 Who else can see my mychart information?... 2 Is my information in mychart secure?... 2 Is mychart offered

More information

VIRGINIA S INSTANT CRIMINAL BACKGROUND CHECK SYSTEM FOR FIREARMS DEALERS

VIRGINIA S INSTANT CRIMINAL BACKGROUND CHECK SYSTEM FOR FIREARMS DEALERS VCheck User Guide VIRGINIA S INSTANT CRIMINAL BACKGROUND CHECK SYSTEM FOR FIREARMS DEALERS Introduction to VCheck VCheck is Virginia s instant criminal background check program available via the Internet

More information

Care360 Labs & Meds Frequently Asked Questions

Care360 Labs & Meds Frequently Asked Questions Frequently Asked Questions Table of Contents Application Interface... 4 How can I see more of on my computer?... 4 What does the message You have multiple sessions open mean?... 4 Why do I receive the

More information

Quanum elabs and Quanum EHR Basic Functionality Frequently Asked Questions

Quanum elabs and Quanum EHR Basic Functionality Frequently Asked Questions Quanum elabs and Quanum EHR Basic Functionality Frequently Asked Questions Table of Contents Application Interface... 4 How can I optimize the view of the system on my computer?... 4 What does the message

More information

User Manual. phr.mtbc.com

User Manual. phr.mtbc.com User Manual Table of Contents Introduction Appointments Appointment History Claims History CCDA Report Demographics Health History Lab Reports Online Payment Secure Messages Health Recommendation Patient

More information

ecashiering Table Of Contents

ecashiering Table Of Contents ecashiering Table Of Contents Overview... 2 Logging in to ecashiering... 2 ecashiering Tab... 3 Payment Management... 3 Digital Delivery Account Managment... 7 Patient Pay Online Tab... 8 Account Summary...

More information

ANY INTERNET azcu2.atsusers.com The system works best with Internet Explorer or Firefox. azcu2.atsusers.com DO NOT azcu2.atsusers.

ANY INTERNET azcu2.atsusers.com The system works best with Internet Explorer or Firefox. azcu2.atsusers.com DO NOT azcu2.atsusers. I. Introduction a. This system is what we use at ACU to collect and secure important medical and emergency contact information on our student-athletes. We utilize this system to keep track of emergency

More information

etrac Client Module Guide

etrac Client Module Guide etrac Client Module Guide Version: 2.0 Publish Date: 05/06/2014 Global DMS, 1555 Bustard Road, Suite 300, Lansdale, PA 19446 2014, All Rights Reserved. Table of Contents etrac System Requirements... 4

More information

Health Link Frequently Asked Questions

Health Link Frequently Asked Questions Health Link Frequently Asked Questions We hope that you find our Health Link patient portal easy to use. If you have any questions or comments, please contact Health Link Support by email at healthlink@hvhs.org

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

L.A. Care Connect Account Creation User Guide for L.A. Care Covered

L.A. Care Connect Account Creation User Guide for L.A. Care Covered L.A. Care Connect Account Creation User Guide for L.A. Care Covered Step 1: Create an L.A. Care Connect account by opening any web browser and typing in members.lacare.org in the URL address bar. Step

More information

OptRight WageView Employee Reference Guide

OptRight WageView Employee Reference Guide Business Payroll Services Payroll University OptRight WageView Employee Reference Guide WageView is a secure website in which you can access, view, and print your pay statements, W-2s, and 1099s. This

More information

Agent Online Application User Guide

Agent Online Application User Guide Agent Online Application User Guide Contact Phone Numbers: Agent Licensing & Supplies: 1-800-321-0102 Marketing Support: 1-866-644-3988 Claims, Underwriting, Cust. Svc., & Commissions: 1-855-664-5517 02/20/2015

More information

etrans 5.0/5.1 for Dentrix

etrans 5.0/5.1 for Dentrix etrans 5.0/5.1 for Dentrix USER S GUIDE For customers in Puerto Rico www.dentrix.com/eservices 1-800-734-5561 2 PUBLICATION DATE October 2011 COPYRIGHT 1987-2011 Henry Schein, Inc. Dentrix, Henry Schein,

More information

Reference Services Web Portal

Reference Services Web Portal User Guide What is the Reference Services Web Portal? T he Reference Services Web Portal is a way for all of the Marshfield Labs Reference clients to access and maintain their client information remotely

More information

MyHealthRecord. Patient User Guide. Top of Page Table of Contents

MyHealthRecord. Patient User Guide. Top of Page Table of Contents MyHealthRecord Patient User Guide 1 P a g e Information Technology Department MyHealthRecord Patient User Guide Copyright 2014 Family Health Centers of San Diego, Inc. 823 Gateway Center Way San Diego,

More information

LUDLUM MODEL 2350(-1) Windows Interface Version LMI Part #: October 2015

LUDLUM MODEL 2350(-1) Windows Interface Version LMI Part #: October 2015 LUDLUM MODEL 2350(-1) Windows Interface Version 1.2.2 LMI Part #: 1370-065 LUDLUM MODEL 2350(-1) Windows Interface Version 1.2.2 LMI Part #: 1370-065 TABLE OF CONTENTS 1. Description of Purpose...2 2.

More information

Trustedchoice.com Agency Profile User Manual

Trustedchoice.com Agency Profile User Manual Trustedchoice.com Agency Profile User Manual User Manual Page 1 1. Getting started 1.1 Accessing the website Step Action 1 Open the internet browser on your computer. 2 Type http://www.projectcapmarketing.com

More information

Patient Registration

Patient Registration Patient Registration Adding a Patient Adding a new patient through SequelMed can be accomplished through just a few steps: Defining the Patient Attaching a Plan (optional) Attaching Documents (optional)

More information

Provider Portal User Guide

Provider Portal User Guide Provider Portal User Guide Updated: January 1, 2019 Table of Contents Introduction... 1 How to Register for the Provider Portal... 3 Manage Your Profile... 5 User Administration... 8 Authorizations & Referrals...

More information

2016 Autosoft, Inc. All rights reserved.

2016 Autosoft, Inc. All rights reserved. Copyright 2016 Autosoft, Inc. All rights reserved. The information in this document is subject to change without notice. No part of this document may be reproduced, stored in a retrieval system, or transmitted

More information

NextGen Patient Portal. User Guide.

NextGen Patient Portal. User Guide. 2.4.3 NextGen Patient Portal User Guide www.nextgen.com Copyright 2014-2017 QSI Management, LLC. All Rights Reserved. The registered trademarks listed at http://www.qsii.com/legal_notices.shtml are the

More information

Joining SportsWareOnLine

Joining SportsWareOnLine Dear New Jefferson College Athlete: Prior to participating on an athletic team for Jefferson College, athletes must provide your current address, emergency contacts, insurance, medical alert and health

More information

eenroll Member User Guide

eenroll Member User Guide eenroll Member User Guide 2013 Table of Contents Accessing the System... 3 Logging In - HR Administrator Provides Credentials... 3 Resetting Your Account... 4 Changing Your Password... 7 Making First-

More information

ClinCard Reference Guide: Site Coordinator

ClinCard Reference Guide: Site Coordinator ClinCard Reference Guide: Site Coordinator How to Login to www.clincard.com 1) Login to www.clincard.com. 2) Enter your login and password as provided to you. Keep in mind that your login and password

More information

Frequently Asked Questions

Frequently Asked Questions Frequently Asked Questions What is FollowMyHealth? FollowMyHealth offers you personalized and secure online access to important information in your electronic medical record. FollowMyHealth is available

More information

Administrative Manual

Administrative Manual Administrative Manual HealthLink Tools/Resources Chapter 10 1831 Chestnut Street St. Louis, MO 63103-2225 www.healthlink.com 1-877-284-0101 HealthLink Tools/Resources On-line Tools ProviderInfoSource HealthLink

More information

QuickClaim Guide Group Health Cooperative of Eau Claire GHC13009

QuickClaim Guide Group Health Cooperative of Eau Claire GHC13009 QuickClaim Guide Administered by: Group Health Cooperative of Eau Claire 2503 North Hillcrest Parkway Altoona, WI 54720 715.552.4300 or 888.203.7770 group-health.com 2013 Group Health Cooperative of Eau

More information

Colorado Access Provider Portal Guide

Colorado Access Provider Portal Guide Colorado Access Provider Portal Guide coaccess.com 1 CONTENTS INTRODUCTION... 3 SYSTEM REQUIREMENTS... 3 NEW PROVIDER REGISTRATION... 4 Provider Information... 4 New Provider Registration... 4 New Registration...

More information

Session 1 Navigation & Administration

Session 1 Navigation & Administration Session 1 Navigation & Administration Agenda Launching ACPM from AC AC/ACPM Integration Basic Navigation Tips in ACPM Administration Overview ACPM Help Launching ACPM from AC Amazing Charts Practice Management

More information

Georgia Low THC Oil Registry Physicians Request for Card Users Guide

Georgia Low THC Oil Registry Physicians Request for Card   Users Guide Georgia Low THC Oil Registry Physicians Request for Card http://phip.ga.gov/gathcrequest.html Users Guide Page of 3 Table of Contents Physicians Registration... 3 Login Screen... 3 Registration Screen...

More information

Mayo Clinic CareLink Quick Start Guide. May 5, 2018

Mayo Clinic CareLink Quick Start Guide. May 5, 2018 Mayo Clinic CareLink Quick Start Guide May 5, 2018 1 Mayo Clinic CareLink Quick Start Guide Getting Started... 3 Help and contact information... 4 Browser, system, and connection requirements... 4 How

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

WCB Online User Guide for Workers

WCB Online User Guide for Workers WCB Online User Guide for Workers WCB Online User Guide for WORKERS A Nova Scotians safe and secure from workplace injury Table of Contents WCB Online 1 Create an Account Profile 1 WCB Online Navigation

More information

isystoc User Guide

isystoc User Guide isystoc 4.3.1 User Guide Table of Contents isystoc 4.3.1 User Guide...4 About isystoc...5 Logging into isystoc...6 Automatic Logout / Refresh...7 isystoc Icons...8 Using isystoc...9 Search Options...10

More information

AlwaysAssist User Guide Vision Care Provider Portal Page 0

AlwaysAssist User Guide Vision Care Provider Portal Page 0 AlwaysAssist User Guide Vision Care Provider Portal Page 0 AlwaysAssist User Guide Vision Care Provider Portal Table of Contents Entering the Site... 2 Provider Login... 2 Password Change... 3 Password

More information

How to Use Your EV Connect Account

How to Use Your EV Connect Account How to Use Your EV Connect Account Accessing the EV Connect Network To access the EV Connect network, point your web browser to http://network.evconnect.com. This brings you to the account login page.

More information

Online Accounts Access Tour. Effective October 1, 2015

Online Accounts Access Tour. Effective October 1, 2015 Xenia Utility Billing Online Account Access Tour Page 1 Online Accounts Access Tour Effective October 1, 2015 To access your Xenia Utility account(s) online, you must create a User ID for your utility

More information

If you have any questions about this service please call our Patient Portal Hotline at (574)

If you have any questions about this service please call our Patient Portal Hotline at (574) Dear valued patient of Allied Physicians of Michiana, We re excited to announce that we have expanded the services provided by our practice and are now providing our patients with access to an online patient

More information

Download complete member portal details here (include PDF sent the other day) ALL WORKS MEMBERS WILL NEED TO SET UP A NEW PORTAL ACCOUNT

Download complete member portal details here (include PDF sent the other day) ALL WORKS MEMBERS WILL NEED TO SET UP A NEW PORTAL ACCOUNT MEMBER PORTAL CLICK HERE TO ENTER THE MEMBER PORTAL https://theworkshealthclub.thememberspot.com/account/login NEW CLUB AUTOMATION PORTAL IS HERE Through the portal s dashboard tab you will be able to:

More information

2015 AmeriHealth New Jersey Sales Sentinel User Guide FLEXIBLE BENEFITS PLANS

2015 AmeriHealth New Jersey Sales Sentinel User Guide FLEXIBLE BENEFITS PLANS 2015 AmeriHealth New Jersey Sales Sentinel User Guide FLEXIBLE BENEFITS PLANS SALES SENTINEL LINK The Sales Sentinel link below should be used for Flexible Benefits Plans affiliated selling agents and

More information

Online Backup Client User Manual

Online Backup Client User Manual Software version 3.21 For Mac OS X September 2010 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or

More information

Patient Portal: Policies and Procedures & User Reference Guide Patient Portal Version 5.8.1

Patient Portal: Policies and Procedures & User Reference Guide Patient Portal Version 5.8.1 Patient Portal: Policies and Procedures & User Reference Guide Patient Portal Version 5.8.1 1 Welcome to the Patient Portal We would like to welcome you to the Patient Portal. The Patient Portal is a secure

More information

Welcome to e-people 4. What is e-people? 4. Accessing e-people 4. AHS Accounts 4

Welcome to e-people 4. What is e-people? 4. Accessing e-people 4. AHS  Accounts 4 User Guide Table of contents Welcome to e-people 4 What is e-people? 4 Accessing e-people 4 AHS Email Accounts 4 How to Access Your AHS Email Account Externally 4 AHS Outlook Web Access Log Off 5 How to

More information

User Documentation for School Activity Funds Accounting

User Documentation for School Activity Funds Accounting User Documentation for School Activity Funds Accounting By: Applied Business Services, Inc. 800 S. Frederick Avenue, Suite 101 Gaithersburg, MD 20877 1-800-451-7447 ext. 130 www.appliedbusinessservices.com

More information

PORTA ONE. PORTA Billing100. Customer Self-Care Interface.

PORTA ONE. PORTA Billing100. Customer Self-Care Interface. PORTA ONE PORTA Billing100 Customer Self-Care Interface www.portaone.com Customer Care Interface Copyright notice & disclaimers Copyright (c) 2001-2006 PortaOne, Inc. All rights reserved. PortaBilling100,

More information

User Guide. Version 3.0. Revision Date: 11-Feb Esoterix, Inc., All Rights Reserved

User Guide. Version 3.0. Revision Date: 11-Feb Esoterix, Inc., All Rights Reserved User Guide Version 3.0 Revision Date: 11-Feb-04 2004 Esoterix, Inc., All Rights Reserved Contact Us Contact us if you have any questions or comments. Client Services and Technical Support Phone Fax (800)

More information

Is your website secure? Yes. When the browser opens a secured website, https can be seen in the URL instead of just http.

Is your website secure? Yes. When the browser opens a secured website, https can be seen in the URL instead of just http. Patient FAQ Placing Orders Is your website secure? Yes. When the browser opens a secured website, https can be seen in the URL instead of just http. How do I place an order? 1. Select your brand from the

More information

icare s Provider Portal Guide

icare s Provider Portal Guide icare s Provider Portal Guide 2 CONTENTS New Provider Registration... 4 New Registration...5 Login Page 9 Sign In 9 Forget Your Password...10 Provider Home Page 12 Track Request 12 Contact Us.. 14 Provider

More information

SECURE PROVIDER WEB PORTAL AND ELECTRONIC CLAIMS SUBMISSION SERVICE

SECURE PROVIDER WEB PORTAL AND ELECTRONIC CLAIMS SUBMISSION SERVICE SECURE PROVIDER WEB PORTAL AND ELECTRONIC CLAIMS SUBMISSION SERVICE SECURE PROVIDER WEB PORTAL AND ELECTRONIC CLAIMS SUBMISSION SERVICE INTRODUCTION...3 COMPUTER AND INTERNET REQUIREMENTS...4 REGISTERING

More information

Drake Zero User s Manual

Drake Zero User s Manual .. Drake Zero User s Manual Tax Year 2017 Support.DrakeSoftware.com (828) 524-8020 Tax Year 2017 i Copyright The 2017 Drake Zero User s Manual, Drake Tax Software, and any other related materials are copyrighted

More information

Depending on the modules that have been implemented by your company, you may have access to the following information:

Depending on the modules that have been implemented by your company, you may have access to the following information: Employee Self Service (ESS) User Quick Reference Guide Introduction to ESS The Employee Self Service (ESS) Application is a web-based application that gives you access to information from your employee

More information

April Communication Manager User s Guide

April Communication Manager User s Guide April 2012 Communication Manager User s Guide Table of Contents Overview... 4 Navigating ecentral... 5 WebSync Wizard... 8 WebSync Setup... 8 Login Setup... 9 Schedule WebSync... 9 WebSync Options... 9

More information

Staff/Professional Tools in KaleidaCare Solutions

Staff/Professional Tools in KaleidaCare Solutions Staff/Professional Tools in KaleidaCare Solutions 2008 1 of 26 Table of Contents Introduction... 4 Staff/Professionals Tools... 4 Adding A Staff/Professional... 5 Staff/Professional Name... 5 SSN/SIN...

More information

Campus Portal User Guide

Campus Portal User Guide Campus Portal User Guide www.ccsoh.us If you have more than one child enrolled in the Columbus City Schools, there will be only one username and password for all children. Please note that assignments

More information

NCID-NG User Guide Version 1.3

NCID-NG User Guide Version 1.3 NCID-NG User Guide Version 1.3 Office of Information Technology Services December 20, 2010 2 Procuring an Account The method for procuring an account is different for a state/local government employee

More information

Training Guide for Arkansas Practitioners and Pharmacists. Arkansas Department of Health Prescription Monitoring Program

Training Guide for Arkansas Practitioners and Pharmacists. Arkansas Department of Health Prescription Monitoring Program Training Guide for Arkansas Practitioners and Pharmacists Arkansas Department of Health Prescription Monitoring Program May 2013 Contents Contents 1 Document Overview... 1 Purpose and Contents... 1 2 System

More information

Departmental Reports: Posted 48 Hours After the Report Reaches a Signed Status

Departmental Reports: Posted 48 Hours After the Report Reaches a Signed Status What is My Noyes HEALTH? My Noyes Health offers patients personalized and secure online access to portions of your Noyes HEALTH record. My Noyes HEALTH enables you to securely use the Internet to help

More information

11.0 Random Assignment

11.0 Random Assignment 11.0 Random Assignment Random assignment is the procedure by which enrolled youth will be assigned to either the Usual Services or ASPIRE Services groups. Random assignment is performed in a computer system,

More information

Staff User Guide PowerSchool Student Information System

Staff User Guide PowerSchool Student Information System PowerSchool Student Information System Document Properties Copyright Owner 2005 Apple Computer, Inc. All rights reserved. This document is the property of Apple Computer, Inc. and is for reference only.

More information

Access Online. Navigation Basics. User Guide. Version 2.2 Cardholder and Program Administrator

Access Online. Navigation Basics. User Guide. Version 2.2 Cardholder and Program Administrator Access Online Navigation Basics User Guide Version 2.2 Cardholder and Program Administrator Contents Introduction... 1 Access Online Overview... 2 How We Gather and Manage Transaction Data in Access Online...

More information