Inventory Status Interface Overview

Size: px
Start display at page:

Download "Inventory Status Interface Overview"

Transcription

1 Inventory Status Interface Overview Inventory Status Interface (ISI) is a telephony interface allowing users the ability to report item and quantity information to remote servers. The original design was for reporting inventory of the room mini-bar by maid staff. However the interface has been designed to allow for any type of inventory reporting the user may have in mind. Features No PMS required. No VM/AA required. No mailboxes required. Unlimited number of user accounts. Unlimited number of items. Telephony interface uses user s configured language. All items may have a recorded description in any language supported. Reporting of all item and user changes made via web interface. Support posting changes to five remote servers simultaneous. Requirements Inventory Status Interface is a licensed feature and must be purchased from DuVoice on a per-site basis. Administration Administration for ISI is provided via InnDesk under the Inventory tab. Items Manage inventory items. Users Manage user accounts used in telephony interface. Rooms Manage rooms associated with the inventory system. Room Fields Manage custom fields associated with rooms. Change Log Log of any Item, User, or Room changes made via InnDesk. Server? Logs View recent activity associated with a specific ISI remote server. Sync with Voic Provides a form allowing the user to sync guest rooms with rooms in the inventory system.

2 Items List contains the Item ID, Description and Price of each item. The list is sorted by the Description field. You can search for any item using a partial ID or Description placed in the search box provided. Selecting either the Item ID or the Description will present a form allowing it to be changed. Prices for items should be entered in monetary form. However this field is not used or interpreted by the inventory server therefore it may contain any specific format for the remote server. Add Item:

3 Insert Save your entry. your change and return to the item list. Adds the current item and displays an empty form in order to add another. Edit Item: The Item ID field is read-only and cannot be changed. Delete Save your changes. your change and return to the item list. Delete the item. Users Users accessing the system via the telephony interface are required to have a user account in ISI. You can search for any user using a partial ID, First or Last name placed in the search box provided. Selecting User ID will present a form allowing it to be changed.

4 Add User The language selection box will list all the available languages installed. While only the User ID is required it is strongly suggested that the others be filled in for reporting purposes. Insert Save your entry. your change and return to the user list. Adds the current user and displays an empty form in order to add another. Edit User

5 The User ID field is read-only and cannot be changed. Delete Save your changes. your change and return to the item list. Delete the item. Rooms Rooms in the inventory system need not match those of the voic . This allows the inventory system to have rooms such as conference rooms, offices and others. Room numbers may also start with leading zeros. You can search for any room using a partial number or description placed in the search box provided. Selecting either the room number or description will present a form allowing it to be changed. It is possible to delete multiple rooms by checking the box next to the room number and choosing Delete.

6 Add Room Insert Save your entry. your change and return to the room list. Adds the current room and displays an empty form in order to add another. Edit Room Room number is read-only and cannot be changed. Delete Save your changes. your change and return to the room list. Delete the room. Room Fields Each room may have an unlimited number for additional items. These fields are sent to the remote server only. You can display all fields associated with a room by entering a partial number in the search box provided. Selecting either the room number or description will present a form allowing it to be changed.

7 Add room field The name field cannot contain any spaces or punctuation. This field is used to represent a node in the packet sent to the remote server. The value field may contain any sting the user desires. Insert Save your entry. your change and return to the field list. Adds the current field and displays an empty form in order to add another. Edit room field Delete Save your changes. your change and return to the room list. Delete the room.

8 Change Log Any changes made will be logged here. Log entries are kept for a maximum of size months. Server? Logs ISI supports up to five remote servers. Each server has it s own queue and report log. Sync with Voic Only guest rooms which do not exist in the inventory system will be displayed. The synchronization will not remove or change any rooms in the inventory system.

9 To add guest rooms to the inventory system, select the checkbox next to the room number and choose Add. Rooms which are not checked will not be added. Telephone Interface The inventory system runs as an IVR script on the VMS. It can be assigned to any key within a single digit action template by entering ISI in the Action field.

10 Dial access # for Inventory System. Please enter your ID number, followed by the # key. Enter user ID. # Repeat back user s entry. Is password blank? No Please enter your password now. Enter password. # Yes Please enter the room number, followed by the # key. Enter room #. # Repeat back user s entry. Enter the item code, followed by the # key. Enter the quantity, followed Enter item code. # Enter quantity. # by the # key. No Finished? Enter the next item code, followed by the # key. Or press the # key by itself to end input. Repeat back user s entry. Yes # Confirmation Menu 1 To post your entries, press 1. Entry accepted. Post & Exit. 2 3 To review your entries, press 2. To continue posting items, press 3. Review all entries. * To cancel this operation, press *. Entry canceled. Exit without posting. Configuration Options Configuration for ISI server is located in System Configuration Features Connectors.

11 Location IP address or name of remote server machine. Enabled Disable the server. TCP/IP Port Port number used to connect to the remote server. Initial delay (seconds) Enter the number of seconds to wait before sending information to remote server when received. A value of zero will have no delay. Retry interval (seconds) Enter the number of seconds to wait if the server receives an error connecting to the remote server before another attempt. Maximum attempts Maximum number of attempts before a failure is logged. Items per packet Used to limit the packet size in situations where the remote server cannot support large packets. This value has no effect on the number of attempts. Include guest room status Include the state of the room. This will be the maid status of the room as defined in Hospitality. Exclude custom fields Used to block the addition of any custom room fields in the packet.

