Provision for Sending SMS for the Various Vaccinations Himanshi Varshney 1, Kajol Gupta 2

Size: px
Start display at page:

Download "Provision for Sending SMS for the Various Vaccinations Himanshi Varshney 1, Kajol Gupta 2"

Transcription

1 Provision for Sending SMS for the Various Vaccinations Himanshi Varshney 1, Kajol Gupta 2 1,2 UG, Department of Computer Science and Engineering Raj Kumar Goel Institute of Technology for Women, Ghaziabad (India) ABSTRACT Vaccine alert is a model for children s vaccination reminder using short message service (SMS). The model consists of data flow in reminding parents of their children s vaccination schedule. Earlier practice on vaccination schedule was via written appointment. Nevertheless, such approaches may not be sufficient as parents may forget due to a tight work schedule and daily routines. The concept, Vaccine Alert, was evaluated by allowing selected respondents to use the developed prototype. The various results show that respondents do agree on the benefit of having reminder sent via SMS. KEYWORDS: Vaccine alert, SMS messages, Ozeki NG SMS Gateway, Database Server, HTTP, Ozeki Java SMS SDK INTRODUCTION Vaccination is the administration of antigenic material (a vaccine) to stimulate an individual s immune system to develop adaptive immunity to a pathogen. Vaccines can prevent or ameliorate morbidity from infection. The effectiveness of vaccination has been widely studied and verified; for example the influenza vaccine, the HPV vaccine, and the chicken pox vaccine. Vaccination is the most effective method of preventing infectious diseases; widespread immunity due to vaccination is largely responsible for the worldwide eradication of smallpox and the restriction of diseases such as polio, measles, and tetanus from much of the world. NEED OF VACCINE ALERT Vaccines are one of the best public health tools available to achieve the Millennium Development Goal (MDG) of decreasing child mortality. A major reason for poor childhood vaccine coverage is the lack of awareness among parents regarding the need for immunization in children, and the importance of completing the entire series of vaccines. This result in significant drop-out between vaccines delivered at birth and late in the infancy period. New innovative methods involving technologies are needed to be employed to increase the vaccine coverage. Short message service (SMS) as a reminder tool can be extremely effective in health care settings at public health care. Customized SMS messages can be designed as personally tailored messages with text and/or pictures, and used to remind and inquire parents regarding vaccination for their children according to EPI schedule. A major advantage of SMS as a communication tool is that automated messages can be generated at specific times through computer programming, hence minimizing the need for valuable human resources. Messages are delivered directly with minimal intrusiveness, while maintaining privacy of the household members. Most importantly, the cost of sending automated SMS messages is extremely low, once the original infrastructure is established. Variable N=399 Willing to receive SMS reminders about child s immunization Yes 308(77) No 91(23) Preferred language for reminder SMS (n=308) 123

2 English 288(94) My native language 14(5) Pidgin 6(2) Preferred time of SMS reminder (n=308) On the day of the appointment 8(3) A day before appointment 183(60) A week before appointment 99(32) Other 18(6) Prefers reminders to SMS (n=308) 108(35) Prefers telephonic reminders to SMS (n=308) 206(67) Perception of benefit expected to be received via SMS/telephonic/ reminder (n=399) Very beneficial 274(64) Somewhat beneficial 31(8) Not beneficial 4(1) Indifferent 7(2) Non response 83(21) Willing to pay for SMS/telephonic reminder 213(53) Median amount for SMS reminder N10.00 (6 cents) Median amount for telephonic reminder N20.00 (12 cents) Table 1: Respondent s attitudes towards reminders for vaccination appointments Variables Total N=399 Willing n=308 Not Willing n=91 p-value Ages (100) 10(40) 14(60) < (100) 226(80) 56(20) 35 and above 93(100) 72(78) 21(22) Highest level of education No formal 7(100) 0(0) 7(100) <0.001 Primary 14(100) 9(64) 5(36) Secondary 127(100) 87(69) 40(31) Post-secondary 251(100) 212(84) 39(16) Marital status Never married 8(100) 2(25) 6(75) <0.001 Currently married 384(100) 304(86) 80(21) Separated/divorced/widowed 7(100) 2(29) 5(71) Owns a mobile phone Yes 389(100) 301(77) 88(23) No 10(100) 7(70) 3(30) Has a personal computer Yes 179(100) 147(82) 32(18) No 220(100) 161(73) 59(27) Currently uses the Internet Yes 263(100) 210(80) 53(20) No 136(100) 98(72) 38(28) Has a address 124

3 Yes 258(100) 207(80) 51(20) No 141(100) 101(72) 40(28) Ever received SMS reminder Yes 207(100) 158(76) 49(24) No 192(100) 150(78) 42(22) Ever missed clinic appointment Yes 74(100) 62(84) 12(16) No 325(100) 246(76) 79(24) Table 2: Factors associated with willingness to receive SMS reminders about child immunization PROPOSED STRATEGY Admin System Query vaccination details Select the vaccination Display vaccination details Query to send the SMS/ Send SMS/ STIMULUS/ RESPONSES SEQUENCES Stimulus: Admin requests for vaccination details. Response: System displays the vaccination details. Stimulus: Admin requests to send the SMS/ by selecting the scheduled vaccination. Response: System sends the SMS/ for the selected vaccination. SMS Gateway: Ozeki NG- SMS gateway is used to send SMS. OZEKI NG- SMS Gateway is a high capacity SMS server that is very popular among ISV/OEM, enterprise and community users. It is recognized for its superior ease of use, performance and reliability. The software can be used to send and receive SMS text messages and various other message types, such as WAP push messages, operator logos and ring tones. The sending is done through IP SMS connections or GSM Modem connections. 125

