TECHNICAL DOCUMENTATION

Size: px
Start display at page:

Download "TECHNICAL DOCUMENTATION"

Transcription

1 TECHNICAL DOCUMENTATION OF mfmoduleappointments (Version 1.0) Developed By : Mindfire Solutions

2 CONTENTS 1. Overview 2. Project Environment 3. Plug-ins / Beans Used 4. Screen Resolution 5. Database Structure 6. Important Forms 7. Modifications Required 8. Installation Guide 9. Screen shots

3 OVERVIEW The main purpose of this application is to provide an efficient way to maintain daily appointments. User can create and manage there own appointments. It has a good, user friendly interface which makes it easier to handle the appointments. We have referred Google calendar for developing this module. This module is both Smart and Web client compatible. Internationalization is implemented for multi language support. Administrator users can set the preferences for the application. User can have multiple concurrent appointments at a particular time. The user get notified by the application before the appointment get started. The time duration before which the alerts should be fired are configurable in Settings section. Another module called mfmodulebatchprocessor is there. This module will work as a batch processor and will run in the Servoy Server as a Headless Client. This headless client periodically checks the upcoming appointments and sends notification to the respective users about their upcoming appointments. Modules : There are two modules. The first one is used to create, manage and to display the appointments. And the second one is used as the Headless client to serve notifications. 1. mfmoduleappointments 2. mfmodulebatchprocessor

4 Key points : 1. Appointments can be created by double clicking on the calendar area. It will auto populate the start and end date time of the new appointment. All the informations related to the appointment can be set over here. 2. Select any appointment by clicking on its area. 3. Both Smart and Web client support. 4. Recurrence is implemented to create multiple appointments at a time. 5. Provides notifications to users related to upcoming Appointments. 6. Context menu options are given to easily modify the appointments. 7. Edit, delete, duplicate appointment, setting priority, marking as done/undone, increasing/decreasing appointment duration, changing appointment type can be handled in the context menu. 8. You can jump to any date by selecting the date in the top left corner. 9. A navigator calendar is provided, which displays coming three months dates by default. On selecting any date the main calendar screen get refreshed by populating the appointments for that date time period. 10. The bold dates in the side navigator calendar depicts the presence of appointments on that particular date for that user. 11. Double click on any appointment to open the appointment in its editor, where you can modify the appointment details. 12. Appointment can be deleted by simply pressing DEL key after selecting the appointment. 13. All the views support drag and drop. So drag any appointment to any other cell to automatically modify the appointment's start and end date time. 14. While dragging any appointment, press CTRL key to duplicate the appointment by placing it in the desired date time cell. All these duplicated appointments are automatically related to the same master record and they are the part of the same series.

5 15. To move any appointment towards the end or beginning of the day, in day and week view, select it and press CTRL + UP / DOWN key. This will change the start and end date of the appointment automatically. 16. To increase / decrease the appointment duration in the day and week view, select the appointment and press SHIFT + UP / DOWN key. 17. Tips are being displayed at the bottom of the main calendar, when show tips is enables in the settings. 18. Press CTRL + F to show the search form for appointments. 19. Select any appointment from the search result to show it in Day view. 20. In the search criteria type any keyword, which will be matched with the Title and Location of the appointments. 21. Click on Today link to refresh the main calendar for today's date. In Day view it will open the screen for current date. In Week view it will show current week. And in Month view it will open current month. 22. Click on the Week view's header date to go to the Day view for that date. 23. Click on the New button to show the screen to add new appointment to the application. 24. Click on the left bottom Company logo to open the company site in browser. Project Environment : Technology : Java RAD Tool : Servoy Database : MySQL OS : Windows XP For web client, this module is tested in Firefox.

6 Plug-ins / Beans used : In Version-1.0 external Plug-ins are not used. Only some of the Servoy default plug-ins are used. They are. 1. Dialogs Plugin : To show the warnings, errors and Questions through out the application. 2. File Plugin : This plug-in is used to import logos/images to the application. 3. Images Plugin : Used to validate image files. 4. Mail Plugin : This is used to send notifications to the users. 5. Scheduler Plugin : This plug-in is used to create batch jobs to send appointment related notifications. 6. Window Plugin : This plug-in is used to create keyboard shortcuts. This is also used to create context menus for the appointments. No beans are used in this module. Screen Resolution : Screen resolution for mfmoduleappointments has been setup to 1440 X 1024.

7 Database Structure : This module mfmoduleappointments using one database connection: schedule Table Information : 1. mfcal_tbl_appt_masters : This table is used to store the appointment master record. It is created to relate all the appointments created in a recurrence. It uses the foreign key as user_idx and appt_type_idx from the table mfcal_tbl_appt_types. 2. mfcal_tbl_appointments : All the appointments are being stored in this table. The appointments are related to the master record by using the foreign key appt_master_idx from the mfcal_tbl_appt_masters table. 3. mfcal_tbl_appt_types : All the appointment types are managed over this table. The Administrator user can create, edit and delete the appointment type records. Each appointment type is associated with a color. This color is used to distinguish appointments of different types. The Administrator user can change/update the color codes for the appointment types. 4. tbl_preference : This is the preference table used for the application. All the preferences are managed in this table by Administrator. Administrator can set the preferences by clicking the settings link in the main application area. 5. mfcal_tbl_tips Application related tips and tricks are managed over here. The tips can be visible when the show tips is enables. The tips can be seen below to the main calendar area. 6. i18n_message This is the table for i18n message.

8 ER Diagram :