12 Server Protocol ISI server protocol uses XML sent via a standard HTML POST method. HTTP Headers Along with the standard Content-type and Content-Length fields the server sends the field User-Agent consisting of the DuVoice version and the version of ISI as a three digit number. Document Root: The document root is defined as inventory and may contain one or more room elements. Room Element Specifies the room update element. There may be more than a single room element depending on configuration. Attribute Required Description number Yes Room number. date Yes Date item was posted by user. YYYYMMDD. description No Description of the room. time Yes Time item was posted by user in 24 hour format. HH:MM:SS. Status No Room status as defined in the system configuration under hospitality. sequence Yes Unique integer message number per server. result Yes (response only) On return result. 0 = Success. 1 = Reschedule. Item Element Each room element may have one or more item elements. Attribute Required Description id Yes Item ID entered by user. description No Item Description. price Yes Price of single item. quantity Yes Quantity of this item. User Element The room element will contain a single user element containing the user information who posted the inventory item. The users first and last name if specified will be placed in elements within the user element. These elements will be labeled fname and lname. Attribute Required Description id Yes User id. Post Sample POST / HTTP/1.0 Content-type: text/xml User-Agent: DuVoice/ ISI/100

13 Content-Length: length <?xml version="1.0" encoding="iso "?> <inventory> <room number="600" date=" " time="15:58:39" description="blue suite" status="4" sequence="76"> <user id="999"> <fname>ren</fname> <lname>hoek</lname> </user> <item id="3" quantity="1" description="bud Light" price="3.99"/> <item id="6" quantity="5" description="bottled Water" price="1.95"/> </room> </inventory> </xml> Response Sample HTTP/ OK Content-type: text/xml Content-Length: length <?xml version="1.0" encoding="iso "?> <inventory> <room number="600" sequence="76" result="0"/> </inventory> </xml>

RSI can be installed as a stand alone service or combined with the DuVoice Hospitality Server (DHS) to provide VM/AA services.

RSI can be installed as a stand alone service or combined with the DuVoice Hospitality Server (DHS) to provide VM/AA services. Room Status Interface Overview Room Status Interface (RSI) will provide a telephony interface for room status updates made by housekeeping. These updates will then be sent to the Jazz system via a network

More information

2019/04/14 04:41 1/2 Analog Extensions. IP Office 9 using Analog Extensions Requirements Configuration... 17

2019/04/14 04:41 1/2 Analog Extensions. IP Office 9 using Analog Extensions Requirements Configuration... 17 2019/04/14 04:41 1/2 Analog Extensions Table of Contents IP Office 9 using Analog Extensions... 1 Requirements... 1 PBX Configuration... 1 Line Configuration... 1 Using Analog DuVoice integrations... 1

More information

2019/01/10 14:09 1/2 Cisco Unified CM Using Extensions. Cisco Unified CM Using Extensions... 1 Features Requirements Known issues...

2019/01/10 14:09 1/2 Cisco Unified CM Using Extensions. Cisco Unified CM Using Extensions... 1 Features Requirements Known issues... 2019/01/10 14:09 1/2 Cisco Unified CM Using Extensions Table of Contents Cisco Unified CM Using Extensions... 1 Features... 1 Requirements... 1 Known issues... 1 PBX Configuration... 1 SIP Account... 2

More information

Integration. Overview. Theory of Operation. Features Supported

Integration. Overview. Theory of Operation. Features Supported Integration Title Document ShoreTel SIP Extension Integration shoretel-sip-in Last update 2011/06/09 DuVoice Versions Switch Versions 11.1 5.00.032 and above Table of Contents 1. Overview... 1 Theory of

More information

Application Notes for DuVoice with Avaya IP Office Issue 1.0

Application Notes for DuVoice with Avaya IP Office Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for DuVoice with Avaya IP Office Issue 1.0 Abstract These Application Notes describe the configuration steps required for the DuVoice hospitality

More information

2015/04/13 11:41 1/22 UNIVERGE 3C

2015/04/13 11:41 1/22 UNIVERGE 3C 2015/04/13 11:41 1/22 UNIVERGE 3C UNIVERGE 3C Requirements DuVoice 5.20.040 or above. Dialogic HMP. UNIVERGE 3C version 8.5.3 or above. Features Name display change. Class of service change. Do not disturb

More information

2018/05/18 23:05 1/2 UNIVERGE 3C

2018/05/18 23:05 1/2 UNIVERGE 3C 2018/05/18 23:05 1/2 UNIVERGE 3C Table of Contents UNIVERGE 3C... 1 Requirements... 1 Features... 1 PBX Configuration Part One... 1 Active Directory... 1 Web Services User... 1 SIP User Agents... 4 Class

More information

Table of Contents. Cisco Call manager Express SIP Integration. Last update 2011/10/14 DuVoice Versions 5.00 and above Switch Versions N/A

Table of Contents. Cisco Call manager Express SIP Integration. Last update 2011/10/14 DuVoice Versions 5.00 and above Switch Versions N/A Integration Title Cisco Call manager Express SIP Integration Document CISCO-SIP-IN Last update 2011/10/14 DuVoice Versions 5.00 and above Switch Versions N/A Table of Contents Overview Theory of Operation