4 OZEKI NG- SMS Gateway makes it possible to connect any application implementing business logic directly to the Short Message Service Center (SMSC) of a GSM service provider. This connection is possible through the Internet or through a leased line. INTERFACES AVAILABLE FOR SMS MESSANGING DATABASE SERVER One of the best methods to add SMS functionality to a JAVA application is to setup a configuration where we can send and receive text messages using database server. Data tables inside the database server can be shared between our application and SMS gateway. Thus our Java application can easily send messages by simple creating and reading database records. To implement this method two database tables should be created inside the database server. One will be used for storing incoming messages and the other will be used for storing outgoing messages. If the OZEKI NG- SMS gateway receives a message, it will store it into a database table called ozekimessagein. Similarly if OZEKI NG- SMS gateway sends a SMS from Java, it should store it in a table called ozekimessageout. The OZEKI NG- SMS gateway software will read the ozekimessageout database table periodically and if it finds a new record in it, it will send it as an SMS message. Figure 1: How to send and receive SMS message from Java with the help of database server HTTP REQUESTS HTTP is the simplest method to send data from one application to another. Java has native method calls to submit HTTP requests. This means that HTTP is a good choice to send SMS text messages to mobile phones. If we operate an SMS gateway in our network, for example the OZEKI NG- SMS Gateway, we can pass SMS messages to it using HTTP GET or HTTP POST method calls. Figure 2: How to send and receive SMS messages form Java through HTTP To be able to communicate with mobile phones, we need to pass our messages to the HTTP gateway. The HTTP Gateway has a built in web server, that provides an HTTP SMS API, that makes it possible 126

5 to submit messages. After our messages arrive to the SMS Gateway, they will be sent to the mobile network through one of the channels we have configured previously. For example, the SMS gateway can operate a mobile phone attached to the PC with a data cable and can use this mobile phone to send and receive our messages. If we want to receive SMS message in our JAVA application, we have two options. We can periodically download incoming messages from the built in web server of the OZEKI NG- SMS Gateway, or we can setup a HTTP Client user that will post incoming messages to our JAVA application through HTTP. OZEKI JAVA SMS SDK Ozeki has released the Java SMS SDK. This SDK communicates with the OZEKI NG- SMS Gateway, through a TCP/IP socket. The socket is always connected, which makes it possible, to receive SMS delivery reports and incoming SMS messages instantly. The Ozeki Java SMS SDK implements the TCP/IP communication and provides methods calls and events we can implement to achieve the desired functionality. Using this SDK very fast and efficient SMS solution can be developed. CONCUSION Figure 3: Ozeki Java SMS SDK, communicates through a TCP/IP socket To be able to use this SDK, we need to install OZEKI NG- SMS Gateway into our corporate network. OZEKI NG- SMS gateway will be responsible for attaching our system to the mobile network. It will receive the TCP/IP connections from the JAVA SMS SDK and it will send and receive SMS messages through the configured communication method. For example, we can send/receive SMS messages through a GSM phone attached to our computer with a phone to PC data cable, or we can send/receive SMS messages through the Internet if we have subscribed for an internet SMS service. Everyone had better access to mobile phones and internet and the majority were willing to receive SMS reminders for their child s vaccination schedule. Future intervention strategies should explore payment mechanisms for SMS reminders as almost half of the respondents were unwilling to bear the cost. REFRENCES

Benefits of using Ozeki NG SMS Gateway for IP SMS connections

Benefits of using Ozeki NG SMS Gateway for IP SMS connections Benefits of using Ozeki NG SMS Gateway for IP SMS connections / Introduction to Ozeki NG SMS Gateway / Author: Mr. János Aranyász Mr. Gyula Rábai Creation date: 24. 10. 2006. Last updated: 14. 06. 2007.

More information

A SAS/AF Application for Linking Demographic & Laboratory Data For Participants in Clinical & Epidemiologic Research Studies

A SAS/AF Application for Linking Demographic & Laboratory Data For Participants in Clinical & Epidemiologic Research Studies Paper 208 A SAS/AF Application for Linking Demographic & Laboratory Data For Participants in Clinical & Epidemiologic Research Studies Authors: Emily A. Mixon; Karen B. Fowler, University of Alabama at

More information

LinQ2. Secure Messaging Gateway. Direct Communication to your customers

LinQ2. Secure Messaging Gateway. Direct Communication to your customers LinQ2 Secure Messaging Gateway Direct Communication to your customers LINQ2 Secure Messaging Gateway LinQ2 is a robust SMS/MMS based messaging gateway application which provides mobile secure notification

More information

Completing incoming UC Immunization and Tuberculosis (TB) Risk screening requirements

Completing incoming UC Immunization and Tuberculosis (TB) Risk screening requirements Completing incoming UC Immunization and Tuberculosis (TB) Risk screening requirements Contents Completing incoming UC Immunization and Tuberculosis (TB) Risk screening requirements... 1 Introduction...

More information

Complete QOF invites via SMS, reducing time and postage costs whilst also reducing administration time