9 Important Forms : 1. mfcal_main : This is the main/first form in mfmoduleappointments module. This provides the basic design of the calendar. Code for creating the left Navigator calendar and Main Calendar is written here. The logic to show, manage, add, edit, delete appointments are done. All the calendar display views are managed here. 2. mfcal_appointments : This form is used to display the list of appointments. Mainly used to show the appointments of the Search result. 3. mfcal_newappointment : Used to Create new Appointments. Also used for Editing existing Appointments. 4. mfcal_searchappointment : This is the main form for appointment search. 5. mfcal_settingsmain : This is the main form and content holder for all the settings related forms. All the settings related forms are displayed over here in tab panel. 6. mfcal_settingsappttype : Here appointment types can be added, edited and deleted. 7. mfcal_settingsgeneral : All the General settings for the Calendar are provided over here. Settings related to alerts and notifications are provided.

10 8. mfcal_settingsnavcalendar : All the settings related to the navigator calendar are shown and managed. 9. mfcal_settingstips : Tips can be added or Modified to the application in this form. Modifications Required (Exposed methods) : This mfmoduleappointments is a generic Module, which can be attached with any Servoy application. So after attaching this module to any Servoy application, some global methods needs to be modified. Check the following methods. 1. globals.mfcal_g_isadmin : [mfmoduleappointments] This method returns true/false after checking the currently logged in user is administrator or not. Return true when the current user is administrator, else return false. 2. globals.mfcal_g_getuseridx : [mfmoduleappointments] This method is intended to return the current user's id (primary key). This user id is used to distinguish the appointments of one user from another. 3. globals.mfcal_g_getservername : [mfmoduleappointments] This method returns current database server name. The default server name is 'schedule' without quotes. If you change the server name, then return the new server name by this method.

11 4. globals.mfcal_g_getcompanywebsite : [mfmoduleappointments] This returns the current company's website address. 5. globals.mfcal_g_getusermailid(user_idx) : [mfmodulebatchprocessor] This method returns the mail id of the user whose id passed as parameter. This method is present in 'mfmodulebatchprocessor' module.

12 Installation Guide : I. Importing Solution to Servoy Developer : Open developer. Create a database connection named schedule. Right Click on All Solutions node. Select Import Solution. Select the mfmoduleappointments.servoy file in the browse box. Check the option Allow data model (database) changes. Hit Finish. Give password when asked : mindfire The same process will be repeated to import the batch processor module to the Servoy developer.

13 II. Importing Solution to Servoy Server : Make sure that the Servoy Server is started. Open Servoy Server in the browser. Click Solutions from left panel. Click Import Solution and browse the mfmoduleappointments.servoy file to import. Hit Import to start importing the solution to the server. Repeat this process for the mfmodulebatchprocessor.servoy solution.

14 III. Setting Batch processor in Servoy Server : Now you need to setup the batch processor in the server. Go to the Batch Processors Section. Select the mfmodulebatchprocessors solution from the drop down. Hit on Add button. Click Start button in the Status area of the batch processor to start the batch processor client. Restart Servoy Server.

15 Screen shots :

16

17

18 Conclusion : We hope this module will help many of the Servoy developers. We expect few issues and new feature requests. Fill free to contact us at Thank you all for your support. === O ===

BASIC NAVIGATION & VIEWS...

BASIC NAVIGATION & VIEWS... Content Overview VISUAL TOUR... 5 NEW FEATURES IN OUTLOOK 2010... 6 BASIC NAVIGATION & VIEWS... 7 SETTING PREFERENCES... 7 Creating an Outlook Shortcut... 7 Choosing a Startup View... 7 CUSTOMIZING INBOX

More information

Getting Started The Outlook Web Access Window

Getting Started The Outlook Web Access Window QUICK Source Microsoft Outlook Web Access in Exchange Server 2003 Getting Started The Outlook Web Access Window ❶ ❷ ❸ ❹ ❺ ❻ ❼ ❽ Using the Reading Pane The Reading Pane allows you to view your e-mail messages

More information

Table of Contents COURSE OVERVIEW... 3 LESSON 1: OUTLOOK 2010 CALENDAR INTERFACE... 5

Table of Contents COURSE OVERVIEW... 3 LESSON 1: OUTLOOK 2010 CALENDAR INTERFACE... 5 Table of Contents COURSE OVERVIEW... 3 LESSON 1: OUTLOOK 2010 CALENDAR INTERFACE... 5 OPEN OUTLOOK CALENDAR... 5 Ribbon... 6 Navigation Pane... 6 Appointment Area... 6 Task Pane... 6 To-Do Bar... 6 THE

More information

ADVANCED GroupWise 7.0

ADVANCED GroupWise 7.0 ADVANCED GroupWise 7.0 Distributed by the Administrative Technology User Support Department under the Direction of Dr. Russell Clukey, Executive Director, Support Services. Feel free to contact the AT

More information

Microsoft Outlook 2003 Microsoft screen shots used in accordance with Microsoft rules to be viewed at URL

Microsoft Outlook 2003 Microsoft screen shots used in accordance with Microsoft rules to be viewed at URL Microsoft Outlook 2003 Microsoft screen shots used in accordance with Microsoft rules to be viewed at URL http://www.microsoft.com/permission/copyrgt/cop-img.htm#screenshot Compiled by: Charmaine Morris

More information

2015 TECHNOLOGY SESSION: ADVANCING YOUR OUTLOOK 2013 SKILLS