More information

DuVoice Voice Mail provides hospitality and business messaging for the Avaya IP Office, as well as unified messaging and fax capabilities.

DuVoice Voice Mail provides hospitality and business messaging for the Avaya IP Office, as well as unified messaging and fax capabilities. Avaya IP Office Title: Integration Notes for Avaya IP Office Document: IN000032 Date: January 2008 Overview DuVoice Voice Mail provides hospitality and business messaging for the Avaya IP Office, as well

More information

2018/06/14 00:32 1/2 KX-TDA TAPI

2018/06/14 00:32 1/2 KX-TDA TAPI 2018/06/14 00:32 1/2 KX-TDA TAPI Table of Contents Panasonic KX-TDA TAPI... 1 Requirements... 1 Known Issues... 1 Features... 1 Hospitality Features Supported... 2 PBX Programming... 2 CTI Configuration...

More information

Panasonic KX-TDA TAPI

Panasonic KX-TDA TAPI 2014/01/21 00:40 DuVoice in000002 Panasonic KX-TDA TAPI Requirements Network connectivity to the PBX for integration and hospitality changes. One analog extension for each DuVoice port. Panasonic TAPI

More information

2019/02/09 17:50 1/2 System Configuration. System Configuration... 1 Display Site Menu... 2

2019/02/09 17:50 1/2 System Configuration. System Configuration... 1 Display Site Menu... 2 2019/02/09 17:50 1/2 System Configuration Table of Contents System Configuration... 1 Display... 1 Menus... 2 File Menu... 2 Site Menu... 2 Telephony Menu... 3 Features Menu... 3 Context Menu... 4 Line

More information

SmartVoice Hospitality Portal User Guide

SmartVoice Hospitality Portal User Guide SmartVoice Hospitality Portal User Guide Quick reference Record your information here: My username My password Circuit ID / BPSO SmartVoice Customer Support Phone: 1-866-244-7475 Email: ServiceAssurance@shawbusiness.ca

More information

2018/03/24 07:24 1/2 ShoreTel SIP

2018/03/24 07:24 1/2 ShoreTel SIP 2018/03/24 07:24 1/2 ShoreTel SIP Table of Contents ShoreTel SIP... 1 Features... 2 Requirements... 3 Limitations... 3 PBX Configuration... 3 Call Control Settings... 5 SIP Profiles... 7 SIP Servers...

More information

Application Notes for DuVoice 6.0 with Avaya IP Office Server Edition 10.1 Issue 1.0

Application Notes for DuVoice 6.0 with Avaya IP Office Server Edition 10.1 Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for DuVoice 6.0 with Avaya IP Office Server Edition 10.1 Issue 1.0 Abstract These Application Notes describe the configuration steps required

More information

Application Notes for DuVoice Emergency Alert System with Avaya IP Office Server Edition 9.1 Issue 1.0

Application Notes for DuVoice Emergency Alert System with Avaya IP Office Server Edition 9.1 Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for DuVoice Emergency Alert System with Avaya IP Office Server Edition 9.1 Issue 1.0 Abstract These Application Notes describe the configuration

More information

Application Notes for DuVoice DV2000 with Avaya Communication Manager Using Digital Station Interface Issue 0.2

Application Notes for DuVoice DV2000 with Avaya Communication Manager Using Digital Station Interface Issue 0.2 Avaya Solution & Interoperability Test Lab Application Notes for DuVoice DV2000 with Avaya Communication Manager Using Digital Station Interface Issue 0.2 Abstract These Application Notes describe the

More information

Net2Phone Office Administrator s Guide

Net2Phone Office Administrator s Guide Net2Phone Office Administrator s Guide May 2015 All Rights Reserved The use, disclosure, modification, transfer or transmittal of this work for any purpose, in any form, or by any means, without the written

More information

Switch 2 Instructions Utility Telecom Premium Attendant Instructions

Switch 2 Instructions Utility Telecom Premium Attendant Instructions Switch 2 Instructions Utility Telecom Premium Attendant Instructions This guide is intended to help you understand the features used in Switch 2. Not sure if you re in Switch 1 or Switch 2? Our customer

More information

Application Notes for DuVoice Emergency Alert System with Avaya IP Office 9.0 Issue 1.0

Application Notes for DuVoice Emergency Alert System with Avaya IP Office 9.0 Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for DuVoice Emergency Alert System with Avaya IP Office 9.0 Issue 1.0 Abstract These Application Notes describe the configuration steps required

More information

Application Notes for Tiger Communications InnOvation 2020 with Avaya IP Office Issue 1.0

Application Notes for Tiger Communications InnOvation 2020 with Avaya IP Office Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Tiger Communications InnOvation 2020 with Avaya IP Office 6.1 - Issue 1.0 Abstract These Application Notes describe the configuration steps

More information

Premium Attendant Instructions

Premium Attendant Instructions NUMBER: PIN: 7890 TELEPHONE ACCESS To log into your auto-attendant: 1. Dial 877-965-7800 2. Press * to reach the login prompt. 3. Enter your auto attendant number when prompted followed by the # key. 4.

More information

Voic Instructions