Complete QOF invites via SMS, reducing time and postage costs whilst also reducing administration time What is MJog? Integrated with your clinical system, MJog will replace any current messaging services you use and provide automated reminders and Friends & Family Test messages (FFT) Complete QOF invites

More information

Comreg Study. (August 2016) For more information, contact Oisin Byrne, Managing Director Phone:

Comreg Study. (August 2016) For more information, contact Oisin Byrne, Managing Director Phone: Comreg Study (August 2016) For more information, contact Oisin Byrne, Managing Director Phone: 01-214-3741 Email: oisin.byrne@ireach.ie Comreg Study EXECUTIVE SUMMARY Phone service 99% of the respondents

More information

The Mobile World Introduction

The Mobile World Introduction TABLE OF CONTENTS The Mobile World 3 SMS for Courier & Postal Services - Introduction 7 SMS for Courier & Postal Services Outbound SMS 8 SMS for Courier & Postal Services Inbound SMS 10 Technical Overview

More information

How to choose an SMS Provider (SMS Gateway Provider, SMS Reseller, SMS Broker)?

How to choose an SMS Provider (SMS Gateway Provider, SMS Reseller, SMS Broker)? How to choose an SMS Provider (SMS Gateway Provider, SMS Reseller, SMS Broker)? Introduction This article discusses 13 questions that you should ask yourself when choosing an SMS service provider. An SMS

More information

These materials are Copyright NCHAM (National Center for Hearing Assessment and Management). All rights reserved. They may be reproduced

These materials are Copyright NCHAM (National Center for Hearing Assessment and Management). All rights reserved. They may be reproduced These materials are Copyright 2015-2017 NCHAM (National Center for Hearing Assessment and Management). All rights reserved. They may be reproduced and distributed in print or electronic format at no cost

More information

EasySMS Office Introduction and Installation

EasySMS Office Introduction and Installation EasySMS Office Introduction and Installation Preface This material and the copyright herein is the exclusive property of Dev Squared Designs (Pty) Ltd. It may not be used, reproduced by nor passed on to

More information

USSD. The USSD Evolution. txtnation provides carrier grade USSD API and interface options. Global Reach, Personal Touch.

USSD. The USSD Evolution. txtnation provides carrier grade USSD API and interface options. Global Reach, Personal Touch. USSD. The USSD Evolution txtnation provides carrier grade USSD API and interface options, enabling the delivery of high throughput messaging and session based menu systems. txtnation provides carrier grade

More information

Evaluation of Communication with Vaccines For Children (VFC) Providers

Evaluation of  Communication with Vaccines For Children (VFC) Providers Evaluation of Email Communication with Vaccines For Children (VFC) Providers Maryland Department of Health and Mental Hygiene Prevention and Health Promotion Administration Kurt Seetoo, MPH Sr. Epidemiologist

More information

OptumRx Quick Reference Guide

OptumRx Quick Reference Guide OptumRx Our website, www.optumrx.com is a fast, safe and secure way to manage your prescription benefits online. This quick reference guide illustrates how to use the tools and features that will help

More information

Apply for Benefits & Manage My Account

Apply for Benefits & Manage My Account Apply for Benefits & Manage My Account Electronic Document Upload Electronic document uploading provides additional capabilities for managing benefits online. Applicants and clients who have a PEAK account

More information

GRASP Designer User Manual Draft Version - English Edition

GRASP Designer User Manual Draft Version - English Edition GRASP Designer User Manual Draft Version - English Edition GRASP Designer version 0.0.32 July, 2015 By Information and Knowledge Management Unit, UN WFP Palestine Country Office July, 2015 1 GRASP Designer

More information

Create an Account or Login. Event Registration Instructions

Create an Account or Login. Event Registration Instructions Create an Account or Login If you have already created an account, you will enter your e- mail and password. Then, select the Login button to continue. If you have not yet created an account, please fill

More information

SURVEY ON BROADBAND AND WIRELESS USAGE IN SINGAPORE 2002

SURVEY ON BROADBAND AND WIRELESS USAGE IN SINGAPORE 2002 SURVEY ON BROADBAND AND WIRELESS USAGE IN SINGAPORE 2002 Summary Report Page 1 of 23 Infocomm Development Authority of Singapore 8 Temasek Boulevard #14-00 Suntec Tower Three Singapore 038988 Republic

More information

Privacy Policy. Last Updated: August 2017

Privacy Policy. Last Updated: August 2017 Privacy Policy Last Updated: August 2017 Here at ConsenSys we know how much you value privacy, and we realize that you care about what happens to the information you provide to us through our website,

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

New user introduction to Attend

New user introduction to Attend 1 New user introduction to Attend 1. Sign up to Attend... 2 2. First Steps Create a Course... 2 3. Sharing your course... 4 4. Viewing the course participants... 5 5. Create a new member of Staff... 6

More information

CUSTOMER COMMUNICATION PREFERENCES SURVEY. Conducted by Harris Interactive Sponsored by Varolii Corp.

CUSTOMER COMMUNICATION PREFERENCES SURVEY. Conducted by Harris Interactive Sponsored by Varolii Corp. CUSTOMER COMMUNICATION PREFERENCES SURVEY Conducted by Harris Interactive Sponsored by Varolii Corp. CONTENTS Executive Summary... 2 The Survey Data: Communication Fatigue Breeds Contempt... 4 The Great

