A Web Application Framework for Reservation Systems and its Reusability Evaluation

Size: px
Start display at page:

Download "A Web Application Framework for Reservation Systems and its Reusability Evaluation"

Transcription

1 A Web Applcatn wrk fr Reservatn Systems and ts Reusablty Evaluatn Feng Zhu and Takesh Chush Abstract Web applcatn s d n varus busness felds n the Internet and ntranets. It s an effcent way t develp Web applcatn n the base f a framewrk. In ths paper, after the well desgnng f ts archtecture, a dman specfc framewrk fr reservatn s develped based n a meetng rm reservatn system. Then, the framewrk s appled t tw types f reservatn systems, an nlne bk stre system and a sccer tcket reservatn system, and ts reusablty s evaluated. Wth the result f 62 and 65 respectvely, hgh reusablty f the framewrk has been cnfrmed. In addtn, anther framewrk fr tme-based reservatn, was develped, and the trade-ff relatnshp between the range f the dman and the reusablty has been cnfrmed. Fnally, a vsual tl s develped t generate the surce cde fr the database access transactn. Keywrds: framewrk, reservatn, reusablty, trade-ff 1. INTRODUCTION Wth the wdespread f the Internet and ntranets, the number f web applcatns such as BBS, shppng ste, has been ncreasng. Hwever, t s dffcult t develp thse web applcatns separately wthut any supprt technlgy. A web applcatn framewrk prvdes an abstractn n whch cmmn cde prvdng generc functnalty can be selectvely verrdden r specalzed by the develpers. Furthermre, the verall cntrl flw f the applcatn s dctated by the framewrk. As the repettus wrk s avded, the mre effcent t becmes t develp web applcatns based n a framewrk. In ur research [1][2] untl nw, cmpared t the mre general framewrks lke Struts[3] and Hbernate[4], we develped a framewrk fr a mre narrwed dman reservatn. It s a feld that s experencng great demand, lke classrm reservatn n a schl, tcket reservatn fr a tran and s n. Beca the dman t be appled has been narrwed, t shuld be mre effcent t develp such applcatns usng ths framewrk. The framewrk s appled wth several types f reservatn systems t cnfrm ts reusablty. Related wrks nclude thse lke an Ajax framewrk develped and then appled wth a sample system t evaluate ts reusablty [5]. A mult-layer framewrk amng at hgh perfrmance was desgned and mplemented fr cmmn nfrmatn system based n.net, and the perfrmance Manuscrpt receved December 8, F. Zhu and T. Chush are wth the Department f Cmputer Scence, Mej Unversty, Kawasak, Japan. mprvement was fgured ut [6]. Ths paper presents the archtecture f the framewrk n Sectn 2, the descrptn f reservatn n Sectn 3, the develpment and reusablty evaluatn f the framewrk n Sectn 4 and Sectn 5, the trade-ff relatnshp between the dman and the reusablty n Sectn 6 and a vsual cde generatn tl n Sectn ARCHITECTURE DESIGN In a narrwed dman, beca the data flw s smlar frm ne applcatn t anther, we can desgn the archtecture n the framewrk level. Therefre, the develpers wll be released frm the archtecture desgnng wrk wth a well desgned archtecture already avalable frm the framewrk. 2.1 Mult-layer archtecture Mult-layer archtecture s a clent-server archtecture n whch, the presentatn, the applcatn prcessng and the data management are lgcally separate prcesses. The fllwng are the prncples we fllwed t desgn the framewrk s archtecture. The lwer layer prvdes ts nterfaces t the upper layer. It`s nt aware f upper layers. The upper layer desn t need t knw the detal f the lwer layer. The nly necessary nfrmatn s the lwer layer s nterfaces. The upper layer nly needs t knw the nterface f the layer drectly beneath t. Fllwng these prncples, we were able t make ur framewrk mre understandable, extensble, and hence, mre effcent. Our mult-layer archtecture s made up frm 3 layers. The presentatn layer deals wth the r nterfaces. The busness lgc layer cntrls an applcatn s functnalty by perfrmng detaled prcessng. The data access layer prcesses the data wth the relatnal database. 2.2 Presentatn layer The presentatn layer deals wth the r nterfaces. There are many exstng general framewrks fr ths layer, amng them, the mst famus ne s Struts. Web applcatns based n Java Server Pages smetmes cmmngle database cde, page desgn cde, and cntrl flw cde, s they becme dffcult t mantan. Struts s a free pen-surce framewrk fr creatng web applcatns. It s desgned t help develpers create web applcatns that utlze a MVC archtecture, whch can slve the abve prblems well. In ur framewrk, we develped ths layer based n Struts,

2 Clent Mappng AP Server DB Server see Web Brwser Request Servlet call Set frm data Call actn 遷 移 先 返 答 FrmBean Retreve/ update data Respnse JSP Sessn Lgc prcessng data prcessng Lgc Class DAOFactry Dman bject Generate DAO class DAO Calss SQL Prcessng RDB RDBMS Fg.1. The archtecture f ur framewrk usng sme f the lbrares frm t. S the MVC mdel s adpted n ur framewrk. 2.3 Data access layer The data access layer prcesses the data wth the relatnal database. The cmmn ways t handle ths peratn are JDBC r bject-relatnal mappng framewrk lke Hbernate, Bats. In ur framewrk, we adpted the Data Access Object (DAO) pattern [7] n ths layer, and als n Sectn 6, a vsual tl wll be develped t generate the cde autmatcally. As ne f the J2EE cre patterns, DAO abstracts and encapsulates all access t the database. It manages the cnnectn wth the database t btan and stre data. DAO can be hghly flexble by adptng the Abstract Factry and the Factry Methd [8] patterns. As we nly relatnal databases, the Factry Methd pattern adpted DAO s selected fr ur framewrk. In ths strategy, a DAO Factry prduces a varety f DAOs needed by the applcatn, s t becmes much mre cnvenent and easer fr extensn and mantenance. 2.4 wrk`s archtecture Wth the 3 layer dvsn, and after adptng Struts t the presentatn layer and DAO pattern t the data access layer, the archtecture f ur framewrk s n n Fgure RESERVATION SYSTEM 3.1 The system f reservatn In ths paper, reservatn s defned as the clam t btan a future f certan resurces fr a perd f tme n advance. And cmpared t the cnventnal way by paper recrds, we realze ths clam by Web applcatn. As the cnceptual mdel beng n n Fgure 2, there are end-rs wh fllw certan cndtns t make the reservatn. There are resurces beng dvded nt reservable frames. End-r Fg.2. Cnceptual mdel f reservatn Accrdng t the type f frame whch the resurces have been dvded nt, the system f reservatn s dvded nt 3 categres. Space-based reservatn refers t the systems that chse the resurce frst accrdng t tme, and then chse the frame accrdng t space. Tcket reservatn s a sample n ths categry. Tme-based reservatn refers t the systems that frst chse the resurce accrdng t space and then chse the frame accrdng t tme. Meetng rm reservatn s a sample n ths categry. In addtn, the systems that dn`t belng t these tw categres, lke the shppng system, refer t the thers. Fgure 3 s the system f reservatn. tme space 1 * Cndtns space 1 * tme thers thers Fg.3. The system f reservatn 1 * 0 *

3 mappng Frm Lgn AuthFrm Frm Reservatn Frm Frm Servlet JSP: welcm: Template & header & lgn & resurcelst & wel Reservatn lst Template & header & lgn & resurcelst & reservelst Cmmn entry-template & header & resurcelst Check: entry.jsp New: entrysuccess.jsp Mdfy: updatesuccess.jsp Delete: deletesccess.jsp Cmmn errr:entry-template & header & resurcelst & errr.jsp stp.jsp Sessn Lgn Lgn Lgut Lgc Lgn AuthLgc Database Access Object ShwAct n lgc Detal ShwActn DAOFactry Lgc check EntryShw new Entry mdfy Entry delete Entry Dman Object Grup Member Tles-defs.xml Lgn Reservatn MemberDAO DAO DAO MemberDAOImp DAOImp DAOImp DB Rles+ Member Grup Fg.6. The extracted fles fr the framewrk 3.2 Functn specfcatn In reservatn systems, there are cmmn r functns and system admnstratr functns, respectvely. The functn specfcatn s n n Table 1. Table.1. Functn specfcatn f reservatn User admnstratng admnstratng functn Cmmn r Lgn/lgut Admnstratr Lgn/lgut User regster/ mdfy/delete - regster/ New reserve Reservatn check/ mdfy/delete mdfy/delete New reserve All reservatn`s check/ mdfy/delete Our framewrk nly cvers the mst cmmn r` functns. These are r lgn and lgut, a new reservatn, and check, mdfy and delete f the reservatns. 4. FRAMEWORK DEVELOPMENT T develp the framewrk, frst, a sample system s develped based n the archtecture and functn specfcatn n Sectn 2 and 3. Then, the fle s extracted frm the sample system. Fnally, the framewrk s realzed cmpletely. 4.1 A sample system We chse a meetng rm reservatn system, whch belngs t the tme-based reservatn categry, as a sample system, frm whch the fles the framewrk needs can be extracted. Sme f the frnt nterfaces are n n Fgure 4 and 5. Fg.4. Reservatns n mnthly calendar frmat The tp page s made up f a header, a lgn part, a man part and a fter. When ne f the meetng rms has been chsen, the reservatns f ths rm wll be n n mnthly calendar frmat. Next the end-r can mdfy r delete the reservatns when he/she lgs n. Fg.5. Detals f a reservatn

4 4.2 Extractn f the fles Based n the meetng rm reservatn system develped, the fles whch are needed n a reservatn framewrk are extracted. The extracted fles are n n Fgure Cmpletn f the framewrk When the fles have been extracted, the detaled cntents f each fle shuld be added and mdfed s that they can be d as a framewrk. We mdfed sme f the cntents f the fle s that they can be verrdden as base classes r cnfgure fles. And sme f the fles were made nt lbrares s the develpers can chse t. The detals f the framewrk wll nt be ncluded n ths paper, hwever, except the lbrares frm the nner framewrk Struts, the number f the rgnal steps wrtten by us s REUSABILITY EVALUATION WITH APPLICATION TEST In the frmer sectns, we develped a reservatn framewrk. Next, we wll carry ut applcatns t see f t s usable n reservatn systems. As the sample system frm whch the framewrk was extracted belngs t the tme-based categres, we apply t t tw systems belngng t space-based reservatn and the thers, respectvely. 5.1 Applcatn test n space-based categry In the frst applcatn test, we wll see f ur framewrk s reusable n the space-based reservatn categry A sccer tcket reservatn system was chsen. The end-r frst chse the match accrdng t the tme, then the seat whch s a space ntn wll be reserved. The functns as a reservatn system t cmmn rs such as reservatn check, mdfcatn, deletn and s n are realzed. The percentage that the framewrk suppled n the system s n n Table 2. Overall system wrk specalzed Percentage f framewrk Table.2. Reusablty f applcatn test Frm 94 Dma n bject Lgc class DAO Vew Mapp ng Ttal Accrdng t Table 2, we can see that as a ttal the system has 1591 steps, amng thse 996 steps are suppled by the framewrk. In ther wrds, a 62 reusablty s realzed. S, the reusablty n space-based reservatn systems s ndeed cnfrmed. 5.2 Applcatn test n the thers categry Fllwng the frst applcatn test, the secnd ne wll be carred ut n the thers categry. Ths tme an nlne bk stre system s chsen. As nthng t d wth tme r space, the end-r chse the bk frst, then, decded hw many f the same bk t buy. In addtn, the ther functns f reservatn plus a search functn was realzed. The percentage that the framewrk suppled n the system s n n Table 3. Overall system wrk specalzed Percentage f framewrk Table.3. Reusablty f apply test 2 Frm Dma n bject 168 Lgc class DAO Vew Mapp ng Ttal As n n Table 3, amng the 1536 steps f the ttal system, nly 540 steps are custmzed. Accrdng t a reusablty f up t 65, we cnfrmed that the framewrk s als reusable n the thers categry. 5.3 Overall evaluatn Includng the meetng rm reservatn sample system, the reusablty f ur framewrk s n n Fgure MeetngRm Tcket BkStre Fg.7. Reusablty f the 3 systems MeetngRm Tcket BkStre The percentages f the cde that the framewrk suppled, are 64, 62, and 65 respectvely and the hgh reusablty was cnfrmed. Als, t has the fllwng advantages. After ne system frm ne categry f the reservatn system has been appled respectvely, we cnfrmed that ur framewrk can be appled t a wde range f reservatn systems. Beca the archtecture has been well desgned n the framewrk level, the wrk can be released t the develpers. As a result, a new well-desgned system can be develped much faster, and easer fr extensn and mantenance. 6. THE TRADE-OFF RELATIONSHIP Beca we narrwed the dman t reservatn, ur framewrk can gan a much hgher reusablty than the general

5 framewrks. As all f us can see, the narrwer the dman s, the hgher the reusablty wll be. In ths sectn we wll develp anther framewrk n a mre narrwed dman, the tme-based reservatn framewrk, whch s nly ne categry n the reservatn system, t cnfrm the trade-ff relatnshp between the range f the dman and the reusablty. The purpse f ths sectn s t fgure ut the parts that can be made mre reusable n a dman specfc framewrk. 6.1 A tme-based framewrk A new framewrk fr tme-based reservatn s develped. Beca t s a chld dman f reservatn, we develped t based n the same sample system, meetng rm reservatn system, whch als belngs t ths dman. Cmpared t the reservatn framewrk, the new parts added n ths framewrk nclude the repeated tme check functn, calendar page generatng lbrary and s n. The number f steps fr the new framewrk becmes Applcatn test The new framewrk wll be appled wth a system named classrm reservatn system. The man dfference t the meetng rm reservatn system s that the reserve frame becmes tme perd, rather than the real tme. Besdes ths, there are als ther dfferences such lke the nfrmatn needed fr a reservatn. The percentage that the new framewrk suppled n the system s n n Table 4. Overall system wrk specalzed Percentage f framewrk Table.4. Reusablty f the new framewrk Frm Dma n bject Lgc class DAO Vew Mapp ng Ttal As we can see, the percentage f the cde suppled by the framewrk s hgher, up t 79. S f a tme-based reservatn system needs t be develped, ths new framewrk n a narrwer dman s mre ful. 6.3 The trade-ff relatnshp After the framewrk fr reservatn and anther tme-based reservatn framewrk as a chld dman f reservatn, have been develped and appled wth several applcatns, we wll cmpare them n each part. Fgure 8 s the cmpared results. The fgures f the percentage f the reservatn framewrk refer t the average f the tw applcatn tests - the sccer tcket reservatn system and the nlne bk-stre A c t n A c t n F r m D b j m e a c t n L g c D A O V e w M a p p n g Fg.8. Reusablty cmparsn T t a l Reservatn Tme-based reservatn Frm Fgure 8, we can see that, the vew part changed mstly, that s t say that when the dman s narrwed, we can make ths part mre reusable wth the framewrk. As fr the dman bjects, the lgc classes and the actn mappng are als where we can pay mre attentn t make the framewrk mre reusable. Frm the detals f the DAO classes, we knw that nly the prpertes f the enttes are dfferent. S we wll develp a vsual tl t generate the DAO cde n the next sectn. 7. A VISUAL CODE GENERATION TOOL The database access layer prcesses the data wth the relatnal database. The basc functns f ths layer nclude the functns t create, read, update r delete ne r several rws f data n the database. If these functns are realzed n ths layer, then all f the ther cmplex functns can be realzed n the lgc layer usng these methds. Snce we have learned that nly the prpertes f the enttes are needed t be custmzed n ths layer, and the mnmal necessary enttes needed n a reservatn system usng ur framewrk are member, grup, resurce and reservatn, we develped a vsual tl s that the surce cde f ths layer can be generated autmatcally. The surce cde generated by ur vsual tl ncludes the database prcessng functns, thse are creatng, updatng, deletng ne rw n the relatve table, and retrevng ne r several rws frm the relatve table. Snce the dman bjects wll als be generated, the retreved data wll be returned as an bject r a lst f bjects, s the bject relatnal mappng functn has als been realzed wth ur vsual tl. A sample prcessng flw f the vsual tl s n n Fgure 9. Whle all f the 4 enttes needng t be custmzed, Fgure 9 s the prcessng flw f nly ne - Reservatn. When the Reservatn buttn s clcked n the tp page, the custmzng page wll be n. As the mnmum necessary prpertes have already been added by the tl autmatcally, the develpers nly need t add the ther prpertes lke date,

6 Fg.9. The prcessng flw f the vsual tl address, pstal-cde, they want. After the prpertes have been added, the lcatn where the surce cde wll be generated shuld be chse. And after all the ther 3 enttes are custmzed smlarly, the surce cde can be generated by clckng the generate buttn n the tp page. We take the nlne bk stre fr an applcatn test. After the DAO and dman bjects surce cde are generated by the vsual tl, the ther parts were als develped, and the ttal system wrks as well as f t were all cded by hands. Snce the cde fr the data access layer and dman bject were generated autmatcally, the reusablty rate s hgher up t 77.3 n ths test. Wth the bject relatnal mappng functn, we can develp the ther layers mre cnvenently by nly usng bject rented technques. Prcessng (ISIP), 2008 Internatnal Sympsum Vlume, Issue, 23-25, 2008 [7] Deepak Alur, Jhn Crup and Dan Malks, Cre J2EE Patterns: Best Practces and Desgn Strateges, Prentce Hall/Sun Mcrsystems Press, [8] Erch Gamma, Rchard Helm, Ralph Jhnsn, and Jhn Vlssdes, Desgn Patterns: Elements f Reusable Object-Orented Sftware, Addsn Wesley, CONCLUSION In ths paper, we develped a framewrk fr reservatn systems, wth a vsual cde generatn tl. Thrugh the applcatn tests, the hgh reusablty n a wde range has been cnfrmed. In addtn, the parts that can be made mre reusable n a dman specfc framewrk have als been cnfrmed, thrugh the cmparsn between tw framewrks. REFERENCES [1] T. Chush, H. Tsuku, Reusablty f Web applcatn framewrk fr reservatn systems (n Japanese), IEICE, Vl.J88-D-I, N.5, pp , 2005 [2] F. Zhu, T. Chush, The reusablty evaluatn f a dman-specfc Web applcatn framewrk, (n Japanese), IPSJ SIG Techncal Reprt, pp , 2008 [3] The Apache Sftware Fundatn, [4] Red Hat, Inc, [5] T. Matsutsuka, A framewrk fr AJAX-enabled busness applcatns, (n Japanese), IPSJ, Vl.49 N.7, pp , 2008 [6] J. Zha, N. Xa, Study n wrk f Scalable Hgh Perfrmance Mult-layer and Mult-pattern Infrmatn Systems Infrmatn

YOU ARE RECEIVING THIS NOTICE AS REQUIRED BY THE NEW NATIONAL HEALTH REFORM LAW (ALSO KNOWN AS THE AFFORDABLE CARE ACT OR ACA)

YOU ARE RECEIVING THIS NOTICE AS REQUIRED BY THE NEW NATIONAL HEALTH REFORM LAW (ALSO KNOWN AS THE AFFORDABLE CARE ACT OR ACA) YOU ARE RECEIVING THIS NOTICE AS REQUIRED BY THE NEW NATIONAL HEALTH REFORM LAW (ALSO KNOWN AS THE AFFORDABLE CARE ACT OR ACA) On January 1, 2014, the Affrdable Care Act (ACA) wll be mplemented n Massachusetts

More information

Excel Contact Reports

Excel Contact Reports Excel Cntact Reprts v.1.0 Anther efficient and affrdable ACT! Add-On by http://www.expnenciel.cm Excel Cntact Reprts User s Manual 2 Table f cntents Purpse f the add-n... 3 Installatin prcedure... 3 The

More information

Licensing Windows Server 2012 for use with virtualization technologies

Licensing Windows Server 2012 for use with virtualization technologies Vlume Licensing brief Licensing Windws Server 2012 fr use with virtualizatin technlgies (VMware ESX/ESXi, Micrsft System Center 2012 Virtual Machine Manager, and Parallels Virtuzz) Table f Cntents This

More information

s s f h s s SPH3UW Unit 7.7 Concave Lens Page 1 of 7 Notes Properties of a Converging Lens

s s f h s s SPH3UW Unit 7.7 Concave Lens Page 1 of 7 Notes Properties of a Converging Lens SPH3UW Unt 7.7 Cncave Lens Page 1 f 7 Ntes Physcs Tl bx Thn Lens s an ptcal system wth tw refractng surfaces. The mst smplest thn lens cntan tw sphercal surfaces that are clse enugh tgether that we can

More information

Helpdesk Support Tickets & Knowledgebase

Helpdesk Support Tickets & Knowledgebase Helpdesk Supprt Tickets & Knwledgebase User Guide Versin 1.0 Website: http://www.mag-extensin.cm Supprt: http://www.mag-extensin.cm/supprt Please read this user guide carefully, it will help yu eliminate

More information

Case Study Best mcommerce marketplace system

Case Study Best mcommerce marketplace system Case Study Best mcmmerce marketplace system www.brainvire.cm 2015 Brainvire Inftech Pvt. Ltd Page 1 f 1 Client Requirement The client is ne f the mst experienced merchandize selling cmpany wners wh has

More information

STIClassroom Win Rosters, Attendance, Lesson Plans and Textbooks

STIClassroom Win Rosters, Attendance, Lesson Plans and Textbooks STIClassrm Win Rsters, Attendance, Lessn Plans and Textbks Student Class Rster T access the student class rster, click the icn in the Classrm desktp. Frm the Rster screen, teachers may access the items

More information

MiaRec. Performance Monitoring. Revision 1.1 (2014-09-18)

MiaRec. Performance Monitoring. Revision 1.1 (2014-09-18) Revisin 1.1 (2014-09-18) Table f Cntents 1 Purpse... 3 2 Hw it wrks... 3 3 A list f MiaRec perfrmance cunters... 4 3.1 Grup MiaRec Statistics... 4 3.2 Grup MiaRec Call Statistics Per-State... 5 3.3 Grup

More information

Scope of Work and Partnership Requirements Save the Children Subgrant Agreement

Scope of Work and Partnership Requirements Save the Children Subgrant Agreement Prgram Descriptin Save the Children Afterschl Prgram Cmpnent Literacy, Healthy Chices, Emergency Preparedness, and Family Engagement Save the Children s afterschl prgram has fur cmpnents: literacy, Healthy

More information

Licensing Windows Server 2012 R2 for use with virtualization technologies

Licensing Windows Server 2012 R2 for use with virtualization technologies Vlume Licensing brief Licensing Windws Server 2012 R2 fr use with virtualizatin technlgies (VMware ESX/ESXi, Micrsft System Center 2012 R2 Virtual Machine Manager, and Parallels Virtuzz) Table f Cntents

More information

Welcome to Microsoft Access Basics Tutorial

Welcome to Microsoft Access Basics Tutorial Welcme t Micrsft Access Basics Tutrial After studying this tutrial yu will learn what Micrsft Access is and why yu might use it, sme imprtant Access terminlgy, and hw t create and manage tables within

More information

Importance and Contribution of Software Engineering to the Education of Informatics Professionals

Importance and Contribution of Software Engineering to the Education of Informatics Professionals Imprtance and Cntributin f Sftware Engineering t the Educatin f Infrmatics Prfessinals Dr. Tick, József Budapest Plytechnic, Hungary, tick@bmf.hu Abstract: As a result f the Blgna prcess a new frm f higher

More information

Research Findings from the West Virginia Virtual School Spanish Program

Research Findings from the West Virginia Virtual School Spanish Program Research Findings frm the West Virginia Virtual Schl Spanish Prgram Funded by the U.S. Department f Educatin Cnducted by R0cKMAN ETAL San Francisc, CA, Chicag, IL, and Blmingtn, IN Octber 4, 2006 R0cKMAN

More information

This report provides Members with an update on of the financial performance of the Corporation s managed IS service contract with Agilisys Ltd.

This report provides Members with an update on of the financial performance of the Corporation s managed IS service contract with Agilisys Ltd. Cmmittee: Date(s): Infrmatin Systems Sub Cmmittee 11 th March 2015 Subject: Agilisys Managed Service Financial Reprt Reprt f: Chamberlain Summary Public Fr Infrmatin This reprt prvides Members with an

More information

Mobile Device Manager Admin Guide. Reports and Alerts

Mobile Device Manager Admin Guide. Reports and Alerts Mbile Device Manager Admin Guide Reprts and Alerts September, 2013 MDM Admin Guide Reprts and Alerts i Cntents Reprts and Alerts... 1 Reprts... 1 Alerts... 3 Viewing Alerts... 5 Keep in Mind...... 5 Overview

More information

Table of Contents. This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS OR IMPLIED, IN THIS SUMMARY.

Table of Contents. This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS OR IMPLIED, IN THIS SUMMARY. Table f Cntents Tp Pricing and Licensing Questins... 2 Why shuld custmers be excited abut Micrsft SQL Server 2012?... 2 What are the mst significant changes t the pricing and licensing fr SQL Server?...

More information

Website Design Worksheet

Website Design Worksheet Website Design Wrksheet The mst crucial and imprtant part f having a website designed, r redesigned is t set gals and decide up frnt what yu want yur website t d. What is the purpse f yur new website?

More information

The ad hoc reporting feature provides a user the ability to generate reports on many of the data items contained in the categories.

The ad hoc reporting feature provides a user the ability to generate reports on many of the data items contained in the categories. 11 This chapter includes infrmatin regarding custmized reprts that users can create using data entered int the CA prgram, including: Explanatin f Accessing List Screen Creating a New Ad Hc Reprt Running

More information

LOGOS Purchase Agreement How will you acquire this valuable digital tool?

LOGOS Purchase Agreement How will you acquire this valuable digital tool? LOGOS FAQs LOGOS 6 at Bb Jnes University Seminary In the last tw decades, Bible study sftware has prliferated and advanced t the pint that any serius student f Scripture seeks familiarity with these tls.

More information

How to put together a Workforce Development Fund (WDF) claim 2015/16

How to put together a Workforce Development Fund (WDF) claim 2015/16 Index Page 2 Hw t put tgether a Wrkfrce Develpment Fund (WDF) claim 2015/16 Intrductin What eligibility criteria d my establishment/s need t meet? Natinal Minimum Data Set fr Scial Care (NMDS-SC) and WDF

More information

Usability and Website Design. Aaron Ruggiero. When designing websites, users should be the main focus throughout the

Usability and Website Design. Aaron Ruggiero. When designing websites, users should be the main focus throughout the Usability and Website Design Aarn Ruggier When designing websites, users shuld be the main fcus thrughut the website design prcess. When an expert designs a website their creatin will seem simple t them.

More information

Group 3 Flip Chart Notes

Group 3 Flip Chart Notes MDH-DLI Sympsium -- Meeting Mandates, Making the Cnnectin: Wrkers Cmpensatin Electrnic Health Care Transactins -- Nvember 5, 2014 Grup 3 Flip Chart Ntes Meeting Mandates, Making the Cnnectin: Wrkers Cmpensatin

More information

Session 4: Descriptive statistics and exporting Stata results

Session 4: Descriptive statistics and exporting Stata results Itrduct t Stata Jrd Muñz (UAB) Sess 4: Descrptve statstcs ad exprtg Stata results I ths sess we are gg t wrk wth descrptve statstcs Stata. Frst, we preset a shrt trduct t the very basc statstcal ctets

More information

TaskCentre v4.5 Send Message (SMTP) Tool White Paper

TaskCentre v4.5 Send Message (SMTP) Tool White Paper TaskCentre v4.5 Send Message (SMTP) Tl White Paper Dcument Number: PD500-03-17-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 FEATURES 2 GLOBAL CONFIGURATION

More information

Port Manager. Microsoft Dynamics CRM for Ports

Port Manager. Microsoft Dynamics CRM for Ports Prt Manager Micrsft Dynamics CRM fr Prts February 2015 Overview Celedn Partners Prt Manager encapsulates the functinality f many prt related prcesses int an easy t learn and easy t use tl. The slutin leverages

More information

TRAINING GUIDE. Crystal Reports for Work

TRAINING GUIDE. Crystal Reports for Work TRAINING GUIDE Crystal Reprts fr Wrk Crystal Reprts fr Wrk Orders This guide ges ver particular steps and challenges in created reprts fr wrk rders. Mst f the fllwing items can be issues fund in creating

More information

FINRA Regulation Filing Application Batch Submissions

FINRA Regulation Filing Application Batch Submissions FINRA Regulatin Filing Applicatin Batch Submissins Cntents Descriptin... 2 Steps fr firms new t batch submissin... 2 Acquiring necessary FINRA accunts... 2 FTP Access t FINRA... 2 FTP Accunt n FINRA s

More information

Backups and Backup Strategies

Backups and Backup Strategies IT Security Office Versin 2.3 02/19/10 Backups and Backup Strategies IT managers need t plan fr backups in terms f time and space required. Hwever, mst mdern backup sftware can cmpress the backup files

More information

Frequently Asked Questions November 19, 2013. 1. Which browsers are compatible with the Global Patent Search Network (GPSN)?

Frequently Asked Questions November 19, 2013. 1. Which browsers are compatible with the Global Patent Search Network (GPSN)? Frequently Asked Questins Nvember 19, 2013 General infrmatin 1. Which brwsers are cmpatible with the Glbal Patent Search Netwrk (GPSN)? Ggle Chrme (v23.x) and IE 8.0. 2. The versin number and dcument cunt

More information

Connecting to Email: Live@edu

Connecting to Email: Live@edu Cnnecting t Email: Live@edu Minimum Requirements fr Yur Cmputer We strngly recmmend yu upgrade t Office 2010 (Service Pack 1) befre the upgrade. This versin is knwn t prvide a better service and t eliminate

More information

Grant Application Writing Tips and Tricks

Grant Application Writing Tips and Tricks Grant Applicatin Writing Tips and Tricks Grants are prvided by gvernment (lcal, state and natinal), charitable trusts, and by cmmunity rganisatins (eg Ltteries, Rtary, etc). Each grant has a specific purpse,

More information

efusion Table of Contents

efusion Table of Contents efusin Cst Centers, Partner Funding, VAT/GST and ERP Link Table f Cntents Cst Centers... 2 Admin Setup... 2 Cst Center Step in Create Prgram... 2 Allcatin Types... 3 Assciate Payments with Cst Centers...

More information

Getting Started Guide

Getting Started Guide AnswerDash Resurces http://answerdash.cm Cntextual help fr sales and supprt Getting Started Guide AnswerDash is cmmitted t helping yu achieve yur larger business gals. The utlined pre-launch cnsideratins

More information

TaskCentre v4.5 Send Fax (Tobit) Tool White Paper

TaskCentre v4.5 Send Fax (Tobit) Tool White Paper TaskCentre v4.5 Send Fax (Tbit) Tl White Paper Dcument Number: PD500-03-19-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 FEATURES 2 GLOBAL CONFIGURATION

More information

990 e-postcard FAQ. Is there a charge to file form 990-N (e-postcard)? No, the e-postcard system is completely free.

990 e-postcard FAQ. Is there a charge to file form 990-N (e-postcard)? No, the e-postcard system is completely free. 990 e-pstcard FAQ Fr frequently asked questins abut filing the e-pstcard that are nt listed belw, brwse the FAQ at http://epstcard.frm990.rg/frmtsfaq.asp# (cpy and paste this link t yur brwser). General

More information

NAVIPLAN PREMIUM LEARNING GUIDE. Analyze, compare, and present insurance scenarios

NAVIPLAN PREMIUM LEARNING GUIDE. Analyze, compare, and present insurance scenarios NAVIPLAN PREMIUM LEARNING GUIDE Analyze, cmpare, and present insurance scenaris Cntents Analyze, cmpare, and present insurance scenaris 1 Learning bjectives 1 NaviPlan planning stages 1 Client case 2 Analyze

More information

1 GETTING STARTED. 5/7/2008 Chapter 1

1 GETTING STARTED. 5/7/2008 Chapter 1 5/7/2008 Chapter 1 1 GETTING STARTED This chapter intrduces yu t the web-based UIR menu system. Infrmatin is prvided abut the set up necessary t assign users permissin t enter and transmit data. This first

More information

Software and Hardware Change Management Policy for CDes Computer Labs

Software and Hardware Change Management Policy for CDes Computer Labs Sftware and Hardware Change Management Plicy fr CDes Cmputer Labs Overview The cmputer labs in the Cllege f Design are clsely integrated with the academic needs f faculty and students. Cmputer lab resurces

More information

TaskCentre v4.5 MS SQL Server Trigger Tool White Paper

TaskCentre v4.5 MS SQL Server Trigger Tool White Paper TaskCentre v4.5 MS SQL Server Trigger Tl White Paper Dcument Number: PD500-03-02-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT... 1 TRADEMARKS... 1 INTRODUCTION... 2 Overview... 2 Features...

More information

learndirect Test Information Guide The National Test in Adult Numeracy

learndirect Test Information Guide The National Test in Adult Numeracy learndirect Test Infrmatin Guide The Natinal Test in Adult Numeracy 1 Cntents The Natinal Test in Adult Numeracy: Backgrund Infrmatin... 3 What is the Natinal Test in Adult Numeracy?... 3 Why take the

More information

Online Learning Portal best practices guide

Online Learning Portal best practices guide Online Learning Prtal Best Practices Guide best practices guide This dcument prvides Micrsft Sftware Assurance Benefit Administratrs with best practices fr implementing e-learning thrugh the Micrsft Online

More information

Deployment Overview (Installation):

Deployment Overview (Installation): Cntents Deplyment Overview (Installatin):... 2 Installing Minr Updates:... 2 Dwnlading the installatin and latest update files:... 2 Installing the sftware:... 3 Uninstalling the sftware:... 3 Lgging int

More information

CCHIIM ICD-10 Continuing Education Requirements for AHIMA Certified Professionals (& Frequently Asked Questions for Recertification)

CCHIIM ICD-10 Continuing Education Requirements for AHIMA Certified Professionals (& Frequently Asked Questions for Recertification) CCHIIM ICD-10 Cntinuing Educatin Requirements fr AHIMA Certified Prfessinals (& Frequently Asked Questins fr Recertificatin) The transitin t ICD-10-CM and ICD-10-PCS is anticipated t imprve the capture

More information

2008 BA Insurance Systems Pty Ltd

2008 BA Insurance Systems Pty Ltd 2008 BA Insurance Systems Pty Ltd BAIS have been delivering insurance systems since 1993. Over the last 15 years, technlgy has mved at breakneck speed. BAIS has flurished in this here tday, gne tmrrw sftware

More information

Point2 Property Manager Quick Setup Guide

Point2 Property Manager Quick Setup Guide Click the Setup Tab Mst f what yu need t get started using Pint 2 Prperty Manager has already been taken care f fr yu. T begin setting up yur data in Pint2 Prperty Manager, make sure yu have cmpleted the

More information

Hybrid Course Design and Instruction Guidelines

Hybrid Course Design and Instruction Guidelines Hybrid Curse Design and Instructin Guidelines Terminlgy There are n standard definitins fr what cnstitutes a hybrid curse, but sme generally accepted descriptins fllw. In nline learning literature (and

More information

Data Warehouse Scope Recommendations

Data Warehouse Scope Recommendations Rensselaer Data Warehuse Prject http://www.rpi.edu/datawarehuse Financial Analysis Scpe and Data Audits This dcument describes the scpe f the Financial Analysis data mart scheduled fr delivery in July

More information

Using PayPal Website Payments Pro UK with ProductCart

Using PayPal Website Payments Pro UK with ProductCart Using PayPal Website Payments Pr UK with PrductCart Overview... 2 Abut PayPal Website Payments Pr & Express Checkut... 2 What is Website Payments Pr?... 2 Website Payments Pr and Website Payments Standard...

More information

Access to the Ashworth College Online Library service is free and provided upon enrollment. To access ProQuest:

Access to the Ashworth College Online Library service is free and provided upon enrollment. To access ProQuest: PrQuest Accessing PrQuest Access t the Ashwrth Cllege Online Library service is free and prvided upn enrllment. T access PrQuest: 1. G t http://www.ashwrthcllege.edu/student/resurces/enterlibrary.html

More information

CCHIIM ICD-10 Continuing Education Requirements for AHIMA Certified Professionals (& Frequently Asked Questions for Recertification)

CCHIIM ICD-10 Continuing Education Requirements for AHIMA Certified Professionals (& Frequently Asked Questions for Recertification) CCHIIM ICD-10 Cntinuing Educatin Requirements fr AHIMA Certified Prfessinals (& Frequently Asked Questins fr Recertificatin) The transitin t ICD-10-CM and ICD-10-PCS is anticipated t imprve the capture

More information

Why Can t Johnny Encrypt? A Usability Evaluation of PGP 5.0 Alma Whitten and J.D. Tygar

Why Can t Johnny Encrypt? A Usability Evaluation of PGP 5.0 Alma Whitten and J.D. Tygar Class Ntes: February 2, 2006 Tpic: User Testing II Lecturer: Jeremy Hyland Scribe: Rachel Shipman Why Can t Jhnny Encrypt? A Usability Evaluatin f PGP 5.0 Alma Whitten and J.D. Tygar This article has three

More information

Contract Risk Management

Contract Risk Management Cntract Risk Management A Practical Apprach frm The Caridn Academy telephne +27 82 651 8897 facsimile +27 86 674 3384 email inf@caridn.net website www.caridn.za.net 1 1 Over-expenditure, fr example thrugh

More information

Business Continuity Management Systems Foundation Training Course

Business Continuity Management Systems Foundation Training Course Certificatin criteria fr Business Cntinuity Management Systems Fundatin Training Curse CONTENTS 1. INTRODUCTION 2. LEARNING OBJECTIVES 3. ENABLING OBJECTIVES KNOWLEDGE & SKILLS 4. TRAINING METHODS 5. COURSE

More information

Succession Planning & Leadership Development: Your Utility s Bridge to the Future

Succession Planning & Leadership Development: Your Utility s Bridge to the Future Successin Planning & Leadership Develpment: Yur Utility s Bridge t the Future Richard L. Gerstberger, P.E. TAP Resurce Develpment Grup, Inc. 4625 West 32 nd Ave Denver, CO 80212 ABSTRACT A few years ag,

More information

Hough-Domain Image Registration By Metaheuristics

Hough-Domain Image Registration By Metaheuristics Hugh-Dman mage Regstratn By etaheurstcs Shubn Zha Jangsu Autmatn Research nsttute Lanyungang, Jangsu, P. R. Chna 6 Emal: zha_shubn@63.cm Abstract mage regstratn s the prcess f regsterng tw r mre mages,

More information

UNIVERSITY OF CALIFORNIA MERCED PERFORMANCE MANAGEMENT GUIDELINES

UNIVERSITY OF CALIFORNIA MERCED PERFORMANCE MANAGEMENT GUIDELINES UNIVERSITY OF CALIFORNIA MERCED PERFORMANCE MANAGEMENT GUIDELINES REFERENCES AND RELATED POLICIES A. UC PPSM 2 -Definitin f Terms B. UC PPSM 12 -Nndiscriminatin in Emplyment C. UC PPSM 14 -Affirmative

More information

Enrollee Health Assessment Program Implementation Guide and Best Practices

Enrollee Health Assessment Program Implementation Guide and Best Practices Enrllee Health Assessment Prgram Implementatin Guide and Best Practices March 2015 033129 (03-2015) This guide will help yu answer these questins: What is the Enrllee Health Assessment (EHA) prgram and

More information

Access EEC s Web Applications... 2 View Messages from EEC... 3 Sign In as a Returning User... 3

Access EEC s Web Applications... 2 View Messages from EEC... 3 Sign In as a Returning User... 3 EEC Single Sign In (SSI) Applicatin The EEC Single Sign In (SSI) Single Sign In (SSI) is the secure, nline applicatin that cntrls access t all f the Department f Early Educatin and Care (EEC) web applicatins.

More information

LeadStreet Broker Guide

LeadStreet Broker Guide RE/MAX f Western Canada LeadStreet Brker Guide Ver. 2.0 Revisin Histry Name Date Versin Descriptin Tamika Anglin 09/04/13 1.0 Initial Creatin Tamika Anglin 11/05/13 2.0 Inclusin f instructins n reprting

More information

CHAPTER 26: INFORMATION SEARCH

CHAPTER 26: INFORMATION SEARCH Chapter 26: Infrmatin Search CHAPTER 26: INFORMATION SEARCH AVImark allws yu t lcate r target a variety f infrmatin in yur data including clients, patients, Medical Histry, and accunting. The data can

More information

Magenta HR in partnership with breath ehr

Magenta HR in partnership with breath ehr BREATHEHR ONLINE HR SYSTEM AND PORTAL Magenta HR in partnership with breath ehr Magenta HR Cnsulting Ltd. 24 Canning Street, Edinburgh EH3 8EG Tel. 0131 2272769 www.magentahr.cm inf@magentahr.cm 6 December

More information

1)What hardware is available for installing/configuring MOSS 2010?

1)What hardware is available for installing/configuring MOSS 2010? 1)What hardware is available fr installing/cnfiguring MOSS 2010? 2 Web Frnt End Servers HP Prliant DL 380 G7 2 quad cre Intel Xen Prcessr E5620, 2.4 Ghz, Memry 12 GB, 2 HP 146 GB drives RAID 5 2 Applicatin

More information

Fermilab Time & Labor Desktop Computer Requirements

Fermilab Time & Labor Desktop Computer Requirements Fermilab Time & Labr Desktp Cmputer Requirements Fermilab s new electrnic time and labr reprting (FTL) system utilizes the Wrkfrce Central prduct frm Krns. This system is accessed using a web brwser utilizing

More information

Licensing the Core Client Access License (CAL) Suite and Enterprise CAL Suite

Licensing the Core Client Access License (CAL) Suite and Enterprise CAL Suite Vlume Licensing brief Licensing the Cre Client Access License (CAL) Suite and Enterprise CAL Suite Table f Cntents This brief applies t all Micrsft Vlume Licensing prgrams. Summary... 1 What s New in This

More information

User Guide Version 3.9

User Guide Version 3.9 User Guide Versin 3.9 Page 2 f 22 Summary Cntents 1 INTRODUCTION... 3 1.1 2 CREATE A NEW ACCOUNT... 4 2.1 2.2 3 NAVIGATION... 3 CREATE AN EMAIL ACCOUNT... 4 CREATE AN ALIAS ACCOUNT... 6 MODIFYING AN EXISTING

More information

Segment-oriented Recovery

Segment-oriented Recovery Advanced Tpics in Operating Systems, CS262a Prf. Eric A. Brewer (with help frm Rusty Sears) Segment-riented Recvery ARIES wrks great but is 20+ years ld and has sme prblems: viewed as very cmplex n available

More information

ACTIVITY MONITOR. Live view of remote desktops. You may easily have a look at any user s desktop.

ACTIVITY MONITOR. Live view of remote desktops. You may easily have a look at any user s desktop. Web Develpment Offshre Develpment Outsurcing SEO ACTIVITY MONITOR This pwerful tl allws yu t track any LAN, giving yu the mst detailed infrmatin n what, hw and when yur netwrk users perfrmed. Whether it

More information

Standards and Procedures for Approved Master's Seminar Paper or Educational Project University of Wisconsin-Platteville Requirements

Standards and Procedures for Approved Master's Seminar Paper or Educational Project University of Wisconsin-Platteville Requirements Standards and Prcedures fr Apprved Master's Seminar Paper r Educatinal Prject University f Wiscnsin-Platteville Requirements Guidelines Apprved by the Graduate Cuncil University f Wiscnsin-Platteville

More information

Budget Planning. Accessing Budget Planning Section. Select Click Here for Budget Planning button located close to the bottom of Program Review screen.

Budget Planning. Accessing Budget Planning Section. Select Click Here for Budget Planning button located close to the bottom of Program Review screen. Budget Planning Accessing Budget Planning Sectin Select Click Here fr Budget Planning buttn lcated clse t the bttm f Prgram Review screen. Depending n what types f budgets yur prgram has, yu may r may

More information

BRILL s Editorial Manager (EM) Manual for Authors Table of Contents

BRILL s Editorial Manager (EM) Manual for Authors Table of Contents BRILL s Editrial Manager (EM) Manual fr Authrs Table f Cntents Intrductin... 2 1. Getting Started: Creating an Accunt... 2 2. Lgging int EM... 3 3. Changing Yur Access Cdes and Cntact Infrmatin... 3 3.1

More information

Merchant Management System. New User Guide CARDSAVE

Merchant Management System. New User Guide CARDSAVE Merchant Management System New User Guide CARDSAVE Table f Cntents Lgging-In... 2 Saving the MMS website link... 2 Lgging-in and changing yur passwrd... 3 Prcessing Transactins... 4 Security Settings...

More information

LogMeIn Rescue Web SSO via SAML 2.0 Configuration Guide

LogMeIn Rescue Web SSO via SAML 2.0 Configuration Guide LgMeIn Rescue Web SSO via SAML 2.0 LgMeIn Rescue Web SSO via SAML 2.0 Cnfiguratin Guide 02-19-2014 Cpyright 2015 LgMeIn, Inc. 1 LgMeIn Rescue Web SSO via SAML 2.0 Cntents 1 Intrductin... 3 1.1 Dcument

More information

CHECKING ACCOUNTS AND ATM TRANSACTIONS

CHECKING ACCOUNTS AND ATM TRANSACTIONS 1 Grades 6-8 Lessn 1 CHECKING ACCOUNTS AND ATM TRANSACTIONS Tpic t Teach: This lessn is intended fr middle schl students in sixth thrugh eighth grades during a frty minute time perid. The lessn teaches

More information

QBT - Making business travel simple

QBT - Making business travel simple QBT - Making business travel simple In business travel, cmplexity csts. S, we ffer less f it. We adpt the latest technlgy and make it simple, transparent and highly persnal. S yu get mre f what yu need

More information

Responsive Design Fundamentals Chapter 1: Chapter 2: name content

Responsive Design Fundamentals Chapter 1: Chapter 2: name content Lynda.cm Respnsive Design Fundamentals Chapter 1: Intrducing Respnsive Design Respnsive design is a design strategy that is centered n designing yur cntent s that it respnds t the envirnment its encuntered

More information

Table of Contents. Welcome to Employee Self Service... 3 Who Do I Call For Help?... 3

Table of Contents. Welcome to Employee Self Service... 3 Who Do I Call For Help?... 3 ALABAMA STATE UNIVERSITY HUMAN RESOURCES EMPLOYEE SELF SERVICE USER GUIDE 2 Table f Cntents Welcme t Emplyee Self Service... 3 Wh D I Call Fr Help?... 3 Hw d I access Emplyee Self Service?... 4 Persnal

More information

Watlington and Chalgrove GP Practice - Patient Satisfaction Survey 2011

Watlington and Chalgrove GP Practice - Patient Satisfaction Survey 2011 Watlingtn and Chalgrve GP - Patient Satisfactin Survey 2011 Backgrund During ne week in Nvember last year patients attending either the Chalgrve r the Watlingtn surgeries were asked t cmplete a survey

More information

A Journey from data to dashboard: Visualizing the university instructional classroom utilization and diversity trends with SAS Visual Analytics

A Journey from data to dashboard: Visualizing the university instructional classroom utilization and diversity trends with SAS Visual Analytics SESUG 2015 Paper RIV125 A Jurney frm data t dashbard: Visualizing the university instructinal classrm utilizatin and diversity trends with SAS Visual Analytics ABSTRACT Shweta Dshi, Office f Institutinal

More information

Using Sentry-go Enterprise/ASPX for Sentry-go Quick & Plus! monitors

Using Sentry-go Enterprise/ASPX for Sentry-go Quick & Plus! monitors Using Sentry-g Enterprise/ASPX fr Sentry-g Quick & Plus! mnitrs 3Ds (UK) Limited, February, 2014 http://www.sentry-g.cm Be Practive, Nt Reactive! Intrductin Sentry-g Enterprise Reprting is a self-cntained

More information

PBS TeacherLine Course Syllabus

PBS TeacherLine Course Syllabus 1 Title Fstering Cperative Learning, Discussin, and Critical Thinking in Elementary Math (Grades 1-5) Target Audience This curse is intended fr pre-service and in-service grades 1-5 teachers. Curse Descriptin

More information

HR Management Information (HRS)

HR Management Information (HRS) HR Management Infrmatin (HRS) Fact Sheet N 10. Managing Access t Claims Online T give access t ther departmental staff yu must be a Site Leader ie a Principal r Preschl Directr. If yu are nt a site leader

More information

Times Table Activities: Multiplication

Times Table Activities: Multiplication Tny Attwd, 2012 Times Table Activities: Multiplicatin Times tables can be taught t many children simply as a cncept that is there with n explanatin as t hw r why it is there. And mst children will find

More information

Legacy EMR Data Conversions

Legacy EMR Data Conversions Legacy EMR Data Cnversins Agenda Abut us Drivers fr EMR Replacement Things t Cnsider Tp 5 Reasns EMR Cnversins Fail Optins fr Legacy EMR Cnversin Case Study Abut Us Health efrmatics is a healthcare IT

More information

DEPARTMENTAL WEBSITE REDESIGN PROJECT PROJECT PLAN

DEPARTMENTAL WEBSITE REDESIGN PROJECT PROJECT PLAN DEPARTMENTAL WEBSITE REDESIGN PROJECT PROJECT PLAN May & June 2015 Table f Cntents Faculty f Arts & Science Departmental Website Redesign Prject Backgrund... 3 Needs... 3 Objective... 4 Target Audiences...

More information

Setting up your New Staff Voicemail. EVA: Exchange Voicemail Access. IT Services

Setting up your New Staff Voicemail. EVA: Exchange Voicemail Access. IT Services Setting up yur New Staff Vicemail EVA: Exchange Vicemail Access IT Services 1. Welcme t the Exchange 2010 Unified Messaging Instructins fr campus Staff vicemail Cventry University is rlling ut a new email

More information

Intel Hybrid Cloud Management Portal Update FAQ. Audience: Public

Intel Hybrid Cloud Management Portal Update FAQ. Audience: Public Intel Hybrid Clud Management Prtal Update FAQ Audience: Public Purpse: Prepare fr the launch f the Intel Hybrid Clud Platfrm multi-user/multi-tier update Versin: Final FAQs What s new in the Intel Hybrid

More information

Virtual Meetings and Virtual Teams Using Technology to Work Smarter

Virtual Meetings and Virtual Teams Using Technology to Work Smarter http://www.psu.edu/president/pia/innvatin/ INNOVATION INSIGHT SERIES NUMBER 9 Virtual Meetings and Virtual Teams Using Technlgy t Wrk Smarter Yu need t have a meeting. Sme f the peple yu d like t include

More information

Change Management Process

Change Management Process Change Management Prcess B1.10 Change Management Prcess 1. Intrductin This plicy utlines [Yur Cmpany] s apprach t managing change within the rganisatin. All changes in strategy, activities and prcesses

More information

A COMPLETE GUIDE TO ORACLE BI DISCOVERER END USER LAYER (EUL)

A COMPLETE GUIDE TO ORACLE BI DISCOVERER END USER LAYER (EUL) A COMPLETE GUIDE TO ORACLE BI DISCOVERER END USER LAYER (EUL) Authr: Jayashree Satapathy Krishna Mhan A Cmplete Guide t Oracle BI Discverer End User Layer (EUL) 1 INTRODUCTION END USER LAYER (EUL) The

More information

2008-2011 CSU STANISLAUS INFORMATION TECHNOLOGY PLAN SUMMARY

2008-2011 CSU STANISLAUS INFORMATION TECHNOLOGY PLAN SUMMARY 2008-2011 CSU STANISLAUS INFORMATION TECHNOLOGY PLAN SUMMARY OFFICE OF INFORMATION TECHNOLOGY AUGUST 2008 Executive Summary The mst recent CSU Stanislaus infrmatin technlgy (IT) plan was issued in 2003.

More information

BackupAssist SQL Add-on

BackupAssist SQL Add-on WHITEPAPER BackupAssist Versin 6 www.backupassist.cm 2 Cntents 1. Requirements... 3 1.1 Remte SQL backup requirements:... 3 2. Intrductin... 4 3. SQL backups within BackupAssist... 5 3.1 Backing up system

More information

Space Exploration Classroom Activity

Space Exploration Classroom Activity Space Explratin Classrm Activity The Classrm Activity intrduces students t the cntext f a perfrmance task, s they are nt disadvantaged in demnstrating the skills the task intends t assess. Cntextual elements

More information

Dec. 2012. Transportation Management System. An Alternative Traffic Solution for the Logistics Professionals

Dec. 2012. Transportation Management System. An Alternative Traffic Solution for the Logistics Professionals Dec. 2012 Transprtatin Management System An Alternative Traffic Slutin fr the Lgistics Prfessinals What is a TMS-Lite system? What are the features and capabilities f a TMS-Lite system? Why chse a TMS-Lite

More information

1.0 Special Education and Conversion in MyEducation BC

1.0 Special Education and Conversion in MyEducation BC 1.0 Special Educatin and Cnversin in MyEducatin BC Special Educatin student eligibilities have been cnverted int MyEducatin BC frm BCeSIS. In rder t d s, special educatin wrkflw shells cntaining the designatin

More information

Search Engine Optimisation and Web Analytics

Search Engine Optimisation and Web Analytics E-Cmmerce Applicatins Prmting yur Site: Search Engine Optimisatin and Web Analytics Sessin 6 1 Next steps Prmting yur Business Having develped website/e-shp shp next step is t prmte the business Marketing

More information

Equal Pay Audit 2014 Summary

Equal Pay Audit 2014 Summary Equal Pay Audit 2014 Summary Abut the dcument The fllwing summary is an abridged versin f Ofcm s equal pay audit 2014. In the full versin f the reprt we set ut ur key findings, cmment n any issues arising

More information

1 Last updated: 12/11/12

1 Last updated: 12/11/12 Overview: Online Curse Delivery Factrs In a face-t-face curse, all instructin takes place in the classrm. The learning management system (LMS, e.g., Mdle/LATTE) may be used t huse supplemental curse materials

More information

What's New. Sitecore CMS 6.6 & DMS 6.6. A quick guide to the new features in Sitecore 6.6. Sitecore CMS 6.6 & DMS 6.6 What's New Rev: 2012-10-22

What's New. Sitecore CMS 6.6 & DMS 6.6. A quick guide to the new features in Sitecore 6.6. Sitecore CMS 6.6 & DMS 6.6 What's New Rev: 2012-10-22 Sitecre CMS 6.6 & DMS 6.6 What's New Rev: 2012-10-22 Sitecre CMS 6.6 & DMS 6.6 What's New A quick guide t the new features in Sitecre 6.6 Sitecre is a registered trademark. All ther brand and prduct names

More information

Using PayPal Website Payments Pro with ProductCart

Using PayPal Website Payments Pro with ProductCart Using PayPal Website Payments Pr with PrductCart Overview... 2 Abut PayPal Website Payments Pr & Express Checkut... 3 What is Website Payments Pr?... 3 Website Payments Pr and Website Payments Standard...

More information

Request for Resume (RFR) CATS II Master Contract. All Master Contract Provisions Apply

Request for Resume (RFR) CATS II Master Contract. All Master Contract Provisions Apply Sectin 1 General Infrmatin RFR Number: (Reference BPO Number) Functinal Area (Enter One Only) F50B3400026 7 Infrmatin System Security Labr Categry A single supprt resurce may be engaged fr a perid nt t

More information