Voic Instructions NUMBER: PIN: TELEPHONE VOICEMAIL ACCESS To log into your voicemail box from your greeting: 1. Dial your phone number and let it ring to voicemail. 2. Press * to interrupt your greeting. 3. Enter your PIN

More information

Call Park & Page. 4. Select OK 5. Click on System in the Navigation Pane. 6. Select the Telephony Tab and then the Park & Page tab

Call Park & Page. 4. Select OK 5. Click on System in the Navigation Pane. 6. Select the Telephony Tab and then the Park & Page tab Call Park & Page 1. Open IP Office Manager and log into the system. 2. In the Navigation Pane, click on Group and select a group that will be used for Park & Page. In this example we will use Main Office

More information

Console User Guide. Tones on For Console. Transferring a Call. Placing a Call on Hold. Answering Calls

Console User Guide. Tones on For Console. Transferring a Call. Placing a Call on Hold. Answering Calls Answering Calls Ringing and a flashing Answer key indicate the arrival of a call. The number next to C/W in the display indicates how many calls are waiting to be answered. The information displayed next

More information

TPP: Date: May, 2011 Product: ShoreTel DuVoice System Version: ShoreTel 11.1

TPP: Date: May, 2011 Product: ShoreTel DuVoice System Version: ShoreTel 11.1 I n n o v a t i o n N e t w o r k A p p N o t e TPP: 10321 Date: May, 2011 Product: ShoreTel DuVoice System Version: ShoreTel 11.1 Abstract DuVoice DV2000 hospitality server allows ShoreTel IP switches

More information

Application Notes for Telesoft PMSI-Desk 4.10 with Avaya IP Office 7.0 Issue 1.0

Application Notes for Telesoft PMSI-Desk 4.10 with Avaya IP Office 7.0 Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Telesoft PMSI-Desk 4.10 with Avaya IP Office 7.0 Issue 1.0 Abstract These Application Notes describe the configuration steps required for

More information

Portal User Guide. Portal Release 3.13

Portal User Guide. Portal Release 3.13 Portal User Guide Portal Release 3.13 https://portal.3starsnet.com Page 1 01-08-2018 Contents 1 Introduction 4 2 Accessing Messages on the Web Interface 4 2.1 Searching for Messages 4 2.2 Sorting Messages

More information

Application Notes for FCS I-Services with Avaya Communication Manager and Avaya 4626 and 9640 IP Telephones- Issue 1.0

Application Notes for FCS I-Services with Avaya Communication Manager and Avaya 4626 and 9640 IP Telephones- Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for FCS I-Services with Avaya Communication Manager and Avaya 4626 and 9640 IP Telephones- Issue 1.0 Abstract These Application Notes describe

More information

2018/05/17 07:10 1/ Table of Contents. Downloads... 1 Release History DuVoice -

2018/05/17 07:10 1/ Table of Contents. Downloads... 1 Release History DuVoice - 2018/05/17 07:10 1/2 5.20 Table of Contents 5.20... 1 Downloads... 1 Release History... 1 Last update: 2018/05/16 18:17 vm:legacy:dv520:home http://support.duvoice.com/vm/legacy/dv520/home http://support.duvoice.com/

More information

Cvent Passkey. Group Booking. User Guide v1.0. February 2017

Cvent Passkey. Group Booking. User Guide v1.0. February 2017 Cvent Passkey Group Booking User Guide v1.0 February 2017 Overview... 4 Group Booking Concepts... 4 Enabling Group Booking... 5 Organization or Hotel Profile... 5 Bundles... 5 Event... 5 Configuring Attendee

More information

User Guide. 3CX Enhanced Billing Codes. Version

User Guide. 3CX Enhanced Billing Codes. Version User Guide 3CX Enhanced Billing Codes Version 15.5.54 "Copyright VoIPTools, LLC 2011-2018" Information in this document is subject to change without notice. No part of this document may be reproduced or

More information

Application Notes for Configuring WinExpress 3.0 with Avaya IP Office Server Edition R10 Issue 1.1

Application Notes for Configuring WinExpress 3.0 with Avaya IP Office Server Edition R10 Issue 1.1 Avaya Solution & Interoperability Test Lab Application Notes for Configuring WinExpress 3.0 with Avaya IP Office Server Edition R10 Issue 1.1 Abstract These Application Notes describe the configuration

More information

CC Supervisor. User's Guide Manual. Version 3.0

CC Supervisor. User's Guide Manual. Version 3.0 CC Supervisor User's Guide Manual Version 3.0 Poltys, Inc. 3300 N. Main Street, Suite D #160, Anderson, SC 29621-4128 +1 (864) 642-6103 www.poltys.com 2011 Poltys, Inc. All rights reserved. The information

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for Configuring Avaya Aura Communication Manager 6.0.1, Avaya Aura Session Manager 6.1 to support DuVoice DV2000 Voice Messaging System Issue

More information

Communications Solutions for Hospitality Applications DuVoice Corporation - Unauthorized distribution prohibited

Communications Solutions for Hospitality Applications DuVoice Corporation - Unauthorized distribution prohibited Communications Solutions for Hospitality Applications Who is DuVoice? DuVoice was founded in 1990 DuVoice is a privately held company with no long term outside debt. Today DuVoice concentrates on providing

More information