More information

Overview of the UAE Approach to Tackling Non Communicable Diseases

Overview of the UAE Approach to Tackling Non Communicable Diseases Overview of the UAE Approach to Tackling Non Communicable Diseases Dr. Salah Elbadawi, MD. MSc. Director, national Diabetes Control program Advisor, Health Policies Affairs Connected Living Summit - mhealth

More information

SMS Based Household Appliance Monitoring and Controlling System Ms.Shraddha G.Rajkuwar*1, Ms.Rupali G.Bhople*2, Ms.Pooja V.

SMS Based Household Appliance Monitoring and Controlling System Ms.Shraddha G.Rajkuwar*1, Ms.Rupali G.Bhople*2, Ms.Pooja V. SMS Based Household Appliance Monitoring and Controlling System Ms.Shraddha G.Rajkuwar*1, Ms.Rupali G.Bhople*2, Ms.Pooja V.Kendale*3 *1 (student of IT Department, AEC, Chikhli (MS), INDIA) *2 (student

More information

Measuring the Information Society Report

Measuring the Information Society Report Measuring the Information Society Report Addis Ababa, Ethiopia 24 November 2014 Andrew Rugege ITU Regional Director for Africa International Telecommunication Union MIS Report 2014 statistical highlights

More information

How to Route Internet Traffic between A Mobile Application and IoT Device?

How to Route Internet Traffic between A Mobile Application and IoT Device? Whitepaper How to Route Internet Traffic between A Mobile Application and IoT Device? Website: www.mobodexter.com www.paasmer.co 1 Table of Contents 1. Introduction 3 2. Approach: 1 Uses AWS IoT Setup

More information

Graphs and Tables of the Results

Graphs and Tables of the Results Graphs and Tables of the Results [ Survey Home ] [ 5th Survey Home ] [ Graphs ] [ Bulleted Lists ] [ Datasets ] Table of Contents We ve got a ton of graphs (over 200) presented in as consistent manner

More information

RelayHealth Legal Notices

RelayHealth Legal Notices Page 1 of 7 RelayHealth Legal Notices PRIVACY POLICY Revised August 2010 This policy only applies to those RelayHealth services for which you also must accept RelayHealth s Terms of Use. RelayHealth respects

More information

Voice Response System for Parents of Hostel Students

Voice Response System for Parents of Hostel Students Voice Response System for Parents of Hostel Students I.J.Vinila Assistant Professor, Dept. of ECE., Dr.Sivanthi Aditanar College of Engineering, Tiruchendur, India ABSTRACT: Nowadays every institute needs

More information

Viber Service Messaging

Viber Service Messaging Viber Service Messaging GMS Viber s official partner since 2015 Global market overview Every company today struggles to reach their customers. With more and more communication channels streaming thousands

More information

ThinAir Server Platform White Paper June 2000

ThinAir Server Platform White Paper June 2000 ThinAir Server Platform White Paper June 2000 ThinAirApps, Inc. 1999, 2000. All Rights Reserved Copyright Copyright 1999, 2000 ThinAirApps, Inc. all rights reserved. Neither this publication nor any part

More information

THOMSON REUTERS TICK HISTORY RELEASE 12.1 BEST PRACTICES AND LIMITS DOCUMENT VERSION 1.0

THOMSON REUTERS TICK HISTORY RELEASE 12.1 BEST PRACTICES AND LIMITS DOCUMENT VERSION 1.0 THOMSON REUTERS TICK HISTORY RELEASE 12.1 BEST PRACTICES AND LIMITS DOCUMENT VERSION 1.0 Issued July 2018 Thomson Reuters 2018. All Rights Reserved. Thomson Reuters disclaims any and all liability arising

More information

Taking Mobile Banking Corporate

Taking Mobile Banking Corporate Universal Banking Solution System Integration Consulting Business Process Outsourcing It s ironic that in a world that has gone mobile, corporate treasurers and CFOs are still tethered to their desks because

More information

Maintenance Enforcement Program

Maintenance Enforcement Program Maintenance Enforcement Program 2013 Client Survey Results 1 The Alberta Maintenance Enforcement Program (MEP) is committed to providing excellent service to its clients. MEP s client base is made up of

More information

How To Use Mobile Phones For Delivering Tailored Behavior Change Messages. Navi Sandhu HSCI 825

How To Use Mobile Phones For Delivering Tailored Behavior Change Messages. Navi Sandhu HSCI 825 + How To Use Mobile Phones For Delivering Tailored Behavior Change Messages Navi Sandhu HSCI 825 + Objectives Introduction to mobile technology and mobile health Review mobile health initiatives and delivery

More information

Vision Services Application Overview

Vision Services Application Overview The Georgia Lions Lighthouse is a 501(c)3 nonprofit. Our mission is to provide vision and hearing services through education, detection, prevention, and treatment. The services we provide are made possible

More information

mhealth and HIV Cees Hesp, Director mhealth Research Labs, PharmAccess Foundation 10th INTEREST workshop Cameroon, 6 May 2016

mhealth and HIV Cees Hesp, Director mhealth Research Labs, PharmAccess Foundation 10th INTEREST workshop Cameroon, 6 May 2016 mhealth and HIV Cees Hesp, Director mhealth Research Labs, PharmAccess Foundation 10th INTEREST workshop Cameroon, 6 May 2016 mhealth: the promise 1 2 Deliver services everywhere Low cost Present unique

More information

UNIVERSITY OF NAIROBI SCHOOL OF COMPUTING AND INFORMATICS TOWARDS EFFECTIVE SMS MODEL FOR HEALTHCARE INFORMATION DISSEMINATION ELIZABETH MWASHUMA

UNIVERSITY OF NAIROBI SCHOOL OF COMPUTING AND INFORMATICS TOWARDS EFFECTIVE SMS MODEL FOR HEALTHCARE INFORMATION DISSEMINATION ELIZABETH MWASHUMA UNIVERSITY OF NAIROBI SCHOOL OF COMPUTING AND INFORMATICS TOWARDS EFFECTIVE SMS MODEL FOR HEALTHCARE INFORMATION DISSEMINATION By ELIZABETH MWASHUMA P51/73542/2014 Supervisor Dr. Christopher Chepken June

More information

AdvOSS AAA: Architecture, Call flows and implementing emerging business use cases

AdvOSS AAA: Architecture, Call flows and implementing emerging business use cases AdvOSS AAA: Architecture, Call flows and implementing emerging business use cases An AdvOSS White Paper Latest version of this white paper can always be found at http://advoss.com/resources/whitepapers/advoss-aaa-workflows.pdf

More information

Providing Continuous Customer Service since 1976

Providing Continuous Customer Service since 1976 1-800-344-6470 www.asuperiorcallcenter.com Providing Continuous Customer Service since 1976 Thank you for your interest! Please review our services, we have highlighted the applicable services for you

More information

Mobile Financial Services. Ms. Vinod Kotwal Advisor (F&EA), TRAI

Mobile Financial Services. Ms. Vinod Kotwal Advisor (F&EA), TRAI Mobile Financial Services Ms. Vinod Kotwal Advisor (F&EA), TRAI Mobile Financial Services Ms. Vinod Kotwal Advisor (F&EA), TRAI 20 th September 2016 25 countries account for 73% of the world s unbanked

More information

My Instant Communicator for iphone

My Instant Communicator for iphone My Instant Communicator for iphone Alcatel-Lucent OmniTouch 8600 OmniPCX Office Rich Communication Edition User guide 8AL90849USAAed05 02 / 2014 CONTENTS 1. Overview... 3 2. Benefits... 3 3. Connectivity...

More information

AGENCY VIEW USER MANUAL

AGENCY VIEW USER MANUAL OKLAHOMA HEALTH CARE AUTHORITY HEALTH CARE AUTHORITY ONLINE ENROLLMENT AGENCY VIEW USER MANUAL Table of Contents 1.0 Introduction and Purpose of Manual... 3 2.0 Logging on to the System... 4 2.1 Logon...

More information

Centers for Disease Control and Prevention National Center for Health Statistics

Centers for Disease Control and Prevention National Center for Health Statistics Wireless-Only and Wireless-Mostly Households: A growing challenge for telephone surveys Stephen Blumberg sblumberg@cdc.gov Julian Luke jluke@cdc.gov Centers for Disease Control and Prevention National

More information

a) BSNL b) Airtel c) Reliance d) Aircel e) Vodafone f) Tata Docomo g) Others, Specify