2015 TECHNOLOGY SESSION: ADVANCING YOUR OUTLOOK 2013 SKILLS 2015 TECHNOLOGY SESSION: ADVANCING YOUR OUTLOOK 2013 SKILLS Here s what you will learn in this session: Creating a professional signature Sort and organize your email using folders Attachments Identifying

More information

USER MANUAL. Calendar 365 TABLE OF CONTENTS. Version: 4.0

USER MANUAL. Calendar 365 TABLE OF CONTENTS. Version: 4.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Calendar 365... 1 Pre-requisites... 2 Installation... 2 Installation Steps... 2 Configuration Steps... 5 Calendar Management... 19 Calendar Activities...

More information

OUTLOOK TIPS AND TRICKS GINI COURTER, M.B.A., TRIAD CONSULTING

OUTLOOK TIPS AND TRICKS GINI COURTER, M.B.A., TRIAD CONSULTING 1 OUTLOOK TIPS AND TRICKS GINI COURTER, M.B.A., TRIAD CONSULTING DISPLAYING THE ADVANCED TOOLBAR (2007) The Advanced toolbar isn t advanced; it s just the commands that they couldn t fit on the Standard

More information

Scheduling WebEx Meetings with Microsoft Outlook

Scheduling WebEx Meetings with Microsoft Outlook Scheduling WebEx Meetings with Microsoft Outlook About WebEx Integration to Outlook, page 1 Scheduling a WebEx Meeting from Microsoft Outlook, page 2 Starting a Scheduled Meeting from Microsoft Outlook,

More information

SpaceShuttle User guide v3

SpaceShuttle User guide v3 SpaceShuttle User guide v3 1.Get Started with SpaceShuttle p2 1.1 For Windows p2 How to download and install Aspera Connect p2 1.2 For Mac p4 How to download and install Aspera Connect p4 2. Accessing

More information

Scheduling WebEx Meetings with Microsoft Outlook

Scheduling WebEx Meetings with Microsoft Outlook Scheduling WebEx Meetings with Microsoft Outlook About WebEx Integration to Outlook, page 1 Scheduling a WebEx Meeting from Microsoft Outlook, page 2 Starting a Scheduled Meeting from Microsoft Outlook,

More information

e-library Tips Look over the e-library Search screen. Notice the three searches in the upper left-hand corner:

e-library Tips Look over the e-library Search screen. Notice the three searches in the upper left-hand corner: e-library Tips Introduction: e-library is now available through DealerNet at http://www.asdealernet.com. This document is intended to give a general overview of the e-library application. For more detailed

More information

Google Calendar. View: Toggle the calendar view between day, week, month and more All day events: Events and tasks set for all day

Google Calendar. View: Toggle the calendar view between day, week, month and more All day events: Events and tasks set for all day 12 Google Calendar 1 2 11 6 5 4 3 10 9 8 7 Event status Not replied to Accepted Tentative Declined Reminder(s) set for the event One or more individuals invited to the event Private event Recurring or

More information

Astra Schedule User Guide Scheduler

Astra Schedule User Guide Scheduler Astra Schedule User Guide 7.5.12 Scheduler 1 P a g e ASTRA SCHEDULE USER GUIDE 7.5.12... 1 LOGGING INTO ASTRA SCHEDULE... 3 LOGIN CREDENTIALS... 3 WORKING WITH CALENDARS... 4 CHOOSING A CALENDAR AND FILTER...

More information

Table of Contents ADMIN PAGES QUICK REFERENCE GUIDE

Table of Contents ADMIN PAGES QUICK REFERENCE GUIDE Admin Pages brings an all new look and feel to Banner. It delivers a fresh user experience, all new tools, and significantly improved capabilities. Admin Pages replaces underlying Banner 8 INB technology

More information

Banner 9. Navigation Guide Revised for Ithaca College Fall The URL for Banner 9 is

Banner 9. Navigation Guide Revised for Ithaca College Fall The URL for Banner 9 is Banner 9 Navigation Guide Revised for Ithaca College Fall 2018 The URL for Banner 9 is http://banner.ithaca.edu/ Login with Netpass Credentials Recommended Browsers Firefox Safari Edge Chrome (no Java

More information

Automation Engine. Working with Shuttle

Automation Engine. Working with Shuttle Working with Shuttle 01-2017 Contents 1. What is Shuttle?... 3 2. Installing Shuttle... 4 3. Shuttle Setup...5 3.1 Configuring Shuttle in Automation Engine... 5 3.2 Making Tickets Public...6 3.3 Shuttle

More information

Quick Tips & Tricks. Important You must use SEMICOLONS ( ie; ) to separate address when sending mail to multiple users

Quick Tips & Tricks. Important You must use SEMICOLONS ( ie; ) to separate  address when sending mail to multiple users Quick Tips & Tricks Important You must use SEMICOLONS ( ie; ) to separate email address when sending mail to multiple users Customize Mail View Click, View, and then highlight Current View Click, Customize

More information

SOU Banner 9 Navigation Guide

SOU Banner 9 Navigation Guide SOU Banner 9 Navigation Guide Draft 11.29.2018 Contents Introduction.... 2 Application Navigator.... 2 Basic Navigation.... 3 Page Header.... 4 Key Block... 4 Sections... 5 Bottom Section Navigation...

More information

BE Share. Microsoft Office SharePoint Server 2010 Basic Training Guide