Application Notes for DuVoice DV2000 with Avaya Communication Manager Using Analog Mode Code Integration Issue 1.0

Application Notes for DuVoice DV2000 with Avaya Communication Manager Using Analog Mode Code Integration Issue 1.0 . Avaya Solution & Interoperability Test Lab Application Notes for DuVoice DV2000 with Avaya Communication Manager Using Analog Mode Code Integration Issue 1.0 Abstract These Application Notes describe

More information

Voice Mail System User s Guide

Voice Mail System User s Guide Voice Mail System User s Guide Personal Mailbox Management (PMM) Utility Program VERSION 2.0 MARCH, 2005 PROPRIETARY VMS User s Guide: PMM Utility Program (v. 2) I Contents 1. Introduction...1 2. Personal

More information

Oracle IVR Integrator

Oracle IVR Integrator Oracle IVR Integrator Implementation Guide Release 11i for Windows NT July 2001 Part No. A87492-03 1 Implementing Oracle IVR Integrator This topic group provides general descriptions of the setup and configuration

More information

Integrating Cisco Unified MeetingPlace Express With Microsoft Outlook

Integrating Cisco Unified MeetingPlace Express With Microsoft Outlook APPENDIX B Integrating Cisco Unified MeetingPlace Express With Microsoft Outlook Revised: October 18, 2006, Topics in this section include: Restrictions for Microsoft Outlook Integration, page B-1 Information

More information

Vendor View for MICIS. Supplemental User Guide for Agents Supports Coordinator and Data Staff

Vendor View for MICIS. Supplemental User Guide for Agents Supports Coordinator and Data Staff Vendor View for MICIS Supplemental User Guide for Agents Supports Coordinator and Data Staff Version 2.0 January 2015 2015 Center for Information Management, Inc. Ann Arbor, Michigan Table of Contents

More information

Integration Note. Title: Panasonic KX-TD Integration. Overview. Theory of Operation. PBX Requirements and Programming. Programming

Integration Note. Title: Panasonic KX-TD Integration. Overview. Theory of Operation. PBX Requirements and Programming. Programming Integration Note Title: Panasonic KX-TD Integration Document: IN000001 Date: November 11, 2004 Overview This document covers the configuration of the Panasonic KX-TD for integration with the DuVoice Messaging

More information

The guide is divided into sections which describe how to configure and manage different aspects of the Hosted PBX service for your business group.

The guide is divided into sections which describe how to configure and manage different aspects of the Hosted PBX service for your business group. Welcome This guide is intended to help Business Group Administrators of FairPoint Communications Hosted PBX service to perform the various tasks needed to administer the system, such as: Managing lines,

More information

Feature List Q4 2016

Feature List Q4 2016 Feature List Q4 2016 PBX Model IP1100 IP1200 IP2000 IP5000 Extensions Extension Capacity 50 100* 500 500 Import Names and Email Addresses YES YES YES YES Auto Create Extensions and Voice Mail Boxes YES

More information

VoIP TECHNOLOGY WITH EXISTING COMPONENTS

VoIP TECHNOLOGY WITH EXISTING COMPONENTS Series2 V IP VoIP TECHNOLOGY WITH EXISTING COMPONENTS A powerful hospitality VoIP based telephone system with integrated analog phone and analog trunk / PRI compatibility. Guest Module PhoneSuite Series2

More information

char utile h+ Integration App User Guide

char utile h+ Integration App User Guide char utile h+ Integration App User Guide Version 1.0 Date: March 30, 2017 Yeastar Information Technology Co. Ltd. 1 Contents Introduction... 3 Installing and Activating char utile h+ Integration... 4 Installing

More information

Ge#ng Started Guide New Users and Starter Edi/on

Ge#ng Started Guide New Users and Starter Edi/on Ge#ng Started Guide New Users and Starter Edi/on Goal Thank you for taking the time to use Viewpath as your project management solution. Our goal in providing this guide is to help streamline the process

More information

Application Notes for Configuring WinExpress 3.0 with Avaya IP Office Server Edition R9.1 Issue 1.0

Application Notes for Configuring WinExpress 3.0 with Avaya IP Office Server Edition R9.1 Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring WinExpress 3.0 with Avaya IP Office Server Edition R9.1 Issue 1.0 Abstract These Application Notes describe the configuration

More information

ebay Connector Features Module Configuration

ebay Connector Features Module Configuration ebay Connector webkul.com/blog/ebay-connector-for-magento2/ March 15, 2016 ebay Connector extension allows you to integrate Magento 2 store with ebay store. Import products, categories, and orders from

More information

SpitFire Enterprise Update Log

SpitFire Enterprise Update Log 1 Spitfire Update Log 1.7.7.0 SpitFire Enterprise Update Log Version 1.7.7.0 2/05/18 Chat Module Windows Agent- Licensed Feature (Broadcast, Campaign, Group, User) Chat Module Web Agent- Licensed Feature

More information

Hosted PBX QUICK START GUIDE. Premium Attendant

Hosted PBX QUICK START GUIDE. Premium Attendant Hosted PBX QUICK START GUIDE Premium Attendant HOSTED PBX PREMIUM ATTENDANT With Hosted PBX you now have access to the latest phone service. Get ready to experience the power of Hosted PBX. Now that you

More information