a) BSNL b) Airtel c) Reliance d) Aircel e) Vodafone f) Tata Docomo g) Others, Specify A STUDY ON USER S LEVEL OF SATISFACTION WITH MOBILE PHONE SERVICE PROVIDERS WITH SPECIAL REFERENCE TO TIRUPPUR DISTRICT Questionnaire I. Personal Information: Name Age Sex: Educational Qualification Occupation

More information

2017/2018 ABA Sessions

2017/2018 ABA Sessions Our evidenced-based ABA programs are individualized for children ages 2-10 years old who have a developmental disability and need some extra 1:1 assistance in a variety of skill areas. Individualized programming

More information

Internet Architecture

Internet Architecture Internet Architecture Lecture 3: How TCP/IP Works & Understanding the Internet's Software Structure Assistant Teacher Samraa Adnan Al-Asadi 1 How TCP/IP Works Packet: A piece of data broken down into pieces

More information

Application for Residential Services

Application for Residential Services Check for which program applying for: Macleigh/VA Beach Kilmarnock/Rappahanock Colonial Beach/Colonial Beach Lynchburg Garber Morris/Varina Bonnie/Stuarts Draft Saratoga/Winchester Tate/Ashland Mary Beth

More information

Completing incoming UC Immunization and Tuberculosis (TB) Risk screening requirements

Completing incoming UC Immunization and Tuberculosis (TB) Risk screening requirements Completing incoming UC Immunization and Tuberculosis (TB) Risk screening requirements Target Audience: This document is to assist incoming students to UCSC for Fall 2018 or later who have not completed

More information

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

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

Multi-Way Reminder System: A Solution towards Ubiquitous and Effective Communication

Multi-Way Reminder System: A Solution towards Ubiquitous and Effective Communication Multi-Way Reminder System: A Solution towards Ubiquitous and Effective Communication TAN SHIANG-YEN, MOHD AZAM OSMAN, GENEVIE LOO SHIM SHENG HOOI, ABDULLAH ZAWAWI TALIB School of Computer Science Universiti

More information

09. Mobile Commerce. Contents. Mobile Computing and Commerce

