CarTrawler AJAX Booking Engine Version: 3.26 Date: 18/06/09.

Size: px
Start display at page:

Download "CarTrawler AJAX Booking Engine Version: 3.26 Date: 18/06/09."

Transcription

1 CarTrawler AJAX Booking Engine Date: 18/06/09

2 CarTrawler AJAX Booking Engine Introduction... 3 Set up the server environment:... 3 Set up the webpage with the AJAX Booking Engine:... 3 Dependencies... 3 Deployments... 4 Easy Client... 4 Complete Client... 5 More Information... 6 Easy Client... 6 Include Files... 6 HTML Placeholder... 6 Create and customise CT_OTA_Engine for Easy Client... 7 Complete Client Include Files HTML Placeholder Create and customise CT_OTA_Engine for Complete Client Linking Easy Client and Complete Client Call Out Method Where to place the script Example1: Including header (step1/2/3) for the engine Example2: Including Google Tracking Pixel Support Appendixes A. List of currencies B. List of languages C. List of car groups D. Links to resources E. Miscellaneous configuration FAQ... 19

3 Introduction The purpose of this document is to explain how to integrate the CarTrawler AJAX booking engine into the web page. To implement the booking engine take the following steps-: Set up the server environment: 1. For the first and most common form, it is required to have a web browser and a PHP enabled web server. You can download PHP installer from 2. Ensure curl extension (php_curl.dll) for PHP is enabled and appropriately set the extension_dir directive in php.ini. 3. Download otaproxy, ( which contains otaproxy.php. Upload the php file as is to the root directory in the web server. It should not be modified in any way. 4. The otaproxy and the webpage containing the booking engine must be hosted on the same webserver. Set up the webpage with the AJAX Booking Engine: 1. Choosing a DOCTYPE 2. Include certain Javascript include files from the Cartrawler server. 3. Create a HTML table with a placeholder for the booking engine. 4. Using javascript, create a CT_OTA_Engine object. Note: CT_OTA_Engine object should be included in the <body> tag after the placeholder. 5. Customise the booking engine using methods of the CT_OTA_Engine. 6. Invoke the booking engine. Dependencies Browser Support: IE 5.5 or above, FireFox 1.5 or above Javascript must be enabled. For IE, activex controls need to be enabled. Please note: The CarTrawler booking engine is entirely based on AJAX.

4 Deployments There are three ways the booking engine can be deployed: Easy Client Complete Client Smart Client Easy Client Only Step 1 (where the user is asked to enter their search criteria) is hosted on the website. On clicking Search, the user is redirected to a full-page booking engine showing the results hosted by CarTrawler. This will only require small real estate space on the webpage as in the following example. The recommended minimum width is 300 pixels.

5 Complete Client The entire booking engine is displayed in one page using the template. This will require a large amount of real estate on your webpage. You must ensure that sufficient space is given to the booking engine so that it can display large availability responses that could be returned in Step 2 of the booking process. The recommended width is 780 pixels. If you intend to embed in iframe, the recommended size of iframe to display the booking engine is 780px width & 700px height (to display 4 cars). Also enable scroll bars in iframe.

6 More Information Easy Client Include Files Before the <Head> tag include the following DOCTYPE: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" " or <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " In the <Head> tag include the following javascript files: <script type="text/javascript" src=" HTML Placeholder <div id="abe_abe"><noscript>your BROWSER DOES NOT SUPPORT JAVASCRIPT</noscript></div> Include the <!DOCTYPE> declaration in your document, before the <html> tag as indicated above. Create a HTML table with one row and one column or block element like <div>. Assign the table cell/block element an id="abe_abe". We will use this id later when creating the booking engine object. We have also added a noscript tag, which will display the text YOUR BROWSER DOES NOT SUPPORT JAVASCRIPT in the case where the customer does not have javascript enabled.

7 Create and customise CT_OTA_Engine for Easy Client <script type="text/javascript"> <!-- var ctotaengine = new CT_OTA_Engine("ABE"); ctotaengine.setstep2url(" ctotaengine.setdefaulturl(" ctotaengine.seturl("./otaproxy.php"); // Provided by CarTrawler ctotaengine.settarget("production"); // Target for the engine ctotaengine.setclientid("?"); // Provided by CarTrawler ctotaengine.setcountryid("ie"); // Default Country ctotaengine.setpickupid("11"); // Default Pickup Location ctotaengine.setreturnid("1316"); // Default Return Location ctotaengine.addcurrency(); // adds list of all available currencies ctotaengine.setcurrency("eur"); // default Currency ctotaengine.setdefaultlanguage("es"); // Default Language ctotaengine.setcargroupid(0); // Default Car Group ctotaengine.settemplate("hybrid1"); ctotaengine.settemplatecolor("blue"); // This line is optional to setup color scheme ctotaengine.enableautosuggest({style: "lightgray", flag: true}); ctotaengine.enablenewcalendar({style: "blue", daterange: true}); ctotaengine.addcustomstyle(" ctotaengine.seterrorreporturl(" ctotaengine.displaystep1(); // --> </script> Explanation: var ctotaengine = new CT_OTA_Engine("ABE"); This creates CT_OTA_Engine object, and ties it to the HTML element identified by abe_abe. ctotaengine.setstep2url(" This tells the engine the URL of the webpage which will display the result of the availability request. Please note that you can personalise this page by logging in to Affiliate Management System from Note: This should be https as this page will take credit card information from the customer. ctotaengine.setdefaulturl(" Set the default URL. ctotaengine.seturl("./otaproxy.php"); This points the engine to the OTA Proxy, which will be used to communicate with the CarTrawler OTA Servers. The otaproxy.php file has been provided by CarTrawler and should not be modified in any way. The OTA Proxy must be hosted on the same webserver as the webpages are hosted. ctotaengine.settarget("production"); The Target for the engine should be Production.

8 ctotaengine.setclientid("?"); // Provided by CarTrawler This is your affiliateid/clientid, which has been provided by Cartrawler. It will be a number and should be entered correctly in order to be able to track your bookings. ctotaengine.setcountryid("ie"); // Default Country Set the default Country for the Step1 Search page. ctotaengine.setpickupid("11"); // Default Pickup Location Set the default pickup location. The pickup location must be within the country specified in the setcountryid method. Please consult the CarTrawler location list ( document for information on which Ids should be used for each location. ctotaengine.setreturnid("1316"); // Default Return Location Set the default return location if pickup location is different. The return location must be within the country specified in the setcountryid method. This option is not required if both pickup and return location are same. ctotaengine.addcurrency(); // adds list of all available currencies or ctotaengine.addcurrency("cad", "CYP", "AUD"); // adds custom list of currencies Displays the list of currencies. See appendix A for the list. ctotaengine.setcurrency("gbp"); // Default Currency Set the default currency. This option is not required is the default currency is EUR. ctotaengine.setdefaultlanguage("es"); // Default Language Set the default language. See appendix B for the list. This option is not required if the default language is EN ctotaengine.setcargroupid(0); // Default Car Group Set the default Car Group and it will be a number. See appendix C for the list. ctotaengine.settemplate("hybrid1"); Set the default template/style for the booking engine. ctotaengine.settemplatecolor("blue"); // For default color do not include this line. Set color scheme. Options available are blue, green, red, orange, violet. ctotaengine.enableautosuggest({style: "lightgray", flag: true}); This enables autosuggest which supports different styles. The first suggestion is filled into the textbox as you type while a list of several suggestions appears in a dropdown list beneath the textbox. You could customise using parameters below: style: Set theme color ( lightgray, darkgray, blue, or orange ) and is mandatory. flag: This is optional and can be set to true or false. If you want to display country flag, set to true. By default this is false. flag_size: This option along with flag can be used to set flag size ( 16 or 24 ). By default this is 16.

9 ctotaengine.enablenewcalendar({style: "blue", daterange: true}); This enables new calendar which supports different styles. This also supports text entry box which allows customer type in the date. You could customise using parameters below: style: Set theme color (blue, green, red, violet, orange) and is mandatory. daterange: This is optional and can be set to true or false. If you want to display two months range, set to true. By default this is false. ctotaengine.addcustomstyle(" This allows you to add custom style. ctotaengine.seterrorreporturl(" Set default error page. ctotaengine.displaystep1(); Displays Step1 of the booking engine.

10 Complete Client Include Files Before the <Head> tag include the following DOCTYPE: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" " or <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " In the <Head> tag include the following javascript files; <script type="text/javascript" src=" HTML Placeholder <div id="abe_abe"><noscript>your BROWSER DOES NOT SUPPORT JAVASCRIPT</noscript></div> Include the <!DOCTYPE> declaration in your document, before the <html> tag as indicated above. Create a HTML table with one row and one column or block element like <div>. Assign the table cell/block element an id= "abe_abe". We will use this id later when creating our booking engine object. We also added a noscript tag, which will display the text YOUR BROWSER DOES NOT SUPPORT JAVASCRIPT in the event where the customer does not have javascript enabled.

11 Create and customise CT_OTA_Engine for Complete Client <script type="text/javascript"> <!-- var ctotaengine = new CT_OTA_Engine("ABE"); ctotaengine.setdefaulturl(" ctotaengine.seturl("./otaproxy.php"); // Provided by CarTrawler ctotaengine.settarget("production"); // Target for the engine ctotaengine.setclientid("?"); // Provided by CarTrawler ctotaengine.setcountryid("ie"); // Default Country ctotaengine.setpickupid(11); // Default Pickup Location ctotaengine.setreturnid(1316); // Default Return Location ctotaengine.addcurrency(); // adds list of all available currencies ctotaengine.setcurrency("eur"); // default Currency ctotaengine.setdefaultlanguage("es"); // Default Language ctotaengine.setcargroupid(0); // Default Car Group ctotaengine.settemplate("hybrid1"); ctotaengine.settemplatecolor("blue"); // This line is optional to setup color scheme ctotaengine.enableautosuggest({style: "lightgray", flag: true}); ctotaengine.enablenewcalendar({style: "blue", daterange: true}); ctotaengine.setwebsiteconditionsurl(" ctotaengine.seterrorreporturl(" ctotaengine.displayoptionalinsurance(); // Display Insurance on Step 3 ctotaengine.displaybookengine(); // --> </script> Explanation: var ctotaengine = new CT_OTA_Engine("ABE"); This creates CT_OTA_Engine object, and ties it to the HTML element identified by abe_abe. ctotaengine.setdefaulturl(" Set the default URL. ctotaengine.seturl("./otaproxy.php"); // Provided by CarTrawler This points the engine to the OTA Proxy, which will be used to communicate with the CarTrawler OTA Servers. The otaproxy.php file has been provided by CarTrawler and should not be modified in any way. The OTA Proxy must be hosted on the same webserver as the webpages are hosted. ctotaengine.settarget("production"); The Target for the engine should be Production. ctotaengine.setclientid("?"); // Provided by CarTrawler This is your affiliateid/clientid, which has been provided by Cartrawler. It will be a number and should be entered correctly in order to be able to track your bookings. ctotaengine.setcountryid("ie"); // Default Country Set the default Country for the Step1 Search page.

12 ctotaengine.setpickupid("11"); // Default Pickup Location Set the default pickup location. The pickup location must be within the country specified in the setcountryid method. Please consult the CarTrawler location list ( document for information on which Ids should be used for each location. ctotaengine.setreturnid("1316"); // Default Return Location Set the default return location if pickup location is different. The return location must be within the country specified in the setcountryid method. This option is not required if both pickup and return location are same. ctotaengine.addcurrency(); // adds list of all available currencies or ctotaengine.addcurrency("cad", "CYP", "AUD"); // adds custom list of currencies Displays the list of currencies. See appendix A for the list. ctotaengine.setcurrency("gbp"); // Default Currency Set the default currency. This option is not required is the default currency is EUR. ctotaengine.setdefaultlanguage("es"); // Default Language Set the default language. See appendix B for the list. This option is not required is the default language is EN ctotaengine.setcargroupid(0); // Default Car Group Set the default Car Group. It will be a number and following option is available: See appendix C for the list. ctotaengine.settemplate("hybrid1"); Set the default template/style for the booking engine. ctotaengine.settemplatecolor("blue"); // For default color do not include this line. Set color scheme. Options available are blue, green, red, orange, violet. ctotaengine.enableautosuggest({style: "lightgray", flag: true}); This enables autosuggest which supports different styles. The first suggestion is filled into the textbox as you type while a list of several suggestions appears in a dropdown list beneath the textbox. You could customise using parameters below: style: Set theme color ( lightgray, darkgray, blue, or orange ) and is mandatory. flag: This is optional and can be set to true or false. If you want to display country flag, set to true. By default this is false. flag_size: This option along with flag can be used to set flag size ( 16 or 24 ). By default this is 16. ctotaengine.enablenewcalendar({style: "blue", daterange: true}); This enables new calendar which supports different styles. This also supports text entry box which allows customer type in the date. You could customise using parameters below: style: Set theme color (blue, green, red, violet, orange) and is mandatory. daterange: This is optional and can be set to true or false. If you want to display two months range, set to true. By default this is false.

13 ctotaengine.setwebsiteconditionsurl(" This will publish booking engine terms and conditions link in Step 3. ctotaengine.seterrorreporturl(" Set the default error page. ctotaengine.displayoptionalinsurance(); // Display Insurance on Step 3 This will display Optional Excess Insurance option on Step 3. This will allow customer to book excess Insurance (for an extra fee) when booking a vehicle. ctotaengine.displaybookengine(); Displays the booking engine. Linking Easy Client and Complete Client In some scenarios, you would want to host Easy Client on the Step 1 or Search page on your website and on clicking Search, redirected to Complete Client or full-page booking engine hosted by you to display large availability responses. To achieve this, just configure setstep2url in the step1 page to point to complete client hosted by you. ctotaengine.setstep2url(" This tells the engine the URL of the webpage, which will display the result of the availability request. Note: This should be https as this page will take credit card information from the customer. Call Out Method The reserved functions/call out methods can be triggered, if required, on different steps of the AJAX booking engine. The following call out methods is supported in the booking engine: abestep1() function abestep1() // invoked in step1 abestep2() function abestep2() // invoked in step2 abestep3() function abestep3() // invoked in step3 abestep4() function abestep4() // invoked in step4

14 abestep2_onprogressbar() function abestep2_onprogressbar() // invoked when we search for availability from step1, before the availability is displayed in step2 abestep2_onload() function abestep2_onload() // invoked when we deeplink to step2, before we send the availability request Where to place the script The call out method should be placed proceeding CT_OTA_Engine configuration. That is, include immediately after ctotaengine.displaybookengine(); Example1: Including header (step1/2/3) for the engine This script will display the steps for the engine. function abestep1() { abeid.display("headertype2", "block"); abeid.get("type2header1").classname = "header_style2"; abeid.get("type2header2").classname = "header_style1"; abeid.get("type2header3").classname = "header_style1"; } function abestep2() { abeid.display("headertype2", "block"); abeid.get("type2header1").classname = "header_style1"; abeid.get("type2header2").classname = "header_style2"; abeid.get("type2header3").classname = "header_style1"; } function abestep3() { abeid.display("headertype2", "block"); abeid.get("type2header1").classname = "header_style1"; abeid.get("type2header2").classname = "header_style1"; abeid.get("type2header3").classname = "header_style2"; } function abestep4() { abeid.display("headertype2", "none"); } function abestep2_onload() { abeid.display("headertype2", "none"); } function abestep2_onprogressbar() { abeid.display("headertype2", "none"); }

15 Example2: Including Google Tracking Pixel The google code snippet to track conversions is placed on the conversion page (in step4 of the AJAX booking engine). Follow the steps below. Include container anywhere on the page <img id="abe_conversiontracking_google" width="1" height="1" border="0" /> Inserting Google Code in the engine: Sample code snippet only - DO NOT USE function abestep4() { var google_conversion_id = ; var google_conversion_language = "en_gb"; var google_conversion_format = "1"; var google_conversion_color = "666666"; var google_conversion_label = "Purchase"; abeid.get("conversiontracking_google").src=" /?value=1&label=Purchase&script=0"; } Placing Google Code (conversion.js) to the end of the page <script language="javascript" src=" Support If you require help or support can you direct your queries to our support page at: CarTrawler do not provide telephone or support for any issues relating to this document.

16 Appendixes A. List of currencies Currency Code Currency EUR Euro GBP GB Pound USD US Dollar ARS Argentine Pesos AUD Australian Dollars BRL Brazilian Reais CAD Canadian Dollars CNY Chinese Yuan Renminbi CZK Czech Koruny DKK Danish Kroner HKD Hong Kong Dollars HUF Hungarian Forint INR Indian Rupees JPY Japanese Yen MYR Malaysian Ringgit MXN Mexican Pesos NZD New Zealand Dollars NOK Norwegian Kroner PLN Polish Złoty RUB Russian Rubles SGD Singapore Dollars ZAR South African Rand SEK Swedish Kronor CHF Swiss Francs THB Thai Baht AED United Arab Emirates Dirhams EUR Euro

17 B. List of languages Language Code Language EN English CH Swiss CS Czech DA Danish DE German EL Greek ES Spanish ET Estonian FI Finnish FO Faroese FR French HR Croatian HU Hungarian IT Italian JA Japanese LT Lithuanian LV Latvian NL Dutch NO Norwegian PL Polish PT Portuguese RO Romanian RU Russian SV Swedish TR Turkish C. List of car groups Code Car Group 1 Mini 3 Economy 4 Compact 6 Intermediate 7 Standard 8 Fullsize 9 Luxury 10 Premium 11 Minivan passenger van 24 Exotic 0 Show all

18 D. Links to resources otaproxy: ( CarTrawler location list: ( E. Miscellaneous configuration ctotaengine.setpopoutiframe (1); This is used for a standalone Step1, based inside an IFrame. The default behaviour is for the results in Step 2 to be displayed inside the same IFrame. When this is set, this will cause the results to popout of the IFrame, taking up the full browser window. ctotaengine.setshowavailnewwindow (1); This is used for a standalone Step1 (both inside an IFrame and outside an IFrame). The default behaviour is for Step2 to be displayed inside the same browser window. When this is set, the engine will attempt to create a new browser window containing the results in Step2. WARNING: Pop up blockers will prevent new browser windows being created by javascript. They will have to be disabled for this functionality to work.

19 FAQ This section holds common questions about the way to install CarTrawler AJAX Booking Engine. 1. Unix/Windows: Where should my php.ini file be located? By default on Unix it should be in /usr/local/lib which is <install-path>/lib. On Windows the default path for the php.ini file is the Windows directory. 2. Windows: I can't get PHP and IIS to work together! Please refer to php manual:installation on windows system at 3. How do I add my PHP directory to the PATH on Windows? On Windows NT, 2000, XP and 2003: a. Go to Control Panel and open the System icon (Start -> Settings ->Control Panel -> System, or just Start -> Control Panel -> System for Windows XP/2003) b. Go to the Advanced tab c. Click on the 'Environment Variables' button d. Look into the 'System Variables' pane e. Find the Path entry (you may need to scroll to find it) f. Double click on the Path entry g. Enter your PHP directory ant the end, including ';' before (e.g. C:\php) * Press OK and restart your computer 4. How do I enable curl extension on windows? a. Enable the curl extension(s) in php.ini you want to use by uncommenting the extension=php_curl.dll lines in php.ini. This is done by deleting the leading ; from the extension you want to load. b. Be sure to appropriately set the extension_dir directive (Example: extension_dir = ".\\ext\\") 5. What should be the size of iframe to display the booking engine? Ensure sufficient space is given to the booking engine so it can display large availability responses that could be returned in Step 2 of the booking process. The recommended size of iframe to display the booking engine is 780px width & 700px height (to display 4 cars). Also enable scroll bars in iframe. For more information on installation of extensions on Windows please refer

Easy Cart User Manual

Easy Cart User Manual Easy Cart User Manual Table of contents 1. Installing Easy Cart (p. 2) 2. Overview of the administration panel (p. 2) 3. Configuring the website (p. 3) 4. Template settings (p. 6) 5. Setting the product

More information

DoorVaani.com User Guide

DoorVaani.com User Guide DoorVaani.com User Guide DoorVaani.com is a VOIP Services provider and the website at DoorVaani.com is a fully automated web application for self-administration of your account. This user guide details

More information

Virtual Blade Configuration Mode Commands

Virtual Blade Configuration Mode Commands Virtual Blade Configuration Mode Commands To configure virtual blades on a WAE device, use the virtual-blade global configuration command. To disable a virtual blade, use the no form of this command. virtual-blade

More information

EXPEDIA MICE HANDBOOK HOW TO IMPLEMENT WIDGETS ON YOUR HOTEL WEBSITE

EXPEDIA MICE HANDBOOK HOW TO IMPLEMENT WIDGETS ON YOUR HOTEL WEBSITE EXPEDIA MICE HANDBOOK HOW TO IMPLEMENT WIDGETS ON YOUR HOTEL WEBSITE Version 3 December 2017 Increase conversion and user experience by implementing price and search widgets on your hotel website. Expedia

More information

Oracle Access Manager

Oracle Access Manager Oracle Access Manager Addendum to Release Notes 10g (10.1.4.0.1) January 2007 This document is an addendum to the Release Notes for Oracle Access Manager 10g (10.1.4.0.1). It contains the following sections:

More information

QUICK REFERENCE GUIDE: SHELL SUPPLIER PROFILE QUESTIONNAIRE (SPQ)

QUICK REFERENCE GUIDE: SHELL SUPPLIER PROFILE QUESTIONNAIRE (SPQ) QUICK REFERENCE GUIDE: SHELL SUPPLIER PROFILE QUESTIONNAIRE (SPQ) July 2018 July 2018 1 SPQ OVERVIEW July 2018 2 WHAT IS THE SHELL SUPPLIER PROFILE QUESTIONNAIRE? Shell needs all potential and existing

More information

User guide on how to generate PDF versions of the product information - veterinary

User guide on how to generate PDF versions of the product information - veterinary 03 February 2011 EMA/793983/2010 v.1.0 Patient Health Protection User guide on how to generate PDF versions of the product information - veterinary Introduction Since the product information consists of

More information

Oracle Commerce Cloud. What s New in Release 17.2

Oracle Commerce Cloud. What s New in Release 17.2 Oracle Commerce Cloud What s New in Release 17.2 April 2017 Revised: June 2017 TABLE OF CONTENTS REVISION HISTORY... 3 OVERVIEW... 4 RELEASE FEATURE SUMMARY... 5 MAJOR NEW FEATURES... 6 Multisite via One

More information

Supply Cars Affiliate Manual Version 1.0

Supply Cars Affiliate Manual Version 1.0 Supply Cars Affiliate Manual Version 1.0 Contents Introduction Technology Suppliers Booking engine integration Affiliate Support Coverage Downtime Security Commission How we work Booking engine integration

More information

DIGIPASS DP 260 USER MANUAL

DIGIPASS DP 260 USER MANUAL DIGIPASS DP 260 USER MANUAL Contents 1. What is DIGIPASS? 2. How to activate the DIGIPASS and how to enter 3. How to use DIGIPASS? 1. What is DIGIPASS? Symbols used in the device DIGIPASS DP 260 is password-protected

More information

Standardized PartnerAccess Feed

Standardized PartnerAccess Feed Standardized PartnerAccess Feed User Manual Ver.5 Last modified on Wednesday, August 01, 2012 CNET Content Solutions, DataSource, ChannelOnline, Intelligent Cross- Sell, and PartnerAccess are trademarks

More information

Rescue Lens Administrators Guide

Rescue Lens Administrators Guide Rescue Lens Administrators Guide Contents About Rescue Lens...4 Rescue Lens Administration Center At a Glance...4 LogMeIn Rescue Lens System Requirements...4 About Rescue Lens in a Multilingual Environment...5

More information

CONTENT. ANALYST OPINION INDICATOR for MT4. Set up & Configuration Guide. Description 1 Subscribing to TRADING CENTRAL feed 1 Installation process 1

CONTENT. ANALYST OPINION INDICATOR for MT4. Set up & Configuration Guide. Description 1 Subscribing to TRADING CENTRAL feed 1 Installation process 1 ANALYST OPINION INDICATOR for MT4 Set up & Configuration CONTENT Description 1 Subscribing to TRADING CENTRAL feed 1 Installation process 1 Indicator's use and set up 4 Features and parameters 5 Upgrade

More information

PCT Fee Tables (amounts on 9 September 2013, unless otherwise indicated)

PCT Fee Tables (amounts on 9 September 2013, unless otherwise indicated) PCT Fee Tables The following Tables show the amounts and currencies of the main PCT fees which are payable to the receiving Offices (ROs) and the International Preliminary Examining Authorities (IPEAs)

More information

krones Academy - media suite User guide

krones Academy - media suite User guide krones Academy - media suite User guide krones Academy Beispieltext media suite Login. Enter the following website address in the Internet Explorer: http://academy.krones.com. Enter login name and password.

More information

Oracle. Engagement Cloud Using Knowledge in Engagement Cloud. Release 13 (update 18B)

Oracle. Engagement Cloud Using Knowledge in Engagement Cloud. Release 13 (update 18B) Oracle Engagement Cloud Using Knowledge in Engagement Cloud Release 13 (update 18B) Release 13 (update 18B) Part Number E96141-06 Copyright 2011-2018, Oracle and/or its affiliates. All rights reserved.

More information

Int_altapay. Version

Int_altapay. Version Int_altapay Version 15.0 Table of Contents SUMMARY 3 RELEASE HISTORY 3 COMPONENT OVERVIEW 3 F UNCTIONAL O VERVIEW 5. P RIVACY, P AYMENT 3 5 4. IMPLEMENTATION GUIDE 5 4. S ETUP 4. M ETADATA IMPORT & C USTOM

More information

WEB ANALYTICS. Installation Guide. (Tracking Code 4.0) October 27, 2

WEB ANALYTICS. Installation Guide. (Tracking Code 4.0) October 27, 2 WEB ANALYTICS Installation Guide (Tracking Code 4.0) October 27, 2, 2008 Yahoo! Web Analytics Installation Guide (v. 4.0) 2/74 Table of Contents 1 INTRODUCTION......... 7 1.1 GETTING STARTED WITH YAHOO!

More information

Google Search Appliance

Google Search Appliance Google Search Appliance Search Appliance Internationalization Google Search Appliance software version 7.2 and later Google, Inc. 1600 Amphitheatre Parkway Mountain View, CA 94043 www.google.com GSA-INTL_200.01

More information

1.1 Create a New Survey: Getting Started. To create a new survey, you can use one of two methods: a) Click Author on the navigation bar.

1.1 Create a New Survey: Getting Started. To create a new survey, you can use one of two methods: a) Click Author on the navigation bar. 1. Survey Authoring Section 1 of this User Guide provides step-by-step instructions on how to author your survey. Surveys can be created using questions and response choices you develop; copying content

More information

PCT Fee Tables (amounts on 1 September 2014, unless otherwise indicated)

PCT Fee Tables (amounts on 1 September 2014, unless otherwise indicated) PCT Fee Tables The following Tables show the amounts and currencies of the main PCT fees which are payable to the receiving Offices (ROs) and the International Preliminary Examining Authorities (IPEAs)

More information

Fizz Traveller 2 User Manual

Fizz Traveller 2 User Manual Fizz Traveller 2 User Manual Introduction - Fizz Traveller 2... 2 Installing Fizz Traveller 2... 3 Launching Fizz Traveller 2... 3 Registering Fizz Traveller 2... 4 Alarms... 8 World Map (Smartphone Only)...

More information

Formatting Custom List Information.

Formatting Custom List Information. Hello. MailChimp has a lot of great merge tags that can help you customize your email campaigns. You can use MailChimp s merge tags to dynamically add content to your email. Include something as simple

More information

SCUtils Survey Lite Trial Installation Guide Solution for Microsoft System Center 2012 Service Manager

SCUtils Survey Lite Trial Installation Guide Solution for Microsoft System Center 2012 Service Manager SCUtils Survey Lite Trial Installation Guide Solution for Microsoft System Center 2012 Service Manager Published: 14 th September 2015 Version: 1.9 Authors: Marat Kuanyshev Feedback: support@scutils.com

More information

PCT Fee Tables (amounts on 1 November 2015, unless otherwise indicated)

PCT Fee Tables (amounts on 1 November 2015, unless otherwise indicated) PCT Fee Tables The following Tables show the amounts and currencies of the main PCT fees which are payable to the receiving Offices (ROs) and the International Preliminary Examining Authorities (IPEAs)

More information

2011 IAN.com L.P. All rights reserved.

2011 IAN.com L.P. All rights reserved. User Guide V1.7.0 2011 IAN.com L.P. All rights reserved. You are hereby authorized to store documentation on a single computer for personal use only and to print copies of documentation for personal use

More information

vrealize Business for Cloud Install Guide

vrealize Business for Cloud Install Guide vrealize Business for Cloud Install Guide vrealize Business for Cloud Standard 7.0.1 and vrealize Business for Cloud Advanced 7.0.1 This document supports the version of each product listed and supports

More information

Valitor Salesforce Commerce Cloud SFRA Module

Valitor Salesforce Commerce Cloud SFRA Module Integration Manual SFRA (Storefront Reference Architecture) Valitor Salesforce Commerce Cloud SFRA Module Integrating with Valitor could not be easier. Choose between Hosted, HTTP POST or XML integration

More information

Click-to-Call (Web RTC)

Click-to-Call (Web RTC) Click-to-Call (Web RTC) Admin Guide 27 September 2018 Contents Click-to-Call and StarLeaf Cloud 3 Browser support for Click-to-Call 3 Chrome 3 Internet Explorer 3 Firefox 4 Safari 4 Content share for browser-based

More information

vrealize Business for Cloud Install Guide

vrealize Business for Cloud Install Guide vrealize Business for Cloud Install Guide vrealize Business for Cloud Standard 7.0.1 and vrealize Business for Cloud Advanced 7.0.1 vrealize Business 7.0.1 vrealize Business for Cloud 7.0.1 You can find

More information

Managing System Administration Settings

Managing System Administration Settings This chapter contains the following sections: Setting up the Outgoing Mail Server, page 2 Working with Email Templates, page 2 Configuring System Parameters (Optional), page 5 Updating the License, page

More information

USER GUIDE PUBLIC Document Version: SAP Translation Hub SAP SE or an SAP affiliate company. All rights reserved.

USER GUIDE PUBLIC Document Version: SAP Translation Hub SAP SE or an SAP affiliate company. All rights reserved. USER GUIDE PUBLIC Document Version: 1807 2018-08-22 2018 SAP SE or an SAP affiliate company. All rights reserved. THE BEST RUN Content 1.... 4 1.1 What's New for.... 4 Release Notes - 2017....8 1.2 Getting

More information

Code Authenticator. User guide

Code Authenticator. User guide Code Authenticator User guide Contents Introduction 1 Service administrator 1-2 Role and responsibilities Adding Deleting and suspending User 3 Role Adding Deleting and suspending Smart Cards 3-4 Issuing

More information

DeskApp Admin Manual. Release 1.0 final. Kopano

DeskApp Admin Manual. Release 1.0 final. Kopano DeskApp Admin Manual Release 1.0 final Kopano Feb 21, 2018 Contents 1 Introduction 2 2 System requirements 3 2.1 WebApp............................................... 3 2.2 Operating system...........................................

More information

PCT Fee Tables (amounts on 1 June 2009, unless otherwise indicated)

PCT Fee Tables (amounts on 1 June 2009, unless otherwise indicated) PCT Fee Tables The following Tables show the amounts and currencies of the main PCT fees which are payable to the receiving Offices (ROs) and the International Preliminary Examining Authorities (IPEAs)

More information

MSRP Price list & order form

MSRP Price list & order form 1 LVI America, Inc. 150 north Michigan Avenue, Ste 1950 Chicago, IL 60601 Phone: (888) 781-7811 E-mail: order@lviamerica.com WWW.LVIAMERICA.COM MSRP Price list & order form Valid from 2018-01-31 Product

More information

novdocx (en) 11 December 2007 XII XIIWebAccess

novdocx (en) 11 December 2007 XII XIIWebAccess XIIWebAccess Chapter 53, Scaling Your WebAccess Installation, on page 855 Chapter 54, Configuring WebAccess Components, on page 869 Chapter 55, Managing User Access, on page 915 Chapter 56, Monitoring

More information

ADOBE READER AND ACROBAT 8.X AND 9.X SYSTEM REQUIREMENTS

ADOBE READER AND ACROBAT 8.X AND 9.X SYSTEM REQUIREMENTS ADOBE READER AND ACROBAT 8.X AND 9.X SYSTEM REQUIREMENTS Table of Contents OVERVIEW... 1 Baseline requirements beginning with 9.3.2 and 8.2.2... 2 System requirements... 2 9.3.2... 2 8.2.2... 3 Supported

More information

Monetra. Merchant Account Setup Worksheet. Merchant Account Setup Worksheet v8.8.0 Build Generated On: November 8, 2018

Monetra. Merchant Account Setup Worksheet. Merchant Account Setup Worksheet v8.8.0 Build Generated On: November 8, 2018 Monetra Merchant Account Setup Worksheet Merchant Account Setup Worksheet v8.8.0 Build 56867 Generated On: November 8, 2018 Copyright 1999-2018 Main Street Softworks, Inc. The information contained herein

More information

PCT Fee Tables (amounts on 1 November 2017, unless otherwise indicated)

PCT Fee Tables (amounts on 1 November 2017, unless otherwise indicated) PCT Fee Tables The following Tables show the amounts and currencies of the main PCT fees which are payable to the receiving Offices (ROs) and the International Preliminary Examining Authorities (IPEAs)

More information

Avinode Broker Link Manual

Avinode Broker Link Manual Avinode Broker Link Manual Doc. version 2.2 www.avinode.com 1 Table of contents 1. Avinode Link About... 3 2. Set up Broker Link on your website... 4 2.1 Basic setup... 4 2.1.1 The tag... 5 2.1.2

More information

Page 1 of 11 Language Support Utilisation Selection Procedure Translation files Locale identifiers Language files Process Testing Considerations Help Files License files Program Manager Windows shortcuts

More information

Dell SupportAssist for PCs. User's Guide for Windows 10 in S Mode

Dell SupportAssist for PCs. User's Guide for Windows 10 in S Mode Dell SupportAssist for PCs User's Guide for Windows 10 in S Mode Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION

More information

Smart Events Cloud Release February 2017

Smart Events Cloud Release February 2017 Smart Events Cloud Release February 2017 Maintenance Window This is not a site-down release. Users still have access during the upgrade. Modules Impacted The changes in this release affect these modules

More information

European Year 2012 for Active Ageing and Solidarity between Generations. Graphic guidelines

European Year 2012 for Active Ageing and Solidarity between Generations. Graphic guidelines European Year 2012 for Active Ageing and Solidarity between Generations Graphic guidelines Contents Publishing information Published by European Commission Designed by Directorate General Employment, Social

More information

Multilingual Support Configuration For IM and Presence Service

Multilingual Support Configuration For IM and Presence Service Multilingual Support Configuration For IM and Presence Service Install Locale Installer on IM and Presence Service, page 1 Error Messages, page 3 Localized Applications, page 5 Install Locale Installer

More information

LiveEngage System Requirements and Language Support Document Version: 5.6 May Relevant for LiveEngage Enterprise In-App Messenger SDK v2.

LiveEngage System Requirements and Language Support Document Version: 5.6 May Relevant for LiveEngage Enterprise In-App Messenger SDK v2. LiveEngage System Requirements and Language Support Document Version: 5.6 May 2017 Relevant for LiveEngage Enterprise In-App Messenger SDK v2.3 Introduction The LiveEngage platform aims to provide the

More information

Install Guide For Windows 7 Professional >>>CLICK HERE<<<

Install Guide For Windows 7 Professional >>>CLICK HERE<<< Install Guide For Windows 7 Professional Language Pack French Five Language SP is applicable only for Vista English, French, German, Japanese or Installing Windows 7 Service Pack is recommended prior to

More information

SCUtils Knowledge Base Installation Guide Solution for Microsoft System Center 2012 Service Manager

SCUtils Knowledge Base Installation Guide Solution for Microsoft System Center 2012 Service Manager SCUtils Knowledge Base Installation Guide Solution for Microsoft System Center 2012 Service Manager Published: 3 d November 2014 Version: 3.4 Authors: Marat Kuanyshev Feedback: support@scutils.com Contents

More information

<Insert Picture Here> Oracle Policy Automation 10.0 Features and Benefits

<Insert Picture Here> Oracle Policy Automation 10.0 Features and Benefits Oracle Policy Automation 10.0 Features and Benefits December 2009 The following is intended to outline our general product direction. It is intended for information purposes only,

More information

FAQ RHB TravelFX App and Multi-Currency Card

FAQ RHB TravelFX App and Multi-Currency Card FAQ RHB TravelFX App and Multi-Currency Card 1 About RHB TravelFX 1.1 What is the RHB TravelFX? RHB TravelFX is a mobile application that is to be used for your RHB TravelFX Multi-Currency Card that allows

More information

Oracle Policy Automation Release Notes

Oracle Policy Automation Release Notes Oracle Policy Automation 10.1.0 Release Notes Contents Release Overview 2 Oracle Policy Modeling 4 Singleton entities should not be used... 4 InstanceValueIf function... 4 Automatic entity containment...

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

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Summary This document outlines the necessary steps for transferring your Norman Endpoint Protection product to Avast

More information

Oracle. Talent Acquisition Cloud Using Scheduling Center. 17 (update 17.4)

Oracle. Talent Acquisition Cloud Using Scheduling Center. 17 (update 17.4) Oracle Talent Acquisition Cloud 17 (update 17.4) Part Number: E93807-01 Copyright 2018, Oracle and/or its affiliates. All rights reserved Authors: OTAC Information Development Team This software and related

More information

LogMeIn Rescue Administrators Guide

LogMeIn Rescue Administrators Guide LogMeIn Rescue Administrators Guide Contents About LogMeIn Rescue...6 LogMeIn Rescue Components...6 Administration Center At a Glance...6 Technician Console At a Glance...6 Command Center At a Glance...7

More information

2. bizhub Remote Access Function Support List

2. bizhub Remote Access Function Support List 2. bizhub Remote Access Function Support List MFP Function Support List for bizhub Remote Access Basic s MFP model Firmware v C754/ C654/ C754e/ C654e 754/ 654 C554/ C454/ C364/ C284/ C224 (*5) A1610Y

More information

1. What is AAE Travel Card? Currency Currency Code US Dollar Euro Pound Sterling Australian Dollar Canadian Dollar Hong Kong Dollar Thai Bhat

1. What is AAE Travel Card? Currency Currency Code US Dollar Euro Pound Sterling Australian Dollar Canadian Dollar Hong Kong Dollar Thai Bhat 1. What is AAE Travel Card? It s a reloadable pre-paid Visa Platinum Card that can hold multiple foreign currencies on one card. It can be used to pay for goods and services or to withdraw money from ATMs

More information

Installation process Features and parameters Upgrade process... 6

Installation process Features and parameters Upgrade process... 6 Content Installation process... 1 Features and parameters... 4 Upgrade process... 6 Installation process The latest version of our Indicator can be downloaded from here http://www.tradingcentral.com/install_trading_central_indicator_for_metatrader/setup.exe

More information

LiveEngage System Requirements and Language Support Document Version: 5.0 February Relevant for LiveEngage Enterprise In-App Messenger SDK v2.

LiveEngage System Requirements and Language Support Document Version: 5.0 February Relevant for LiveEngage Enterprise In-App Messenger SDK v2. LiveEngage System Requirements and Language Support Document Version: 5.0 February 2017 Relevant for LiveEngage Enterprise In-App Messenger SDK v2.0 Introduction The LiveEngage platform aims to provide

More information

STPP Testing Published: 8 December 2017

STPP Testing Published: 8 December 2017 During integration with Secure Trading s systems, the Merchant can perform tests on the system using the details supplied within this document. Published: 8 December 2017 1.18 Table of Contents 1 Introduction...

More information

Microsoft Academic Select Enrollment

Microsoft Academic Select Enrollment Microsoft Academic Select Enrollment Academic Select Agreement number Reseller or Microsoft affiliate to complete Academic Select Agreement Expiration Date Reseller or Microsoft affiliate to complete Enrollment

More information

Version 5.0 September P Xerox App Gallery. App Gallery User Guide

Version 5.0 September P Xerox App Gallery. App Gallery User Guide Version 5.0 September 2018 702P06709 Xerox App Gallery App Gallery User Guide 2018 Xerox Corporation. All rights reserved. Xerox, Xerox and Design, ConnectKey, VersaLink, AltaLink, Xerox Extensible Interface

More information

Multilingual Support Configuration For IM and Presence Service

Multilingual Support Configuration For IM and Presence Service Multilingual Support Configuration For IM and Presence Service Locale Installation, page 1 Install Locale Installer on IM and Presence Service, page 3 Error Messages, page 5 Localized Applications, page

More information

Technical Information

Technical Information Building Technologies Division Security Products Technical Information SPC Series SPC Support CD Release Note CD V3.6.6 04/08/2015 Updates since: CD V3.4.5 Release V3.6.6 for SPC versions SPC42xx/43xx/52xx/53xx/63xx.

More information

Managing System Administration Settings

Managing System Administration Settings This chapter contains the following sections: Setting up the Outgoing Mail Server, page 2 Working with Email Templates, page 2 Configuring System Parameters (Optional), page 5 Running an Object Search,

More information

Xerox App Gallery App Gallery User Guide. Version 5.0 September P06709

Xerox App Gallery App Gallery User Guide. Version 5.0 September P06709 Xerox App Gallery App Gallery User Guide Version 5.0 September 2018 702P06709 2018 Xerox Corporation. All rights reserved. Xerox, Xerox and Design, ConnectKey, VersaLink, AltaLink, Xerox Extensible Interface

More information

Microsoft Store badge guidelines. October 2017

Microsoft Store badge guidelines. October 2017 Microsoft Store badge guidelines October 2017 Welcome Together we can do amazing things. Millions of fans and thousands of partners and developers across the world empower people and organizations do great

More information

The SAP Knowledge Acceleration, website package, can be deployed to any web server, file server, CD-ROM, or a user workstation.

The SAP Knowledge Acceleration, website package, can be deployed to any web server, file server, CD-ROM, or a user workstation. SAP KNOWLEDGE ACCELERATION TECHNICAL SPECIFICATIONS In this guide, you will learn about hardware and software requirements for SAP Knowledge Acceleration (KA). SAP Knowledge Acceleration (KA) is a web-based

More information

FS-1100 / FS-1300D Product Library

FS-1100 / FS-1300D Product Library FS-1100 / FS-1300D Product Library Version 1.1 EUR / 29.01.2008 Release Notes CD Contents Operating System(s): Version: (1) Printer Drivers: KX Printer Driver (Generic) Windows 98, Me, NT4 4.2.1409b KX

More information

Managing System Administration Settings

Managing System Administration Settings This chapter contains the following sections: Setting Up the Outgoing Mail Server, page 1 Working with Email Templates, page 2 Configuring System Parameters (Optional), page 5 Updating the License, page

More information

EU Terminology: Building text-related & translation-oriented projects for IATE

EU Terminology: Building text-related & translation-oriented projects for IATE EU Terminology: Building text-related & translation-oriented projects for IATE 20th European Symposium on Languages for Special Purposes University of Vienna 8-10 July 2015 Rodolfo Maslias European Parliament

More information

ipod touch 16GB - Technical Specifications

ipod touch 16GB - Technical Specifications ipod touch 16GB - Technical Specifications Size and Weight Height: 4.86 inches (123.4 mm) Width: 2.31 inches (58.6 mm) Depth: 0.24 inch (6.1 mm) Weight: 3.04 ounces (86 grams) Capacity 16GB Wireless 802.11a/b/g/n

More information

Localizing Intellicus. Version: 7.3

Localizing Intellicus. Version: 7.3 Localizing Intellicus Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from,

More information

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 2 Copyright 2011, Oracle and/or its affiliates. All rights reserved. Oracle E-Business Suite Internationalization and Multilingual Features

More information

KIWI Smartphone FAQs V1.1 HUAWEI TECHNOLOGIES CO., LTD. Software Engineering Documentation Dept. Date December 2015

KIWI Smartphone FAQs V1.1 HUAWEI TECHNOLOGIES CO., LTD. Software Engineering Documentation Dept. Date December 2015 KIWI Smartphone FAQs V1.1 Author Software Engineering Documentation Dept Date December 2015 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2015. All rights reserved. No part of this

More information

AhsayUBS Installation Guide on HP ProLiant MicroServer Gen8

AhsayUBS Installation Guide on HP ProLiant MicroServer Gen8 AhsayUBS Installation Guide on HP V1.0 Ahsay Systems Corporation Limited 1 June 2015 AhsayUBS Installation Guide on HP ProLiant MircoServer Gen8 Copyright Notice 2015 Ahsay Systems Corporation Limited

More information

leveraging your Microsoft KBase V3 Manual 2.1 INTRODUCTION... 3

leveraging your Microsoft KBase V3 Manual 2.1 INTRODUCTION... 3 Content KBase Manual 1 INTRODUCTION... 3 1.1 LANGUAGES... 3 1.2 SYSTEMS... 3 1.3 REQUIREMENTS... 3 2 INSTALLATION OF KBASE... 3 2.1 INTRODUCTION... 3 2.2 PROCESS... 4 2.3 FILES... 8 2.4 THE FIRST OUTLOOK

More information

LiveEngage System Requirements and Language Support Document Version: 6.4 March 2018

LiveEngage System Requirements and Language Support Document Version: 6.4 March 2018 LiveEngage System Requirements and Language Support Document Version: 6.4 March 2018 Introduction The LiveEngage platform aims to provide the best engagement experiences for consumers and brands. To do

More information

Indirect Payment Processor

Indirect Payment Processor Indirect Payment Processor Technical Integration Page 1 of 19 Rights of use: COMPLYING WITH ALL APPLICABLE COPYRIGHT LAWS IS THE RESPONSABILITY OF THE USER. WITHOUT LIMITING THE RIGHTS UNDER COPYRIGHT,

More information

Hik-Connect Mobile Client

Hik-Connect Mobile Client Hik-Connect Mobile Client SPEC V3.6.3 Name: Hik-Connect Mobile Client Software Version: V3.6.3 Android: System Requirement: Android 4.1 or Above ios: System Requirement: ios 8.0 or Above Software Information

More information

IBM DB2 Web Query for System i V1R1M0 and V1R1M1 Install Instructions (updated 08/21/2009)

IBM DB2 Web Query for System i V1R1M0 and V1R1M1 Install Instructions (updated 08/21/2009) IBM DB2 Web Query for System i V1R1M0 and V1R1M1 Install Instructions (updated 08/21/2009) Installation & Setup Review all instructions before starting the install of DB2 Web Query. Complete these steps

More information

PCT Fee Tables (amounts on 1 November 2018, unless otherwise indicated)

PCT Fee Tables (amounts on 1 November 2018, unless otherwise indicated) PCT Fee Tables The following Tables show the amounts and currencies of the main PCT fees which are payable to the receiving Offices (ROs) and the International Preliminary Examining Authorities (IPEAs)

More information

PCT Fee Tables (amounts on 1 December 2018, unless otherwise indicated)

PCT Fee Tables (amounts on 1 December 2018, unless otherwise indicated) PCT Fee Tables The following Tables show the amounts and currencies of the main PCT fees which are payable to the receiving Offices (ROs) and the International Preliminary Examining Authorities (IPEAs)

More information

PCT Fee Tables (amounts on 1 October 2018, unless otherwise indicated)

PCT Fee Tables (amounts on 1 October 2018, unless otherwise indicated) PCT Fee Tables The following Tables show the amounts and currencies of the main PCT fees which are payable to the receiving Offices (ROs) and the International Preliminary Examining Authorities (IPEAs)

More information

Managing System Administration Settings

Managing System Administration Settings This chapter contains the following sections: Setting Up the Outgoing Mail Server, page 1 Working with Email Templates, page 2 Customizing an Email Template, page 3 Configuring System Parameters (Optional),

More information

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Summary This document outlines the necessary steps for transferring your Norman Endpoint Protection product to Avast

More information

DocuSign Service User Guide. Information Guide

DocuSign Service User Guide. Information Guide Information Guide 1 DocuSign Service User Guide 1 Copyright 2003-2013 DocuSign, Inc. All rights reserved. For information about DocuSign trademarks, copyrights and patents refer to the DocuSign Intellectual

More information

American Philatelic Society Translation Committee. Annual Report Prepared by Bobby Liao

American Philatelic Society Translation Committee. Annual Report Prepared by Bobby Liao American Philatelic Society Translation Committee Annual Report 2012 Prepared by Bobby Liao - 1 - Table of Contents: 1. Executive Summary 2. Translation Committee Activities Summary July 2011 June 2012

More information

Release Notes. Spectrum Spatial Analyst Version Contents:

Release Notes. Spectrum Spatial Analyst Version Contents: Location Intelligence Spectrum Spatial Analyst Version 12.1 This document contains information about Pitney Bowes Spectrum Spatial Analyst Release 12.1. Contents: What s new in Spectrum Spatial Analyst?

More information

Product Library 4.0 EUR. CD Contents. Release Notes July 1st, Windows Vista. Windows. Windows. Server Windows 2000.

Product Library 4.0 EUR. CD Contents. Release Notes July 1st, Windows Vista. Windows. Windows. Server Windows 2000. 1 of 7 Product Library 4.0 EUR Release Notes July 1st, 2010 CD Contents Printer s Version 98, Me, NT4.0 2000 XP Vista 7 Server 2000 Server 2003 Server 2008 Server 2008 R2 KX DRIVER 5.1.1705 KX DRIVER 4.2.1409b

More information

Release Notes. Spectrum Spatial Analyst Version 8.0. Contents:

Release Notes. Spectrum Spatial Analyst Version 8.0. Contents: Location Intelligence Spectrum Spatial Analyst Version 8.0 This document contains information about Pitney Bowes Spectrum Spatial Analyst Release 8.0. Contents: What s new in Spectrum Spatial Analyst?

More information

Hik-Connect Client Software V (Android) V (iOS) Release Notes ( )

Hik-Connect Client Software V (Android) V (iOS) Release Notes ( ) Hik-Connect Client Software V3.1.0 0828(Android) V3.1.0 170830(iOS) Release Notes (2017-09-07) Hik-Connect Version 3.1.0: Optimize Login Page Hik-Connect account and email address are displayed default,

More information

InterKey 2.0 for Windows Mobile Pocket PC devices

InterKey 2.0 for Windows Mobile Pocket PC devices Copyright 2005-2006 Paragon Software (Smart Handheld Devices Division) InterKey 2.0 for Windows Mobile Dear customers! Thank you for buying our software. It is your interest that inspires us to develop

More information

Portal Administrator guide

Portal Administrator guide Portal Administrator guide Admin Guide 21 March 2018 Contents About your Portal admin account 3 Your settings 3 User email notifications 3 Calling to telephone networks 3 Edit your organization's account

More information

Lionbridge ondemand for Adobe Experience Manager

Lionbridge ondemand for Adobe Experience Manager Lionbridge ondemand for Adobe Experience Manager Version 1.1.0 Configuration Guide October 24, 2017 Copyright Copyright 2017 Lionbridge Technologies, Inc. All rights reserved. Published in the USA. March,

More information

Perceptive Intelligent Capture Visibility

Perceptive Intelligent Capture Visibility Perceptive Intelligent Capture Visibility Technical Specifications Version: 3.1.x Written by: Product Knowledge, R&D Date: August 2018 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark

More information

Sips Payment Acceptance Solution

Sips Payment Acceptance Solution Sips Payment Acceptance Solution Product Document Public - DocId:WLSIPS.314.12.18R1.en Contact: +33 (0) 811 10 70 33 Copyrignt 2017, Worldline S.A. sips@worldline.com / sips.worldline.com Content Version

More information

Brainware Intelligent Capture

Brainware Intelligent Capture Brainware Intelligent Capture Technical s Version: 5.8.1 Written by: Product Knowledge, R&D Date: Tuesday, February 20, 2018 2017 Hyland Software, Inc. and its affiliates. Perceptive Intelligent Capture

More information

USER GUIDE FOR HARLEY-DAVIDSON BOOM! BOX GTS MAP UPDATE TOOLBOX

USER GUIDE FOR HARLEY-DAVIDSON BOOM! BOX GTS MAP UPDATE TOOLBOX USER GUIDE FOR HARLEY-DAVIDSON BOOM! BOX GTS MAP UPDATE TOOLBOX Contents 1. What is Boom! Box GTS Toolbox?. Install Boom! Box GTS Toolbox.1. For Windows 4.. For Mac (OSX) 4. Navigation Data Synchronizing

More information