BE Share. Microsoft Office SharePoint Server 2010 Basic Training Guide BE Share Microsoft Office SharePoint Server 2010 Basic Training Guide Site Contributor Table of Contents Table of Contents Connecting From Home... 2 Introduction to BE Share Sites... 3 Navigating SharePoint

More information

Navigation Bar Icons

Navigation Bar Icons Outlook 2016 Main Screen Navigation Bar Icons Mail Calendar Contains mail-related folders like your Inbox, Sent Items and Search Folders. Use the Favorite Folders at the top of the pane for easy access

More information

Navigating Your Profile

Navigating Your Profile Part 1: Profile Login Navigating Your Profile 1. Start at the Greater Kansas City Community Foundation s home page, www.growyourgiving.org. Select Nonprofit Search. 2. This is the Nonprofit Search home

More information

APPOINTMENT SCHEDULING GUIDE

APPOINTMENT SCHEDULING GUIDE APPOINTMENT SCHEDULING GUIDE 2018 2 APPOINTMENT SCHEDULING GUIDE CONTENTS Appointment scheduling guide... 3 Software requirements... 3 Getting started... 3 Appointment schedule tab overview... 4 Request

More information

8x8 Virtual Office Click2Pop for SugarCRM Setup Guide

8x8 Virtual Office Click2Pop for SugarCRM Setup Guide 8x8 Virtual Office Click2Pop for SugarCRM Setup Guide May 2012 Table of Contents 8x8 Click2Pop for SugarCRM... 3 Requirements... 3 Server Requirements... 3 Client Requirements... 3 Installation... 3 Installation

More information

ASTRA USER GUIDE. 1. Introducing Astra Schedule. 2. Understanding the Data in Astra Schedule. Notes:

ASTRA USER GUIDE. 1. Introducing Astra Schedule. 2. Understanding the Data in Astra Schedule. Notes: ASTRA USER GUIDE 1. Introducing Astra Schedule Astra Schedule is the application used by Academic Space Scheduling & Utilization to schedule rooms for classes and by academic colleges, schools, and departments

More information

My Sysco Reporting Job Aid for CMU Customers. My Sysco Reporting. For CMU Customers (Serviced by Program Sales)

My Sysco Reporting Job Aid for CMU Customers. My Sysco Reporting. For CMU Customers (Serviced by Program Sales) My Sysco Reporting For CMU Customers (Serviced by Program Sales) 1 Accessing My Sysco Reporting... 2 Logging In... 2 The Reporting Dashboard... 3 My Sysco Reporting Process... 6 Generating a Report...

More information

Scheduling. End-User Guide 2018 Practice Engine Systems, Inc.

Scheduling. End-User Guide 2018 Practice Engine Systems, Inc. Scheduling End-User Guide 2018 Practice Engine Systems, Inc. CONTENTS Change History... 4 Scheduling Dashboard... 5 User Name Dashboard Widget... 6 Profile Dashboard Widget... 7 Preferred Locations tab...

More information

Page Topic 02 Log In to KidKare 02 Using the Navigation Menu 02 Change the Language

Page Topic 02 Log In to KidKare 02 Using the Navigation Menu 02 Change the Language Page Topic 02 Log In to KidKare 02 Using the Navigation Menu 02 Change the Language help.kidkare.com 03 Enroll a Child 03 Withdraw a Child 03 View Pending and Withdrawn Children 04 View Kids by Enrollment

More information

coconut calendar user guide Page 1 of 46

coconut calendar user guide Page 1 of 46 coconut calendar user guide Page 1 of 46 coconut calendar user guide CONTENTS Coconut Calendar User guide overview 4 Staff view Dashboard 5 The Dashboard 5 Staff view Schedule 6 Access your schedule 6

More information

BANNER 9 QUICK NAVIGATION GUIDE

BANNER 9 QUICK NAVIGATION GUIDE Application Navigator Application Navigator provides a single interface to navigate the Banner 9 JAVA pages. It is a tool that allows you to go back and forth between the current Banner forms and the new

More information

Hosted VoIP Phone System. Hosted Call Center. Supervisor User Guide

Hosted VoIP Phone System. Hosted Call Center. Supervisor User Guide Hosted VoIP Phone System Hosted Call Center Supervisor User Guide Contents 1 About This Document... 6 1.1 Audience... 6 1.2 How This Guide is Organized... 6 1.3 Software Requirements... 7 2 Introduction

More information

Introduction...2. Application Navigator...3

Introduction...2. Application Navigator...3 Banner 9 Training Contents Introduction...2 Application Navigator...3 Basic Navigation...5 Page Header...5 Key Block...6 Sections...6 Bottom Section Navigation...7 Notification Center Messages...7 Data

More information

GroupWise 2012 Guide. February IT Training and Empowerment Petra Gainsford

GroupWise 2012 Guide. February IT Training and Empowerment Petra Gainsford GroupWise 2012 Guide February 2014 IT Training and Empowerment Petra Gainsford Table of Contents GroupWise 2012 1 GroupWise Login... 1 2 Accessing your Mail... 1 2.1 Reading E-Mail...1 2.2 Creating Messages...1

More information

GroupWise 7 Devereux User s Guide

GroupWise 7 Devereux User s Guide What's New in GroupWise 7 New Look o Navigation Bar, Tabs, Home, Panels, Colors, More Icons More Customizable o 7 Default; 6.5; Simple Additional Functionality o Quick Spellchecker; Multiple Calendars;

More information

MetaViewer Help Guide

MetaViewer Help Guide MetaViewer Help Guide Logging In... 2 Performing a Master Search... 3 Using a Shortcut to Retrieve Current Reporting (No Search Option)... 4 Performing a Report Search... 5 Performing a Search within Multiple