09. Mobile Commerce. Contents. Mobile Computing and Commerce 09. (Contents) Mobile Commerce Contents 09. Mobile Commerce Mobile Computing and Commerce Code: 166140-01+02 Course: Electronic Commerce Period: Autumn 2011 Professor: Sangwon Lee, Ph.D. 1 09. (Contents)

More information

Privacy Policy Website Visitors Personally Identifiable Information Gathering of Personally-Identifying Information

Privacy Policy Website Visitors Personally Identifiable Information Gathering of Personally-Identifying Information Privacy Policy This website is a part of Covey Communications Corp. s network of websites. Our company has created this privacy policy to inform you of our commitment to the privacy of our users, and our

More information

Wired 2 Wireless Technology Solutions API Help Document Copyright Introduction. 2. Parameter list

Wired 2 Wireless Technology Solutions API Help Document Copyright Introduction. 2. Parameter list 1. Introduction Wired 2 Wireless Technology Solutions offers an easy way to send and receive messages via its built-in webserver using HTTP. In this document you will learn how to send SMS, check delivery

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

Introduction to mhealth

Introduction to mhealth Introduction to mhealth mhealth for Sexual Reproductive and Maternal Health Madhu Deshmukh Director - MNCH, mhealth, and Gender mhealth Alliance mdeshmukh@mhealthalliance.org February 15, 2013 Definition

More information

BONAM VENKATA CHALAMAYYA INSTITUTE OF TECHNOLOGY & SCIENCE

BONAM VENKATA CHALAMAYYA INSTITUTE OF TECHNOLOGY & SCIENCE BONAM VENKATA CHALAMAYYA INSTITUTE OF TECHNOLOGY & SCIENCE TITLE: AUTOMATIC POWER METER READING SYSTEM USING GSM NETWORK By B.VENKATA PAVAN SRIKANTH Regd No : 08H41A0411 Under the Guidance of Mr. S.TATA

More information

THE SOCIO-ECONOMIC IMPACT OF MOBILE HEALTH MALAYSIA & THAILAND

THE SOCIO-ECONOMIC IMPACT OF MOBILE HEALTH MALAYSIA & THAILAND THE SOCIO-ECONOMIC IMPACT OF MOBILE HEALTH MALAYSIA & THAILAND Mobile communications will revolutionise the way that healthcare is delivered in Malaysia and Thailand. The empowerment mobile technology

More information

INSIDE. Symantec AntiVirus for Microsoft Internet Security and Acceleration (ISA) Server. Enhanced virus protection for Web and SMTP traffic

INSIDE. Symantec AntiVirus for Microsoft Internet Security and Acceleration (ISA) Server. Enhanced virus protection for Web and SMTP traffic Virus Protection & Content Filtering TECHNOLOGY BRIEF Symantec AntiVirus for Microsoft Internet Security and Acceleration (ISA) Server Enhanced virus protection for Web and SMTP traffic INSIDE The need

More information

QUESTIONNAIRE. 1. Gender : Male [ ] Female [ ] 2. Age (in years) : [ ] [ ] 60 and above [ ]

QUESTIONNAIRE. 1. Gender : Male [ ] Female [ ] 2. Age (in years) : [ ] [ ] 60 and above [ ] QUESTIONNAIRE A. PERSONAL INFORMATION Name : 1. Gender : Male [ ] Female [ ] 2. Age (in years) : 20 40 [ ] 40 60 [ ] 60 and above [ ] 3. Marital Status : Married [ ] : Unmarried [ ] 4. Educational Qualification

More information

Free sms api for c. Free sms api for c.zip

Free sms api for c. Free sms api for c.zip Free sms api for c Free sms api for c.zip There are many free SMS service like way2sms, 160by2 etc. But you will not get Secure, Scalable & Powerful Bulk SMS APIs Easily integrate any application and start

More information

The data quality trends report

The data quality trends report Report The 2015 email data quality trends report How organizations today are managing and using email Table of contents: Summary...1 Research methodology...1 Key findings...2 Email collection and database

More information

Business ebanking Mail and Alerts

Business ebanking Mail and Alerts Business ebanking Mail and Alerts Business ebanking Mail and Alerts 11.01.2016 Page 1 of 16 This guide provides instructions for sending electronic mail to and receiving electronic mail from Chemical Bank.

More information

SmarTone Features and Service Charges

SmarTone Features and Service Charges SmarTone Features and s Voice/ Data Related Call Management Unconditional Call Forwarding $28 Busy Call Forwarding $28 No Answer Call Forwarding $28 Unreachable Call Forwarding $28 Caller Number Display

More information

Emerging Trends and Opportunities

Emerging Trends and Opportunities Emerging Trends and Opportunities Smart Homes & End User Engagement track_ TEF. Digital 06.11.2014 Emilio Martinez Head of Utilities & Building Energy Efficiency Telefonica M2M Global Unit 1 Wireless Connectivity

More information

HTTP API-HELP DOCUMENT

HTTP API-HELP DOCUMENT PARAMETER DEFINITION S.NO PARAMETER PARAMETER VALUE PARAMETER NAME DESCRIPTION 1 User Test User User name of the 2 Passwd Test Password Password of the account 3 Sid DEMO Sender id Destination Mobile 4

More information

Sponsor Website: User Guide

Sponsor Website: User Guide Sponsor Website: User Guide Welcome to My Food Program! This User Guide will help you navigate your way through the My Food Program website. You will find a section for each area of the website which includes