User Guide. 3CX Enhanced Billing Codes. Version

User Guide. 3CX Enhanced Billing Codes. Version User Guide 3CX Enhanced Billing Codes Version 15.5.54 "Copyright VoIPTools, LLC 2011-2017" Information in this document is subject to change without notice. No part of this document may be reproduced or

More information

Release 8.6, page 2 Configure Cisco Unity Connection for Use with Cisco Jabber, page 3

Release 8.6, page 2 Configure Cisco Unity Connection for Use with Cisco Jabber, page 3 for an On-Premises Deployment with Cisco Unified Communications Manager Release 9.x and Later, page 1 for an On-Premises Deployment with Cisco Unified Communications Manager Release 8.6, page 2 Configure

More information

STX & ios Devices. Setting up and using STX iphone, ipad, ipod touch

STX & ios Devices. Setting up and using STX iphone, ipad, ipod touch STX & ios Devices Setting up and using STX iphone, ipad, ipod touch STX for ios provides more flexibility and efficiency for you and your staff. With all the most often used features of STX desktop built-in,

More information

OneSource Concierge eprocurement

OneSource Concierge eprocurement OneSource Concierge eprocurement CREATE A PURCHASE ORDER - UTILIZING ORDER GUIDES Instructional Guide: Create a Purchase Order - Utilizing Order Guides Submit a Purchase Order Order Confirmation Technical

More information

Meeting Notifications for Cisco Unified MeetingPlace for Lotus Notes

Meeting Notifications for Cisco Unified MeetingPlace for Lotus Notes APPENDIXA Meeting Notifications for Cisco Unified MeetingPlace for Lotus s Users can receive meeting notifications in Lotus s for meetings scheduled from a Lotus s client, Cisco Unified MeetingPlace Web

More information

Data. Information. Intelligence. Web-Based Marketing Module

Data. Information. Intelligence. Web-Based Marketing Module Web-Based Marketing Module Table of Contents Datavision for Marketing... 4 Accessing the Marketing Module... 5 Home Screen... 6 Reports... 7 Guests View... 8 Guests View Drill Through... 9 Reservations

More information

Hosted PBX Administrator Guide

Hosted PBX Administrator Guide Hosted PBX Administrator Guide Table of Contents 1 INTRODUCTION... 1-1 1.1 PURPOSE OF THIS GUIDE... 1-1 1.2 OTHER GUIDES... 1-1 2 COMMPORTAL BUSINESS GROUP ADMINISTRATOR (BG ADMIN)... 2-1 2.1 ACCESSING

More information

Vendor View for MICIS. Vendor User Guide

Vendor View for MICIS. Vendor User Guide Vendor View for MICIS Vendor User Guide Version 1.3 January, 2008 2008 Center for Information Management, Inc. Ann Arbor, Michigan Table of Contents Introduction... 3 Participant Privacy and Vendor View...

More information

SolarPower Pro. User s Manual. Management Software for Solar Inverter

SolarPower Pro.  User s Manual. Management Software for Solar Inverter SolarPower Pro User s Manual Management Software for Solar Inverter Table of Contents 1. SolarPower Pro Overview... 2 1.1. Introduction... 2 1.2. Structure... 2 1.3. Features... 3 2. SolarPower Pro Install

More information

Attribute-Based Access Control

Attribute-Based Access Control Attributes are customized network objects for use in your configuration. You can define and use them in Cisco ASA configurations to filter traffic associated with one or more virtual machines in an VMware

More information

Update 9/16/16: Version published to the ServiceNow store now supports Helsinki, Istanbul and Jakarta.

Update 9/16/16: Version published to the ServiceNow store now supports Helsinki, Istanbul and Jakarta. Qualys CMDB Sync App The Qualys CMDB Sync App synchronizes Qualys IT asset discovery and classification with the ServiceNow Configuration Management Database (CMDB) system. The App automatically updates

More information

Voyant Connect User Guide

Voyant Connect User Guide Voyant Connect User Guide WELCOME TO VOYANT CONNECT 3 INSTALLING VOYANT CONNECT 3 MAC INSTALLATION 3 WINDOWS INSTALLATION 4 LOGGING IN 4 WINDOWS FIRST LOGIN 6 MAKING YOUR CLIENT USEFUL 6 ADDING CONTACTS

More information

exchange Call Center Agent Guide

exchange Call Center Agent Guide exchange Call Center Agent Guide Version 4.6 NBX System Release 6.5 http://www.3com.com Part Number: 900-0419-01 Published April 2009 3Com Corporation, 350 Campus Drive, Marlborough MA 01752-3064 Copyright

More information

Supporting Cisco TelePresence Manager

Supporting Cisco TelePresence Manager CHAPTER 2 Revised: February 25, 2009, Contents Introduction Dashboard Scheduled Meetings MCU Devices Cisco Unified Communications Manager Introduction System support tasks consist primarily of monitoring

More information

BMC FootPrints 12 Integration with Remote Support

BMC FootPrints 12 Integration with Remote Support BMC FootPrints 12 Integration with Remote Support 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are

More information

PC Agent Quick Start. Opening the Agent. Logging in to the Agent. Connected Backup. Version 8.6. Revision 0