More information

Academic Mentor Help Manual for CornerstoneConnect Insight. Accessing Insight. Go to URL

Academic Mentor Help Manual for CornerstoneConnect Insight. Accessing Insight. Go to URL Academic Mentor Help Manual for CornerstoneConnect Insight Accessing Insight Go to URL https://wustl-insight.symplicity.com/manager/ Log in with provided username and password (NOT your WUSTL KEY) If you

More information

2012 Learning Guide Employee. StaffReady.

2012 Learning Guide Employee. StaffReady. 2012 Learning Guide Employee StaffReady http://www.staffready.com Table of Contents 1 MODULE ONE (1): INTRODUCTION, LOGIN, AND WELCOME TAB... 3 1.1 SCHEDULEREADY OVERVIEW... 3 1.2 TECHNOLOGY UPGRADES...

More information

J.S. Paluch Co. s Secure Sales Site Open Cancellation Notifications Feature

J.S. Paluch Co. s Secure Sales Site Open Cancellation Notifications Feature This feature allows you to find the advertiser details associated with open cancellation notifications, along with the date notified, canceled, and/or saved. Click the Search button without selected any

More information

Clearspan Web Interface Getting Started Guide

Clearspan Web Interface Getting Started Guide Clearspan Web Interface Getting Started Guide RELEASE 22 March 2018 NOTICE The information contained in this document is believed to be accurate in all respects but is not warranted by Mitel Networks Corporation

More information

HGC SUPERHUB HOSTED EXCHANGE

HGC SUPERHUB HOSTED EXCHANGE HGC SUPERHUB HOSTED EXCHANGE EMAIL OUTLOOK WEB APP (OWA) 2010 USER GUIDE V2013.6 HGC Superhub Hosted Email OWA User Guide @ 2014 HGC. All right reserved. Table of Contents 1. Get Started... 4 1.1 Log into

More information

leveraging your Microsoft Calendar Browser for SharePoint Administrator Manual

leveraging your Microsoft Calendar Browser for SharePoint Administrator Manual CONTENT Calendar Browser for SharePoint Administrator manual 1 INTRODUCTION... 3 2 REQUIREMENTS... 3 3 CALENDAR BROWSER FEATURES... 4 3.1 BOOK... 4 3.1.1 Order Supplies... 4 3.2 PROJECTS... 5 3.3 DESCRIPTIONS...

More information

Chapter11 practice file folder. For more information, see Download the practice files in this book s Introduction.

Chapter11 practice file folder. For more information, see Download the practice files in this book s Introduction. Make databases user friendly 11 IN THIS CHAPTER, YOU WILL LEARN HOW TO Design navigation forms. Create custom categories. Control which features are available. A Microsoft Access 2013 database can be a

More information

Scheduling WebEx Meetings with Microsoft Outlook

Scheduling WebEx Meetings with Microsoft Outlook Scheduling WebEx Meetings with Microsoft Outlook About WebEx Integration to Outlook, page 1 Scheduling a WebEx Meeting from Microsoft Outlook, page 2 Starting a Scheduled Meeting from Microsoft Outlook,

More information

Decatur City Schools

Decatur City Schools Decatur City Schools Table of Contents Introduction...5 Objectives...5 Why GW web?...5 Log in options...5 The menu...7 Blue title bar...7 Navigation...7 Folder list...8 Buttons in the message pane...8

More information

VERSION JANUARY 19, 2015 TEST STUDIO QUICK-START GUIDE STANDALONE & VISUAL STUDIO PLUG-IN TELERIK A PROGRESS COMPANY

VERSION JANUARY 19, 2015 TEST STUDIO QUICK-START GUIDE STANDALONE & VISUAL STUDIO PLUG-IN TELERIK A PROGRESS COMPANY VERSION 2015.1 JANUARY 19, 2015 TEST STUDIO QUICK-START GUIDE STANDALONE & VISUAL STUDIO PLUG-IN TELERIK A PROGRESS COMPANY TEST STUDIO QUICK-START GUIDE CONTENTS Create your First Test.2 Standalone Web

More information

End-User Capabilities

End-User Capabilities End-User Capabilities 2391 W informs Controls > Products > Scheduler > End-User Capabilities The topics in this section describe operations available to end-users of the XtraScheduler suite. The following

More information

Hosted VoIP Phone System. Blue Platform. Hosted Call Center. Agent User Guide

Hosted VoIP Phone System. Blue Platform. Hosted Call Center. Agent User Guide Hosted VoIP Phone System Blue Platform Hosted Call Center Agent User Guide Contents 1 About This Document... 5 1.1 Audience... 5 1.2 How This Guide is Organized... 5 1.3 Software Requirements... 6 2 Introduction

More information

Parish . User Manual

Parish  . User Manual Parish Email User Manual Table of Contents LOGGING IN TO PARISH EMAIL... 3 GETTING STARTED... 3 GENERAL OVERVIEW OF THE USER INTERFACE... 3 TERMINATE THE SESSION... 4 EMAIL... 4 MESSAGES LIST... 4 Open

More information

Outlook Quick Start Guide

Outlook Quick Start Guide Getting Started Outlook 2013 Quick Start Guide File Tab: Click to access actions like Print, Save As, etc. Also to set Outlook Options. Quick Access Toolbar: Add your mostused tool buttons to this customizable

More information

Work Smart: Windows 7 New Features