More information

Onboarding Process External Candidates

Onboarding Process External Candidates Onboarding Process External Candidates Reference Guide Overview Once you receive and accept the offer, you are required to provide personal information as part of the pre-hire process. After you complete

More information

Newsletters We may send out newsletters to our customers providing them with articles and information which we believe may be of interest to you.

Newsletters We may send out newsletters to our customers providing them with articles and information which we believe may be of interest to you. BODY INTERACT PRIVACY POLICY Body Interact and its owner company Take The Wind, Lda. recognizes that our customers value their right to privacy and want to be assured that any personal information that

More information

Notification Tool User Guide

Notification Tool User Guide BEFORE YOU START... 1 Why Should I Use Notification Tool? 1 Hardware Requirements 2 Software Requirements 2 Network Requirements 2 How Do I Access the Notification Tool? 2 How Can I Get Support When Using

More information

Privacy statement of Study Association Industria

Privacy statement of Study Association Industria Privacy statement of Study Association Industria Agreed upon by the board of Study Association Industria, Eindhoven, 2018 We respect your privacy and only will use your personal data for the goals which

More information

Digital Telephone User Guide

Digital Telephone User Guide Digital Telephone User Guide 1 P. O. Box 99, Conway, AR 72033 (501) 450-6000 ConwayCorp.com * Feature Access Codes *11 Broadworks Anywhere (pulling call to alternate phone) *62 Access Voicemail *72 Call

More information

Residential Voice SUBSCRIBER GUIDE

Residential Voice SUBSCRIBER GUIDE Residential Voice SUBSCRIBER GUIDE RESIDENTIAL VOICE SUBSCRIBER GUIDE TABLE OF CONTENTS Table of Contents Getting Started... 6 Requirements... 6 First Login... 6 Features Management... 0 Basic Features...

More information

Microsoft Architecting Microsoft Azure Solutions.

Microsoft Architecting Microsoft Azure Solutions. Microsoft 70-535 Architecting Microsoft Azure Solutions https://killexams.com/pass4sure/exam-detail/70-535 QUESTION: 106 Your organization has developed and deployed several Azure App Service Web and API

More information

Pacific Region Infrastructure Facility

Pacific Region Infrastructure Facility Pacific Region Infrastructure Facility PRIF is a multi-development partner coordination, research and technical assistance facility which supports infrastructure development in the Pacific. 1 Launched

More information

Offer Description : Cisco Webex