PC Agent Quick Start. Opening the Agent. Logging in to the Agent. Connected Backup. Version 8.6. Revision 0 T E C H N I C A L N O T E Version 8.6 PC Agent Quick Start Revision 0 Use this document as a quick reference for common Connected Backup PC Agent tasks. If the Agent is not on your computer, contact your

More information

User Guide. Maximize your voic with MAXmail

User Guide. Maximize your voic with MAXmail User Guide Maximize your voicemail with MAXmail 1 HOME TOWN MAXmail features With the HOME TOWN MAXmail service, managing your calls is easy. The service answers calls even when you cannot answer them.

More information

Health Messenger User Guide

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

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 10.5 Feb 2018 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

Instructions for SAP CCtr. How to use SAP Contact Center phone system

Instructions for SAP CCtr. How to use SAP Contact Center phone system Instructions for SAP CCtr How to use SAP Contact Center phone system How to start the program 1. Open Internet Explorer browser. Type http://[sap Contact Center Website].ipcallcenters.eu into the address

More information

Manage End Users. End User Overview. End User Management Tasks. End User Overview, on page 1 End User Management Tasks, on page 1

Manage End Users. End User Overview. End User Management Tasks. End User Overview, on page 1 End User Management Tasks, on page 1 End User Overview, on page 1 End User Management Tasks, on page 1 End User Overview When administering an up and running system, you may need to make updates to the list of configured end users in your

More information

Optimal Performance and Installation Guide

Optimal Performance and Installation Guide Outlook Connector for MDaemon How To Quick Start Guide Optimal Performance and Installation Guide This guide provides information on how to get the optimal performance from Outlook Connector, how to install

More information

User Manual. Summary. Author: SYMTRAX. Compleo Gateway User Manual 1

User Manual. Summary. Author: SYMTRAX. Compleo Gateway User Manual 1 User Manual Summary This manual will give an insight into some of the major functionalities of the product and the best practices to use while working with Compleo Gateway. Author: SYMTRAX Compleo Gateway

More information

Deployment Requirements Document (DRD)

Deployment Requirements Document (DRD) Document (DRD) Nevotek, the Nevotek logo, V/IP Connect, NevoTV, Adagio, Sigma-5, IPT Office and OnTime are registered trademarks or trademarks of Nevotek Corporation. All other trademarks mentioned in

More information

Manage Devices - Clocks, Gateways & Networks

Manage Devices - Clocks, Gateways & Networks Manage Devices - Clocks, Gateways & Networks OneVue PoE Managed Time OneVue is a trademark of Primex. OneVue is an intelligent environmental monitoring and managed time solution. All other trademarks are

More information

WINDOWS NT 4.0 USER GUIDE

WINDOWS NT 4.0 USER GUIDE WINDOWS NT 4.0 USER GUIDE This guide will assist you in connecting to Nauticom using your Windows NT 4.0 Operating System. Click Start. Select Settings, and click Control Panel. Double click the Network

More information

Process Document Financials 9.0: Creating a PO from Copying a PO. Version 9.0 Document Generation Date 2/16/2009 Last Changed by Status

Process Document Financials 9.0: Creating a PO from Copying a PO. Version 9.0 Document Generation Date 2/16/2009 Last Changed by Status Version 9.0 Document Generation Date 2/16/2009 Last Changed by Status Final System Office Creating a PO from Copying a PO Concept Copying an existing purchase order enables you to create a purchase order

More information

Controls. Assisted. Audio ACTION. Captivate your. Connect. This. From. audio STEP Provider drop-down. menu and. field. just Op Assisted.

Controls. Assisted. Audio ACTION. Captivate your. Connect. This. From. audio STEP Provider drop-down. menu and. field. just Op Assisted. USE R GUIDE Adobe Connect Operator Assisted Audio Controls Guide forr Hosts Captivate your audience by integrating Operator Assisted audio conferencing service with the cutting edge Adobe Connect online

More information

Mobility Services CAS. wips CHAPTER

Mobility Services CAS. wips CHAPTER 13 CHAPTER This chapter briefly describes the CAS or wips services that WCS supports and gives steps for mobility procedures that are common across all services. You can refer to the Cisco Context-Aware

More information

Altiris CMDB Solution from Symantec Help. Version 7.0

Altiris CMDB Solution from Symantec Help. Version 7.0 Altiris CMDB Solution from Symantec Help Version 7.0 CMDB Solution Help topics This document includes the following topics: About CMDB Solution CMDB Global Settings page Default values page Default values

More information

How to Integrate RSA SecurID with the Barracuda Web Application Firewall

How to Integrate RSA SecurID with the Barracuda Web Application Firewall How to Integrate RSA SecurID with the Barracuda Web Application Firewall The Barracuda Web Application Firewall can be configured as a RADIUS client to the RSA SecurID Server System, comprised of the RSA

More information

ForeScout Extended Module for MobileIron

ForeScout Extended Module for MobileIron Version 1.8 Table of Contents About MobileIron Integration... 4 Additional MobileIron Documentation... 4 About this Module... 4 How it Works... 5 Continuous Query Refresh... 5 Offsite Device Management...

More information

Use a class C setting for maximum security. The class C setting is Click RoomWizard Setup.