Work Smart: Windows 7 New Features About Windows 7 New Features The Windows 7 operating system offers several new features to help you work faster and more efficiently, and enable you to access the files, folders, programs, and applications

More information

Log into your portal and then select the Banner 9 badge. Application Navigator: How to access Banner forms (now called pages.)

Log into your portal and then select the Banner 9 badge. Application Navigator: How to access Banner forms (now called pages.) Navigation Banner 9 Log into your portal and then select the Banner 9 badge. This will bring you to the Application Navigator. Application Navigator: How to access Banner forms (now called pages.) Menu

More information

Supplier SAP SNC User Guide

Supplier SAP SNC User Guide Supplier SAP SNC User Guide Version 1.0 July 29, 2014 AGCO Corporation Page 1 1 Introduction AGCO has chosen SAP Supplier Network Collaboration (SNC) to improve visibility and capability in North America

More information

Microsoft Office Outlook 2010

Microsoft Office Outlook 2010 Starting Microsoft Outlook 2010 with XP Click on Start, E-mail Microsoft Outlook or Start, All Programs, Microsoft Office, Microsoft Outlook. Starting Microsoft Outlook 2010 with Windows 7 Click on the

More information

Sage CRM 2016 R1 Release Notes. Revision: SYS-REA-ENG Updated: November 2015

Sage CRM 2016 R1 Release Notes. Revision: SYS-REA-ENG Updated: November 2015 Sage CRM 2016 R1 Release Notes Revision: SYS-REA-ENG-161-2.0 Updated: November 2015 Copyright 2015 Sage Technologies Limited, publisher of this work. All rights reserved. No part of this documentation

More information

Outlook Web Access (OWA) Tutorial

Outlook Web Access (OWA) Tutorial Outlook Web Access (OWA) Tutorial Outlook Web Access 2010 allows you to gain access to your email messages, calendars, contact, tasks and public folders from any computer with internet access. How to access

More information

Outlook - an Introduction to Version 2003 Table of Contents

Outlook - an Introduction to  Version 2003 Table of Contents Outlook - an Introduction to E-mail Version 2003 Table of Contents What is Outlook Starting Outlook The Navigation Pane Getting Help Creating and Sending a Message Using the College Exchange Directory

More information

File Cabinet Manager

File Cabinet Manager Tool Box File Cabinet Manager Java File Cabinet Manager Password Protection Website Statistics Image Tool Image Tool - Resize Image Tool - Crop Image Tool - Transparent Form Processor Manager Form Processor

More information

User Guide. Product: GreenFolders. Version: 3.8

User Guide. Product: GreenFolders. Version: 3.8 User Guide Product: GreenFolders Version: 3.8 Release Date: October 2014 GreenFolders 3.8 User Guide Introduction Table of Contents 1 Introduction... 6 2 General Information... 7 2.1 Login Procedure...

More information

EMS MASTER CALENDAR User Guide

EMS MASTER CALENDAR User Guide EMS MASTER CALENDAR User Guide V44.1 Last Updated: May 2018 EMS Software emssoftware.com/help 800.440.3994 2018 EMS Software, LLC. All Rights Reserved. Table of Contents CHAPTER 1: Introduction to the

More information

Outlook Tips & Tricks

Outlook Tips & Tricks Table of Contents CUSTOMIZE THE NAVIGATION PANE... 1 CUSTOMIZE THE READING PANE... 2 USE AND CUSTOMIZE THE TO-DO BAR... 3 USE QUICK FLAGS... 5 CREATE SEARCH FOLDERS... 6 USE AND CUSTOMIZE E-MAIL ALERTS...

More information

Looking at the Internet with Google Chrome & Firefox. Scoville Memorial Library Claudia Cayne - September, 2010

Looking at the Internet with Google Chrome & Firefox. Scoville Memorial Library Claudia Cayne - September, 2010 Looking at the Internet with Google Chrome & Firefox Scoville Memorial Library Claudia Cayne - ccayne@biblio.org September, 2010 Google Chrome & Firefox are web browsers - the decoder you need to view

More information

Zimbra User Guide Rev

Zimbra User Guide Rev Zimbra User Guide Rev. 2.12.2013 Using Zimbra Email To access Zimbra email, go to: https://email.outlookmail.com and enter your current network username and password. Supported browsers include: Windows

More information

Banner 9 Transition - Quick Reference

Banner 9 Transition - Quick Reference Banner 9 is a major upgrade to the Banner Student System, providing a completely new look and feel. It is easily compatible with all mobile devices. It introduces the Application Navigator, a single web

More information

INTEGRATED WORKFLOW. In this job aid, you will learn how to: Publish digital components. YOU ARE HERE Publish Digital Components

INTEGRATED WORKFLOW. In this job aid, you will learn how to: Publish digital components. YOU ARE HERE Publish Digital Components Vendor Publishing Digital Components INTEGRATED WORKFLOW PUBLISHING PHASE In this Publishing workflow phase process you deliver digital component files to manufacturing/production vendors. This constitutes

More information

Treasury Management User Guide. Online Banking

Treasury Management User Guide. Online Banking Treasury Management User Guide Online Banking Released August 2018 Treasury Management... 4 Logging in to Treasury Management...5 Helpful Hints...10 User Menu... 12 Profile and Preferences... 12 Notification

More information

IBM Notes Client V9.0.1 Reference Guide

IBM Notes Client V9.0.1 Reference Guide IBM Notes Client V9.0.1 Reference Guide Revised 05/20/2016 1 Accessing the IBM Notes Client IBM Notes Client V9.0.1 Reference Guide From your desktop, double-click the IBM Notes icon. Logging in to the