Offer Description : Cisco Webex : Cisco Webex This (the ) describes Cisco Webex (the Cloud Service ). Your subscription is governed by this and the Cisco Universal Cloud Agreement located at www.cisco.com/go/uca (or similar terms existing

More information

Mobile Connect for USA Mobility Pagers for BlackBerry

Mobile Connect for USA Mobility Pagers for BlackBerry User Guide for Mobile Connect for USA Mobility Pagers for BlackBerry Amcom Software, Inc. Copyright Mobile Connect 3.5 Document Version 1.0 Last Saved Date: September 19, 2013 Copyright 2003-2013 Amcom

More information

Table of Contents Hampton Park Secondary College - Compass 2015 Created by Chris Knowles, Christina D Sylva and Steve Ware

Table of Contents Hampton Park Secondary College - Compass 2015 Created by Chris Knowles, Christina D Sylva and Steve Ware - 1 - Table of Contents - 2 - What is Compass? 3 Accessing and logging into Compass 4 Parent Initial login 5 Compass Homepage 6 Student Profile 7 Student Schedule 8 Student Events 9 Providing consent and

More information

TIA. Privacy Policy and Cookie Policy 5/25/18

TIA. Privacy Policy and Cookie Policy 5/25/18 TIA Privacy Policy and Cookie Policy 5/25/18 Background: TIA understands that your privacy is important to you and that you care about how your information is used and shared online. We respect and value

More information

eclass App Start Up Guide

eclass App Start Up Guide eclass App Start Up Guide Fortress Hill Methodist Secondary School 目錄 What is eclass App?...2 How to download eclass App...2 How to login to eclass App...3 How to open eclass App menu...4 What are the

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

Frequently Asked Questions FOR REGISTRANTS

Frequently Asked Questions FOR REGISTRANTS CampDoc.com Frequently Asked Questions FOR REGISTRANTS We are committed to providing you excellent support! Our team has put together this support document with a collection of answers to the most common

More information

Table of Contents. This guide explores:... 4 This guide assumes:... 4 INTRODUCTION... 5 GETTING STARTED... 8

Table of Contents. This guide explores:... 4 This guide assumes:... 4 INTRODUCTION... 5 GETTING STARTED... 8 1 Table of Contents This guide explores:... 4 This guide assumes:... 4 INTRODUCTION... 5 WHAT IS IPTV?... 5 WHAT IS A SET-TOP BOX?... 5 IMPORTANT INFORMATION ABOUT YOUR SET-TOP BOX... 6 GETTING STARTED...

More information

USER GUIDE. TABLE OF CONTENTS What is My Westmed? Registering for My Westmed

USER GUIDE. TABLE OF CONTENTS What is My Westmed? Registering for My Westmed USER GUIDE TABLE OF CONTENTS What is My Westmed? Registering for My Westmed Adult Patient 8+ Family Access for Adult Patient 8+ Family Access for Pediatric Adolescent Patient -7 Family Access for a Child

More information

mhealth in Developing Countries: understanding the contributions in sub-saharan Africa

mhealth in Developing Countries: understanding the contributions in sub-saharan Africa mhealth in Developing Countries: understanding the contributions in sub-saharan Africa Daniel Opoku, MScPH 1 World Bank: countries in the bottom 2/3 of gross national income (GNI) GNI measures are useful

More information

Way2mint SMS Mobile Terminate (MT) API Guide for HTTP / HTTPS

Way2mint SMS Mobile Terminate (MT) API Guide for HTTP / HTTPS Way2mint SMS Mobile Terminate (MT) API Guide for HTTP / HTTPS 10/1/2009 Way2mint Services Prepared by: Mohit Jaswani Copyright Way2mint Services The content of this document are copyright and remain the

More information

HOW CANADIANS BANK. Annual tracking study on Canadian attitudes and behaviours towards banking. Prepared for:

HOW CANADIANS BANK. Annual tracking study on Canadian attitudes and behaviours towards banking. Prepared for: HOW CANADIANS BANK Annual tracking study on Canadian attitudes and behaviours towards banking Prepared for: 2016 METHODOLOGY Data collection method Hybrid phone/online survey methodology. 817 interviews

More information

Introducing LabCorp PreCheck.

Introducing LabCorp PreCheck. Fast. Easy. Secure. Introducing LabCorp PreCheck. LabCorp is committed to making a visit to its patient service centers fast and easy with a new convenient self-service check-in process. NAME LOCATION

More information

API Spec Sheet For Version 2.5

API Spec Sheet For Version 2.5 INTRODUCTION The Wholesale SMS API is ideally suited for sending individual sms messages and/or automated responses through our premium routes. To send bulk messages through the API you can set your server

More information

Potted History of the Mobile Phone

Potted History of the Mobile Phone Ever wondered why your parents are lacking in knowledge of the functionality of your mobile wizardry? Well, it might surprise you to know that mobile phone technology has only really developed over the

More information

Health Messenger User Guide

Health Messenger User Guide Health Messenger User Guide V 2.6 3/09/2018 USER GUIDE TABLE OF CONTENTS 1.0 GENERAL INFORMATION 1.1 System Overview 1.2 Support 1.3 Uploading Export Files 1.4 Minimum System Requirements 2.0 GETTING STARTED

More information

Primary Care Support England. Practice Guide - Childhood Immunisations

Primary Care Support England. Practice Guide - Childhood Immunisations Primary Care Support England Practice Guide - Childhood Immunisations Primary Care Support England Practice Guide - Childhood Immunisations Version number: 1.0 First published: 12/12/2016 Prepared by:

More information

4/ FGC Uen Rev C IPX. Implementation Guide SMS Utility API 1.0

4/ FGC Uen Rev C IPX. Implementation Guide SMS Utility API 1.0 4/155 19-FGC 101 0169 Uen Rev C IPX Implementation Guide SMS Utility API 1.0 All rights reserved. No part of this document may be reproduced in any form without the written permission of the copyright

More information

(10/17) PATIENT GUIDE

(10/17) PATIENT GUIDE (10/17) PATIENT GUIDE Welcome to Parkview MyChart! mychart.parkview.com Welcome to your one story of care. As a patient of Parkview, you now have access to your health information from the convenience

More information

BROADBAND AND HIGH SPEED NETWORKS

BROADBAND AND HIGH SPEED NETWORKS BROADBAND AND HIGH SPEED NETWORKS INTRODUCTION TO DATA COMMUNICATION NETWORKS Data communications are the exchange of data between two devices via some form of transmission medium such as a wire cable.

More information

USPS Customer & Market Insights. USPS Mail Moments Review. Phil Vinnedge- USPS Conducted by Summit Research March 2016

USPS Customer & Market Insights. USPS Mail Moments Review. Phil Vinnedge- USPS Conducted by Summit Research March 2016 USPS Mail Moments 2016 Review Phil Vinnedge- USPS Conducted by Summit Research March 2016 Overview Summary Methodology Findings: Overall Mail Attitudes Customer Behaviors Generational Differences Bills

More information

OWA 2013 Getting Started

OWA 2013 Getting Started OWA 2013 Getting Started Our mail server has been upgraded to the Exchange 2013 this has created some changes in our webmail environment. Email A new modern style has been applied to web interface to align

More information

Once you sign up for a CampDoc.com account, you will be able to register your camper, select a session and upload your camper s medical information.

Once you sign up for a CampDoc.com account, you will be able to register your camper, select a session and upload your camper s medical information. You can now register for VMDC 2018 through our Online Portal! VMDC Camp is thrilled to announce a partnership with as part of our continuing efforts to provide the best possible service to our campers

More information

International Development Design Summit Lahore 2016

International Development Design Summit Lahore 2016 International Development Design Summit Lahore 2016 Team Spicy Hath is Rachel Powers, Nickson Nyakambi, Umer Asif, Dodji Honou, Hareem Cheema, & Amna Batool (DF) 1 Table of Contents Background Design Process

More information

London Dental and Education Training. ewisdom User Guide.

London Dental and Education Training. ewisdom User Guide. London Dental and Education Training ewisdom User Guide www.ewisdom-london.nhs.uk ewisdom The Online CPD Tool for all the Dental Team With over 850 courses at your fingertips, you can stay ahead in Radiology,

More information