Use a class C setting for maximum security. The class C setting is Click RoomWizard Setup. Use a class C setting for maximum security. The class C setting is 255.255.255.0. 2 Click RoomWizard Setup. The Default Gateway is the IP address of the router or gateway that provides internet access.

More information

2. QuickBooks Desktop Integration User Guides

2. QuickBooks Desktop Integration User Guides 2. QuickBooks Desktop Integration User Guides Thank you for purchasing my extension. If you have any questions that are beyond the scope of this help file, please feel free to email via my user page contact

More information

Configuration Manager

Configuration Manager CHAPTER 7 This chapter describes how to perform routine Cisco VXC Manager configuration management tasks using the Administrator Console. It provides information on managing the configuration settings

More information

Configuring Cisco TelePresence Manager

Configuring Cisco TelePresence Manager CHAPTER 3 Revised: November 27, 2006, First Published: November 27, 2006 Contents Introduction, page 3-1 System Configuration Tasks, page 3-2 Security Settings, page 3-3 Database, page 3-4 Room Phone UI,

More information

Norstar Phone - Program Your Norstar Telephone

Norstar Phone - Program Your Norstar Telephone Norstar Phone - Program Your Norstar Telephone To Program Buttons On Your Phone: For External Numbers: 1. Press the Feature button, then * 1 2. Push the button you want to program 3. Display will read

More information

Volume PIG. AGKSOFT Portable Inventory Guide. Portable Inventory Guide

Volume PIG. AGKSOFT Portable Inventory Guide. Portable Inventory Guide Volume PIG AGKSOFT Portable Inventory Guide Portable Inventory Guide Introduction T he Windows Mobile Device Center can be used to synchronize your Windows PC with your Portable Scanner. Connecting the

More information

Using the VMware vcenter Orchestrator Client. vrealize Orchestrator 5.5.1

Using the VMware vcenter Orchestrator Client. vrealize Orchestrator 5.5.1 Using the VMware vcenter Orchestrator Client vrealize Orchestrator 5.5.1 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

1. General Information

1. General Information Tenant User Manual INDEX 1. General Information...3 1.1 Introduction...3 1.2 Logging in...3 1.3 Forgot Password...4 1.4 Dashboard...6 2. Config...9 2.1 ACL List...9 2.2 Prompt List...10 2.3 Plan...11 2.4

More information

Table of Contents. IQSIP_Admin_Portal_ManageTrunks_0216rev2.doc Page 2 of 36

Table of Contents. IQSIP_Admin_Portal_ManageTrunks_0216rev2.doc Page 2 of 36 CenturyLink IQ SIP Administrator Portal User Guide Table of Contents About This User Guide... 3 Trunk Administration... 4 Manage Trunks... 4 Manage Trunk Features... 11 Manage Trunk Users... 14 Group 911...

More information

Auto Night Audit Reports Configuring Auto Night Audit Reporting Group Folio Summary Charges Tax Invoice View:...

Auto  Night Audit Reports Configuring Auto Night Audit Reporting Group Folio Summary Charges Tax Invoice View:... 8.1.1.2 RELEASE NOTES April 2016 Contents Auto Email Night Audit Reports... 2 Configuring Auto Night Audit Reporting... 2 Email... 2 Group Folio Summary Charges... 3 Tax Invoice View:... 4 Folios Indicate

More information

MS Exchange Scheduling

MS Exchange Scheduling MS Exchange Scheduling User Guide for v6.5 systems Catalog No. 11-808-588-01 Important changes are listed in Document revision history at the end of this document. UTC 2018. throughout the world. All trademarks

More information

Using ANM With Virtual Data Centers

Using ANM With Virtual Data Centers APPENDIXB Date: 3/8/10 This appendix describes how to integrate ANM with VMware vcenter Server, which is a third-party product for creating and managing virtual data centers. Using VMware vsphere Client,

More information

Switch 1 Instructions Utility Telecom Easy Attendant Instructions

Switch 1 Instructions Utility Telecom Easy Attendant Instructions Switch 1 Instructions Utility Telecom Easy Attendant Instructions This guide is intended to help you understand the Easy Attendant Instructions used in Switch 1. Not sure if you re in Switch 1 or Switch

More information

Cisco Unity Express Windows and Menus

Cisco Unity Express Windows and Menus Last updated: June 21, 2007 This chapter describes the windows, menus, and icons available in the Cisco Unity Express voice-mail system and contains the following sections: Navigating Through the Cisco

More information

PayFirst Salon User Guide:

PayFirst Salon User Guide: PayFirst Salon User Guide: This user guide will outline basic system functionality such as: Logging into System Back Office Setup Setting up Employees Menu Setup Retail Product Setup Creating Package Setup

More information

Administering isupport

Administering isupport Administering isupport Tracking and Monitoring isupport Usage Agents perform tasks in the background that are an integral part of isupport functionality. See Enabling and Scheduling Agents on page 2 for

More information

Date Tester Pass/Fail Notes. Step Action Input Expected Results 1. From the Financials menu, click the Purchasing link.

Date Tester Pass/Fail Notes. Step Action Input Expected Results 1. From the Financials menu, click the Purchasing link. Test History Date Tester / Notes Time to Test Estimated Time Actual Time Test Setup Test Navigation 1. From the Financials menu, click the Purchasing link. 2. Click the Receipts link. 3. Click the Add/Update

More information