More information

WEB TIME SUPERVISOR GUIDE

WEB TIME SUPERVISOR GUIDE Revised 02/23/2018 WEB TIME SUPERVISOR GUIDE CLIENT RESOURCE PAYLOCITY.COM TABLE OF CONTENTS Web Time... 3 Home... 15 Employees... 28 Reports... 130 Web Kiosk Setup... 132 Glossary... 156 Index... 158

More information

Total Record Getting Started Guide

Total Record Getting Started Guide Total Record Overview Total Record is the electronic medical records system used at InVision Human Services. Total Record maintains information about the programs at InVision and the clients participating

More information

Welcome to Selector2GO Help

Welcome to Selector2GO Help Welcome to Selector2GO Help World Headquarters 445 Hamilton Avenue, 7th floor, White Plains, New York 10601 United States of America Support: +1 914 259 4900 support@rcsworks.com 2004-2018. All Rights

More information

Sun Java System Calendar Express Getting Started

Sun Java System Calendar Express Getting Started Login to Sun Java System Calendar Express Open browser, i.e.; Firefox or Internet Explorer. In the Address field key in siue.edu. Press Enter. Sun Java System Calendar Express Getting Started Enter your

More information

Calendar Basics Outlook 2016 for Windows

Calendar Basics Outlook 2016 for Windows Calendar Basics Outlook 2016 for Windows Texas Christian University Information Technology Table of Contents Navigate the Calendar... 1 Create and Edit New Calendar Items... 2 New Appointment... 2 Add

More information

Microsoft Outlook Basics

Microsoft Outlook Basics Microsoft Outlook 2010 Basics 2 Microsoft Outlook 2010 Microsoft Outlook 2010 3 Table of Contents Getting Started with Microsoft Outlook 2010... 7 Starting Microsoft Outlook... 7 Outlook 2010 Interface...

More information

GroupWise 7 WebAccess Introduction

GroupWise 7 WebAccess Introduction GroupWise 7 WebAccess Introduction Integrated Technology Services January 2007 TABLE OF CONTENTS Introduction 3 Getting Started 3 Getting Help 4 Passwords (Changing) 4 WebAccess Basics 5 Tool/Navigation

More information

Business Online Banking User Guide

Business Online Banking User Guide Business Online Banking User Guide Table of Contents Contents Overview... 2 Logging In... 2 Additional Login Information... 5 Home/Dashboard... 6 Top Line Tool Bar... 6 Bulletins... 7 Dashboard... 8 Accounts...

More information

MANNATECH. Presents. MyMannapages SELF-GUIDED CERTIFICATION

MANNATECH. Presents. MyMannapages SELF-GUIDED CERTIFICATION MANNATECH Presents MyMannapages SELF-GUIDED CERTIFICATION The following steps have been created to help you become familiar with the basic functions of MyMannapages. As you begin using these great tools,

More information

Office 365 Training For the

Office 365 Training For the Office 365 Training For the 1 P age Contents How to Log in:... 3 Change Your Account Password... 3 Create a Message... 4 Add a Signature... 4 Learn About Inbox Rules... 5 Options > Automatic Replies...

More information

bla bla Groupware User Guide

bla bla Groupware User Guide bla bla Groupware User Guide Groupware Groupware: User Guide Publication date Tuesday, 25. July 2017 Version 7.8.3 Copyright 2016-2017 OX Software GmbH, This document is the intellectual property of OX

More information

Tips for the end-user

Tips for the end-user Tips for the end-user SharePoint 2013 is a major upgrade and has many features that make it more user friendly. This lesson covers some of the features most used in the CLC libraries. Your library s site

More information

Reporting Guide V7.0. iprism Web Security

Reporting Guide V7.0. iprism Web Security V7.0 iprism Web Security 800-782-3762 www.edgewave.com 2001 2012 EdgeWave. All rights reserved. The EdgeWave logo, iprism and iguard are trademarks of EdgeWave Inc. All other trademarks and registered

More information

User Manual. Users can use Adobe Acrobat functionality to further assist in locating a specific section of the manual.

User Manual. Users can use Adobe Acrobat functionality to further assist in locating a specific section of the manual. Technology User Manual Search the Manual Users can use Adobe Acrobat functionality to further assist in locating a specific section of the manual.. Select to Search document (this symbol can be found at

More information

RONA e-billing User Guide

RONA e-billing User Guide RONA e-billing Contractor Self-Service Portal User Guide RONA e-billing User Guide 2015-03-10 Table of Contents Welcome to RONA e-billing What is RONA e-billing?... i RONA e-billing system requirements...

More information

California Institute of Technology

California Institute of Technology California Institute of Technology Human Resources Using Kronos Workforce Timekeeper A User Guide For System Requirements Operating System Kronos is compatible for use with PC s (running Windows 2000 or

More information

ActivityTimeline User Guide https://activitytimeline.com

ActivityTimeline User Guide https://activitytimeline.com ActivityTimeline User Guide https://activitytimeline.com Copyright 2018 ActivityTimeline Contents 1. Getting Started... 3 1.1 Overview... 3 1.2 Logging In and Out... 3 1.3 Dashboard Overview... 4 1.4 Issues

More information

PETNET Direct/Dose Credit Request

PETNET Direct/Dose Credit Request PETNET Direct Preferences Add Patient Add Physician Ordering Doses Editing Dose Status Adding Doses to Reports Only Custom Report Writer Dose Credit Request Entering a Dose Credit Request Adding an Rx

More information

BANNER 9 QUICK NAVIGATION GUIDE

BANNER 9 QUICK NAVIGATION GUIDE MARCH 2017 Application Navigator Application Navigator provides a single interface to seamlessly navigate between Banner 9 JAVA pages and Banner 8 Oracle forms. It is a tool that allows you to go back

More information

MS Office Outlook 2010 Calendar MS OFFICE Outlook 2010 Calendar

MS Office Outlook 2010 Calendar MS OFFICE Outlook 2010 Calendar MS OFFICE 2010 Outlook 2010 Calendar MS Office 2010 Outlook 2010 Calendar Information Resources and Technology Training Services Rowan University Memorial Hall 201 Mullica Hill Road Glassboro, NJ 08028-1701

More information

Instructions for Casual and Relief Staff

Instructions for Casual and Relief Staff Instructions for Casual and Relief Staff Schools W: www.staffsync.nz E: support@staffsync.nz Ph: 0800 878623 Logging In Enter the email address and password you normally use with StaffSync. If using your

More information

Outlook 2010 Calendar

Outlook 2010 Calendar Outlook 2010 Calendar Table of Contents The Calendar... 4 The Week View... 5 Day View... 6 Month View... 7 Schedule View... 8 Scheduling Appointments... 9 Appointments... 10 Meetings... 10 Creating Appointments/Meetings...

More information

Outlook Web App. Getting Started. QUICK Source. Microsoft. in Exchange Server 2010

Outlook Web App. Getting Started. QUICK Source. Microsoft. in Exchange Server 2010 QUICK Source Microsoft Outlook Web App in Exchange Server 2010 Getting Started The Outlook Web App Window u v w x y u v w x y Browser Toolbars allow the user to navigate in the browser. Outlook Web Access

More information

Result Point v3 User Manual, Revision Accelerated Technology Laboratories, Inc. All rights reserved.

Result Point v3 User Manual, Revision Accelerated Technology Laboratories, Inc. All rights reserved. User Manual Result Point v3 User Manual, Revision 2 Result Point User Manual Table of Contents WELCOME...1 LOGGING IN...1 RETRIEVING YOUR PASSWORD... 1 CHANGING YOUR PASSWORD... 1 CLIENT INTERFACE...2

More information

bla bla OX App Suite User Guide

bla bla OX App Suite User Guide bla bla OX App Suite User Guide OX App Suite OX App Suite: User Guide Publication date Wednesday, 23. March 2016 Version 7.6.2 Copyright 2016-2016 OX Software GmbH, This document is the intellectual property

More information

Application Extender 16.3 Web Access

Application Extender 16.3 Web Access Application Extender 16.3 Web Access Pre-requisites for WebXtender client Firefox, Chrome or Edge browser For scanning, your friendly neighborhood desktop support person will need to install the specific

More information

Scheduling WebEx Meetings with Microsoft Outlook

Scheduling WebEx Meetings with Microsoft Outlook Scheduling WebEx Meetings with Microsoft Outlook About WebEx Integration to Outlook, on page 1 Scheduling a WebEx Meeting from Microsoft Outlook, on page 2 Starting a Scheduled Meeting from Microsoft Outlook,

More information

Using Open Workbench Version 1.1

Using Open Workbench Version 1.1 Version 1.1 Second Edition Title and Publication Number Title: Edition: Second Edition Printed: May 4, 2005 Copyright Copyright 1998-2005 Niku Corporation and third parties. All rights reserved. Trademarks

More information

Welcome to. Android Tablet Basics

Welcome to. Android Tablet Basics Welcome to Android Tablet Basics Today we will Get to Know Your Tablet Learn about Settings Connect to Wi-Fi Use Google Play Store (or equivalent) Share Tips for Managing Apps Google Account What is a

More information

Drupal 7 guide CONTENTS. p. 2 Logging In

Drupal 7 guide CONTENTS. p. 2 Logging In Drupal 7 guide Drupal is a widely used, open-source, free platform that has an easy-to-use content management system for updating websites. This guide was created by the Health Communication Core (www.healthcommcore.org)

More information

Volunteers for Salesforce Installation & Configuration Guide Version 3.79

Volunteers for Salesforce Installation & Configuration Guide Version 3.79 Volunteers for Salesforce Installation & Configuration Guide Version 3.79 January 1, 2016 Djhconsulting.com 1 CONTENTS 1. Overview... 4 2. Installation Instructions... 4 2.1 Requirements Before Upgrading...

More information

Creating a Website in Schoolwires

Creating a Website in Schoolwires Creating a Website in Schoolwires Overview and Terminology... 2 Logging into Schoolwires... 2 Changing a password... 2 Navigating to an assigned section... 2 Accessing Site Manager... 2 Section Workspace

More information

Banner 9 Navigation Guide

Banner 9 Navigation Guide Banner 9 Navigation Guide North Orange County Community College District Information Services Table of Contents Introduction... 3 Login Procedure... 3 Banner 9 Dashboard (Home Page)... 4 Toggle Menu Descriptions...

More information

TMJ Insight Portal. Table of contents

TMJ Insight Portal. Table of contents TMJ Insight Portal Table of contents TMJ Insight... 1 Table of contents... 1 Purpose... 2 General information... 2 Help/documentation... 4 Reports... 8 Scheduled runs... 12 Archive... 13 Admin... 14 Scheduling:...

More information