For more information, see the Arcsight Locales and Encodings document available from the ArcSight Customer Support download site.

Size: px
Start display at page:

Download "For more information, see the Arcsight Locales and Encodings document available from the ArcSight Customer Support download site."

Transcription

1 0BArcSight SmartConnectors and Localization SUMMARY This document provides guidelines and helpful information related to ArcSight SmartConnectors that receive events from devices in languages other than English. This document describes the localization support for various types of parsers used by ArcSight SmartConnectors. For more information, see the Arcsight Locales and Encodings document available from the ArcSight Customer Support download site. WORKING WITH ARCSIGHT PARSERS TO HANDLE LOCALE-SPECIFIC ISSUES ArcSight SmartConnectors use different kinds of parsers. Guidelines using examples of key-value and regex parsers to handle events from devices in languages other than English are provided. This information is provided to explain both what is currently supported and what can be tailored for the parser in order to meet further localization needs for a particular language environment. Key Value Parsers ArcSight SmartConnectors that use key-value parsers provide a mechanism that can be used by end users to parse events coming from localized devices. Example: Assume the contents of a key-value parser are as follows and the name of the key that we are interested in is User: key.delimiter=&& key.value.delimiter== key.regexp=([^&=]+) token.count=1 token[0].name=user additionaldata.enabled=true event.destinationusername=user Case 1: Assume that the event is such that the key is in English and the value is also in English. {English key}={english value} or User=Mary In this case, the connector should work without any further changes and this event will be successfully parsed, because the contents of both the key and its value are in English. ArcSight SmartConnectors and Localization Technical Note 1

2 Case 2: Now assume that the event is such that the key is in English but the value is in a foreign language, say Chinese. {English key}={chinese value} or User={Chinese for Mary } In this case, the connector will be able to parse the values, because it already supports double bytes. However, for the data of the value to be displayed in the appropriate foreign language, make the following configuration changes: 1. Identify the character set or encoding of your values that are appearing in the foreign language. 2. In the agent.properties file, set the appropriate property to that character set. This property name is different for different types of connectors, so set the property accordingly. These properties apply to FlexConnectors as well. The property currently exists for the SNMP connector. As an example, for SNMP connectors you would add the following line in agent.properties: snmp.charset={your character set for the foreign language} 3. Restart the connector. Just because the value Mary is in Chinese, it does not mean that the event is coming from a localized device. It means that the device supports internationalization, but by itself it is not localized, because otherwise the key User would have also have appeared in Chinese. Case 3: Now, assume that the event is such that the key is in a foreign language, say Chinese, and the value is in English. {Chinese key}={english value} or {Chinese for User }= Mary This is an example of an event coming from a localized device, because the key User is not in English but it is localized in Chinese by the device. Here the connector will not be able to identify the key User, so all the information will go to additional data (because additional data has been enabled). So in this case, follow the configuration steps for reverse localization as follows: 1. Identify the character set or encoding of your events that are appearing in the foreign language 2. Contact ArcSight Customer Support for the key-value parser file for your connector, along with the name of the parent directory of the parser file. 3. Create a new file with the following name format: {ParserName}.{language id/locale id}.l10n.properties in the following directory: %ARCSIGHT_SMARTCONNECTORS_HOME%\user\agent\fcp\{Parent Directory name of connector identified in step 2} You can locate your language ID / locale ID from the table in the section "Localization of Date Formats." ArcSight SmartConnectors and Localization Technical Note 2

3 For example, for the Windows Event Log connector, create the file nt_advanced.ja.l10n.properties in the %ARCSIGHT_SMARTCONNECTORS_HOME%\user\agent\fcp\nt directory. Important: Create this file using the default system encoding of the localized device sending the events. 4. Specify the file header as follows: #!{DeviceEncoding} Example:!SJIS This file header specifies the encoding of the properties file and must match the encoding of the localized device sending the events. The header must: Be the first line in the file Exactly match the default system encoding of the device sending the localized events An example is the encoding for Russian characters. Note that Cyrillic (Russian) characters can be encoded using both UTF-8 as well as windows-1251 character sets. However, it is not necessary that both these encodings work as headers in the properties file. This is because the header must exactly match the device s default system encoding. Also, this exact encoding must be used when creating the properties file, which can most easily be done on the device itself. To detect the device s default system encoding, see "4BDetermining Default Encoding" on page Identify all the English keys in the original parser file provided by Customer Support. Identify the foreign language keys equivalent to the English keys. Add mapping entries in the file using either of the two syntaxes shown below: a. key.{english key}={chinese key} or b. localkey.{chinese key}={english key} If the English key has spaces in it, e.g. 'User Name' then each word in the English key needs to be appended by a trailing '\' character, except for the last word. Note that this is not required for the localized key. key.user\ Name={Chinese key for 'User Name'} If multiple localized keys need to be mapped to one English key, then you can map them as below using syntax (b). Note that only the following syntax will work, and not the other way round using syntax (a). localkey.{chinese key1}={english key} localkey.{chinese key2}={english key} localkey.{chinese key3}={english key} 6. Restart the connector. ArcSight SmartConnectors and Localization Technical Note 3

4 SmartConnector for Microsoft Windows Event Log Connector and Localization Support The SmartConnector for Microsoft Windows Event Log connector uses a key-value parser. ArcSight SmartConnectors provide reverse localization for different languages using the following encodings for the Windows Event Log connector: Language German Japanese Traditional Chinese Simplified Chinese ISO SJIS Big5 GB2312 Encoding A sample localization file for the Windows Event Log connector can be obtained by requesting ArcSight Customer Support. This file can be used as a template as it contains most of the English keys that need to be localized. Regex Parsers ArcSight provides a mechanism that can be used by end users to parse events coming from localized devices for connectors that use regex parsers. Example: Assume that the contents of a regex parser are as follows: regex=user is (\\S+) and machine is (\\S+) token.count=2 token[0].name=username token[1].name=machinename additionaldata.enabled=true event.destinationusername=username event.destinationaddress=machinename Case 1 Assume that the event is such that the keywords User is and and machine is are in English and the values are also in English. {English keywords}{english value} or User is Mary and machine is localhost In this case, the connector should work without any further changes and, because the contents of both the keywords and values are in English, this event will be successfully parsed. Case 2: Now assume that the event is such that the keywords are in English but the values are in a foreign language, say Chinese. {English keywords}{chinese value} or User is {Chinese for Mary } and machine is {Chinese for localhost } ArcSight SmartConnectors and Localization Technical Note 4

5 In this case, the connector will be able to parse the values, since it already supports double bytes. However, for the data of the value to be displayed in the appropriate foreign language, follow these configuration steps: 1. Identify the character set or encoding of your values that are appearing in the foreign language. 2. In the agent.properties file, set the appropriate property to that character set. This property name is different for different types of connectors, so set the property accordingly. These properties apply to FlexConnectors as well. Connector Type SNMP Regex Multiple Folder Follower Property Name snmp.charset agents[x].foldertable[x].encoding As an example, for SNMP connectors you need to add the following line in agent.properties: snmp.charset={your character set for the foreign language} 3. Restart the connector. Just because the value Mary is in Chinese, it does not mean that the event is coming from a localized device. It means that the device supports internationalization, but by itself it is not localized, because otherwise the key User would have also have appeared in Chinese. Case 3: Now, assume that the event is such that the keywords are in a foreign language, say Chinese, and the values are in English. {Chinese keywords}{english value} or {Chinese for User is } Mary {Chinese for and machine is } localhost This is an example of an event coming from a localized device, because the keywords are not in English, but are localized in Chinese by the device. Here the connector will not be able to identify the keywords, and so all the information will go to 'additionaldata' (since additional data has been enabled). In this case, follow these configuration steps: 1. Identify the character set of your events that are appearing in the foreign language. (To detect the device s default system encoding, see "4BDetermining Default Encoding" on page 12.) 2. Contact ArcSight Customer Support for the regex parser file for your connector, along with the name of the parent directory of the parser file. 3. Create another parser file with the same name and contents, and place it in a temporary directory. Create/save this file using the default system encoding of the localized device identified in step 1. An example is the encoding for Russian characters. Note that Cyrillic (Russian) characters can be encoded using both UTF-8 as well as windows-1251 charsets. However, it is not necessary that both these encodings work. ArcSight SmartConnectors and Localization Technical Note 5

6 This is because the parser override file encoding must exactly match the device's default system encoding, which can most easily be done on the device itself. 4. Identify the regular expression starting with the phrase 'regex=' in the new parser file. Replace the regular expression in English with its foreign language equivalent, depending upon which words need to be localized, say in Chinese. Save and close the file. regex={chinese for 'User is'}(\\s+){chinese for 'and machine is'}(\\s+) token.count=2 token[0].name=username token[1].name=machinename additionaldata.enabled=true event.destinationusername=username event.destinationaddress=machinename Note that the mappings remain the same. 5. Install JDK on your system from the following website link: 6. Open a command-prompt window and go to the following directory: {JDK installation directory}\bin 7. List the contents of the directory. You should see a file named: native2ascii.exe 8. The native2ascii tool is used to convert files with native encoded characters to a file with Unicode encoded characters. The syntax of this tool is as follows: native2ascii [options] [inputfile [outputfile]] Execute this tool with the following command: native2ascii encoding {Encoding name of the localized device identified in step 1} {File name with path information of the new parser file created in step 2} {%ARCSIGHT_SMARTCONNECTORS_HOME%\user\agent\fcp\{parent directory name identified in step 2}} Now, your localized parser file has been created. More information regarding the native2ascii tool can be found here: Language/Thenative2asciiTool.htm native2ascii tool for Solaris: native2ascii tool for Windows: ArcSight SmartConnectors and Localization Technical Note 6

7 The list of supported encodings for the native2ascii tool can be found at the following website link: Uhttp://java.sun.com/javase/6/docs/technotes/guides/intl/encoding.doc.htmlU 9. Restart the connector. Sometimes foreign languages such as Chinese or Spanish can have different grammatical versions for the same words. To support multiple mappings, you can create multiple properties files. Localization of Date Formats A number of connector tokens and operations are potentially affected by localization. For example, the Date token can optionally have a format specified, such as MMM or MMMM for month name. Also, the createtimestampbystarttimeelapsed operation expects a date format that includes the month name in MMM format. This date format can vary depending upon the locale. By default, the date is parsed on the basis of the U.S. locale, regardless of the configuration of the locale of the connector machine. So, for such operations to work, the agent.parser.locale.name property in the agent.properties file can be used to configure the locale of the connector to be used by the parser operators, such as createoptionaltimestampfromstring and tokens such as Date. By default, this property value is set to en_us, which means English for the United States. There are three choices: 1. Do nothing do not define this property in agent.properties. Because the agent.default.properties specifies the en_us locale (English for the United States) no matter where in the world the connector is running, the date is parsed according to US locale. 2. Define the locale to be blank in agent.properties. In this case, the platform's default locale is used. Look for the string "Locale is" in the agent.log file to check which locale was actually used. 3. Define the locale to be something other than en_us, such as de_de for German in Germany. If the specified locale is not understood by the SmartConnector, en_us is used and the error is noted in the agent.log file. ArcSight SmartConnectors and Localization Technical Note 7

8 Possible values for this property as of JDK 1.5.0_06 are as follows: ID Name Language Country Variant ar Arabic Arabic ar_ae Arabic (United Arab Emirates) Arabic United Arab Emirates ar_bh Arabic (Bahrain) Arabic Bahrain ar_dz Arabic (Algeria) Arabic Algeria ar_eg Arabic (Egypt) Arabic Egypt ar_iq Arabic (Iraq) Arabic Iraq ar_jo Arabic (Jordan) Arabic Jordan ar_kw Arabic (Kuwait) Arabic Kuwait ar_lb Arabic (Lebanon) Arabic Lebanon ar_ly Arabic (Libya) Arabic Libya ar_ma Arabic (Morocco) Arabic Morocco ar_om Arabic (Oman) Arabic Oman ar_qa Arabic (Qatar) Arabic Qatar ar_sa Arabic (Saudi Arabia) Arabic Saudi Arabia ar_sd Arabic (Sudan) Arabic Sudan ar_sy Arabic (Syria) Arabic Syria ar_tn Arabic (Tunisia) Arabic Tunisia ar_ye Arabic (Yemen) Arabic Yemen be Belarusian Belarusian be_by Belarusian (Belarus) Belarusian Belarus bg Bulgarian Bulgarian bg_bg Bulgarian (Bulgaria) Bulgarian Bulgaria ca Catalan Catalan ca_es Catalan (Spain) Catalan Spain cs Czech Czech cs_cz Czech (Czech Republic) Czech Czech Republic da Danish Danish da_dk Danish (Denmark) Danish Denmark ArcSight SmartConnectors and Localization Technical Note 8

9 ID Name Language Country Variant de German German de_at German (Austria) German Austria de_ch German (Switzerland) German Switzerland de_de German (Germany) German Germany de_lu German (Luxembourg) German Luxembourg el Greek Greek el_gr Greek (Greece) Greek Greece en English English en_au English (Australia) English Australia en_ca English (Canada) English Canada en_gb English (United Kingdom) English United Kingdom en_ie English (Ireland) English Ireland en_in English (India) English India en_nz English (New Zealand) English New Zealand en_us English (United States) English United States en_za English (South Africa) English South Africa es Spanish Spanish es_ar Spanish (Argentina) Spanish Argentina es_bo Spanish (Bolivia) Spanish Bolivia es_cl Spanish (Chile) Spanish Chile es_co Spanish (Colombia) Spanish Colombia es_cr Spanish (Costa Rica) Spanish Costa Rica es_do Spanish (Dominican Republic) Spanish Dominican Republic es_ec Spanish (Ecuador) Spanish Ecuador es_es Spanish (Spain) Spanish Spain es_gt Spanish (Guatemala) Spanish Guatemala es_hn Spanish (Honduras) Spanish Honduras es_mx Spanish (Mexico) Spanish Mexico es_ni Spanish (Nicaragua) Spanish Nicaragua ArcSight SmartConnectors and Localization Technical Note 9

10 ID Name Language Country Variant es_pa Spanish (Panama) Spanish Panama es_pe Spanish (Peru) Spanish Peru es_pr Spanish (Puerto Rico) Spanish Puerto Rico es_py Spanish (Paraguay) Spanish Paraguay es_sv Spanish (El Salvador) Spanish El Salvador es_uy Spanish (Uruguay) Spanish Uruguay es_ve Spanish (Venezuela) Spanish Venezuela et Estonian Estonian et_ee Estonian (Estonia) Estonian Estonia fi Finnish Finnish fi_fi Finnish (Finland) Finnish Finland fr French French fr_be French (Belgium) French Belgium fr_ca French (Canada) French Canada fr_ch French (Switzerland) French Switzerland fr_fr French (France) French France fr_lu French (Luxembourg) French Luxembourg hi_in Hindi (India) Hindi India hr Croatian Croatian hr_hr Croatian (Croatia) Croatian Croatia hu Hungarian Hungarian hu_hu Hungarian (Hungary) Hungarian Hungary is Icelandic Icelandic is_is Icelandic (Iceland) Icelandic Iceland it Italian Italian it_ch Italian (Switzerland) Italian Switzerland it_it Italian (Italy) Italian Italy iw Hebrew Hebrew iw_il Hebrew (Israel) Hebrew Israel ArcSight SmartConnectors and Localization Technical Note 10

11 ID Name Language Country Variant ja Japanese Japanese ja_jp Japanese (Japan) Japanese Japan ko Korean Korean ko_kr Korean (South Korea) Korean South Korea lt Lithuanian Lithuanian lt_lt Lithuanian (Lithuania) Lithuanian Lithuania lv Latvian Latvian lv_lv Latvian (Latvia) Latvian Latvia mk Macedonian Macedonian mk_mk Macedonian (Macedonia) Macedonian Macedonia nl Dutch Dutch nl_be Dutch (Belgium) Dutch Belgium nl_nl Dutch (Netherlands) Dutch Netherlands no Norwegian Norwegian no_no Norwegian (Norway) Norwegian Norway no_no_ny Norwegian (Norway,Nynorsk) Norwegian Norway Nynorsk pl Polish Polish pl_pl Polish (Poland) Polish Poland pt Portuguese Portuguese pt_br Portuguese (Brazil) Portuguese Brazil pt_pt Portuguese (Portugal) Portuguese Portugal ro Romanian Romanian ro_ro Romanian (Romania) Romanian Romania ru Russian Russian ru_ru Russian (Russia) Russian Russia sk Slovak Slovak sk_sk Slovak (Slovakia) Slovak Slovakia sl Slovenian Slovenian sl_si Slovenian (Slovenia) Slovenian Slovenia ArcSight SmartConnectors and Localization Technical Note 11

12 ID Name Language Country Variant sq Albanian Albanian sq_al Albanian (Albania) Albanian Albania sv Swedish Swedish sv_se Swedish (Sweden) Swedish Sweden th Thai Thai th_th Thai (Thailand) Thai Thailand th_th_th Thai (Thailand,TH) Thai Thailand TH tr Turkish Turkish tr_tr Turkish (Turkey) Turkish Turkey uk Ukrainian Ukrainian uk_ua Ukrainian (Ukraine) Ukrainian Ukraine vi Vietnamese Vietnamese vi_vn Vietnamese (Vietnam) Vietnamese Vietnam zh Chinese Chinese zh_cn Chinese (China) Chinese China zh_hk Chinese (Hong Kong) Chinese Hong Kong zh_tw Chinese (Taiwan) Chinese Taiwan 4BDETERMINING DEFAULT ENCODING To determine the default encoding of the system on which the connector is running when your localized device and connector are installed on the same system, you can search the agent.log file for the following text: Default platform character encoding is [Cp1252], will use [UTF8] The text xxxx within [xxxx] represents the platform encoding; for example, Cp1252. If the default platform character encoding is Cp1252, you do not need to specify the device encoding in the parser file header. Also, you can create/save the localized parser file using ANSI encoding on the system itself. ArcSight SmartConnectors and Localization Technical Note 12

13 Last Reviewed: 08/26/2008 Keywords: SmartConnector, Localization This technical note contains confidential information proprietary to ArcSight, Inc. Any party accepting this document agrees to hold its contents confidential, except for the purposes for which it was intended. Copyright ArcSight, Inc. All rights reserved. ArcSight, the ArcSight logo, ArcSight TRM, ArcSight NCM, ArcSight Enterprise Security Alliance, ArcSight Enterprise Security Alliance logo, ArcSight Interactive Discovery, ArcSight Pattern Discovery, ArcSight Logger, FlexConnector, SmartConnector, SmartStorage and CounterACT are trademarks of ArcSight, Inc. All other brands, products and company names used herein may be trademarks of their respective owners. Follow this link to see a complete statement of ArcSight's copyrights, trademarks and acknowledgements: The network information used in the examples in this document (including IP addresses and hostnames) is for illustration purposes only. This document is ArcSight Confidential. ArcSight SmartConnectors and Localization Technical Note 13

Hydrologic Modeling System HEC-HMS

Hydrologic Modeling System HEC-HMS Hydrologic Engineering Center Hydrologic Modeling System HEC-HMS Implementing the Program Interface in Alternate Languages March 2007 Approved for Public Release Distribution Unlimited Introduction Locales

More information

Cisco Unified Communications Phone Only Locale Installer k For Cisco Unified IP Phones Firmware 11.7(1) and 11.

Cisco Unified Communications Phone Only Locale Installer k For Cisco Unified IP Phones Firmware 11.7(1) and 11. Cisco Unified Communications Phone Only Locale Installer k3-11.7.1.1000 For Cisco Unified IP Phones Firmware 11.7(1) and 11.0(3) Readme Last updated: February 27th, 2017 This Locale Installer Readme contains

More information

TRANSLATION WORKBENCH EXPORT AND IMPORT QUICK START GUIDE

TRANSLATION WORKBENCH EXPORT AND IMPORT QUICK START GUIDE TRANSLATION WORKBENCH EXPORT AND IMPORT QUICK START GUIDE Overview Use the export and import options in the Salesforce Translation Workbench to export, edit, and import all of your organization's translatable

More information

Cisco Unified Communications Phone Only Locale Installer k For Cisco Unified IP Phones Firmware 10.3(2) Readme

Cisco Unified Communications Phone Only Locale Installer k For Cisco Unified IP Phones Firmware 10.3(2) Readme Cisco Unified Communications Phone Only Locale Installer k3-10.3.2.1000 For Cisco Unified IP Phones Firmware 10.3(2) Readme Last updated: August 16th, 2015 This Locale Installer Readme contains important

More information

Cisco Unified Communications Phone Only Locale Installer For Cisco Unified IP Phones Firmware 10.2(1) Readme

Cisco Unified Communications Phone Only Locale Installer For Cisco Unified IP Phones Firmware 10.2(1) Readme Cisco Unified Communications Phone Only Locale Installer 10.2.1.1000 For Cisco Unified IP Phones Firmware 10.2(1) Readme Last Modified Date: June 13, 2014 This Locale Installer Readme contains important

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

Spoka Meet Audio Calls Rates Dial-In UK

Spoka Meet Audio Calls Rates Dial-In UK Spoka Meet Audio Calls Rates Dial-In UK Country Toll/Toll Free Landline/Mobile GBP Argentina Toll Landline 0 Australia Toll Landline 0 Austria Toll Landline 0 Bahrain Toll Landline 0 Belgium Toll Landline

More information

No Purchase needed

No Purchase needed www.dialntalk.co.uk No Purchase needed About DialnTalk DialnTalk is the instant dial service developed to offer you easy to use low cost international telephone calls. Our aim is to provide a hassle free

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

Access Code and Phone Number

Access Code and Phone Number Algeria Dial International collect/reverse charge number: 1-212-559-5842 Argentina For phones using Telecom: Dial 0-800-555-4288; wait for prompt, then dial 866- For phones using Telefonica: Dial 0-800-222-1288;

More information

PLEASE NOTE: firms may submit one set of research questionnaires covering both China and Hong Kong or separate sets for each jurisdiction

PLEASE NOTE: firms may submit one set of research questionnaires covering both China and Hong Kong or separate sets for each jurisdiction Americas Argentina (Banking and finance; Capital markets; M&A; Project development) Bahamas (Financial and corporate) Barbados (Financial and corporate) Bermuda (Financial and corporate) Bolivia (Financial

More information

Localization: How do I translate Magento interface? Magento localization tips

Localization: How do I translate Magento interface? Magento localization tips Magento interface is translated with CSV localization files (installed as extension in Magento Connect Manager) or using buit-in Inline translation tool. To learn how to enable inline translation please

More information

Cisco Aironet In-Building Wireless Solutions International Power Compliance Chart

Cisco Aironet In-Building Wireless Solutions International Power Compliance Chart Cisco Aironet In-Building Wireless Solutions International Power Compliance Chart ADDITIONAL INFORMATION It is important to Cisco Systems that its resellers comply with and recognize all applicable regulations

More information

icompel Content Commander Appliance

icompel Content Commander Appliance ICC-AP-100 ICC-AP-500 ICC-AP-1000 ICC-AP-1500 Product Data Sheet icompel Content Commander Appliance NOTE: Models available for 100, 500, 1000, or 1500 subscribers. Features Schedule, distribute, and make

More information

480x128-pixel backlit 24-bit color LCD, 3.9-in. (9.9-cm) diagonal

480x128-pixel backlit 24-bit color LCD, 3.9-in. (9.9-cm) diagonal CP-8832-K9 Datasheet Overview CP-8832-K9 is a Cisco IP Conference Phone 8832 base in charcoal color for North America. This IP phone also includes an Ethernet injector or an 18W power adapter along with

More information

Carrier Services. Intelligent telephony. for over COUNTRIES DID NUMBERS. All IP

Carrier Services. Intelligent telephony. for over COUNTRIES DID NUMBERS. All IP Carrier Services All IP Intelligent telephony In current times, being connected to the telephone network just isn t enough anymore; one needs to be INTERconnected with it, as it all has become IP. Along

More information

Dataliner Message Displays Using DL50 Slaves with a DL40 Master

Dataliner Message Displays Using DL50 Slaves with a DL40 Master ALLEN-BRADLEY Dataliner Message Displays Introduction This application note describes how to use Dataliner DL50 slave displays with a DL40 display as a master. The DL40 master display contains all messages

More information

EventBuilder.com. International Audio Conferencing Access Guide. This guide contains: :: International Toll-Free Access Dialing Instructions

EventBuilder.com. International Audio Conferencing Access Guide. This guide contains: :: International Toll-Free Access Dialing Instructions EventBuilder.com International Audio Conferencing Access Guide TM This guide contains: :: International Toll-Free Access Dialing Instructions :: ATFS (Access Toll-Free Service) Dialing Instructions ::

More information

ThinkPad carrying cases offer protection and convenience for your mobile requirements

ThinkPad carrying cases offer protection and convenience for your mobile requirements Hardware Announcement ZG08-0695, dated vember 25, 2008 ThinkPad carrying cases offer protection and convenience for your mobile requirements Table of contents 1 At a glance 2 Product number 1 Overview

More information

Instructions. (For 6180 Industrial Computers) Applications. Overview & Safety

Instructions. (For 6180 Industrial Computers) Applications. Overview & Safety Instructions (For 6180 Industrial Computers) Applications This instruction sheet describes how to replace the following displays and backlights for 6180 Industrial Computers. All display kits contain a

More information

Navigation System Digital Maps Portable Electronics. NAVITEL s.r.o., U Habrovky 247/11, Praha 4, Czech Republic

Navigation System Digital Maps Portable Electronics. NAVITEL s.r.o., U Habrovky 247/11, Praha 4, Czech Republic Navigation System Digital Maps Portable Electronics Company Factsheet Established in 2006 HQ Prague, Czech Republic R&D centers in Czech Republic and Russia QA center in Czech Republic 10+ years in the

More information

EE Pay Monthly Add-Ons & Commitment Packs. Version

EE Pay Monthly Add-Ons & Commitment Packs. Version EE Pay Monthly Add-Ons & Commitment Packs Version 1A Available from 28 October 2015 1 COMMITMENT PACKS In addition to the allowances included in our Standard and EE Extra plans for both Pay Monthly handset

More information

Shell Global Helpline - Telephone Numbers

Shell Global Helpline - Telephone Numbers Shell Global Helpline - Telephone Numbers The Shell Global Helpline allows reports to be submitted by either a web-based form at or by utilising one of a number of telephone lines that will connect you

More information

VOICE/DATA SIMCARD USA UNLIMITED

VOICE/DATA SIMCARD USA UNLIMITED VOICE/DATA SIMCARD USA UNLIMITED Copyright 2018. All rights reserved. The content of this document may not be copied,replaced,distributed,published,displayed, modified,or transferred in any form or by

More information

Dashboard. Feb 18, Feb 18, 2008 Comparing to: Site. 13,318 Visits 28,414 Pageviews 2.13 Pages/Visit

Dashboard. Feb 18, Feb 18, 2008 Comparing to: Site. 13,318 Visits 28,414 Pageviews 2.13 Pages/Visit Dashboard Site Usage 13,318 Visits 28,414 Pageviews 2.13 Pages/Visit 63.93% Bounce Rate 00:03:00 Avg. Time on Site 73.14% % New Visits Visitors Overview Map Overlay world Visitors 9,744 Traffic Sources

More information

RPM International Inc. Hotline Instructions

RPM International Inc. Hotline Instructions RPM International Inc. Hotline Instructions While compliance matters can often be resolved at the local level, the RPM International Inc. ( RPM ) Hotline provides another way for you to report concerns

More information

iclass SE multiclass SE 125kHz, 13.56MHz 125kHz, 13.56MHz

iclass SE multiclass SE 125kHz, 13.56MHz 125kHz, 13.56MHz Date created: 11 July 2016 Last update: 18 August 2016 READERS REGULATORY CERTIFICATION BY COUNTRY. The following table consists of the current regulatory certifications for the readers. HID Global is

More information

IS-13 TOPS Special Solicitation Volume Report

IS-13 TOPS Special Solicitation Volume Report IS-13 TOPS Special Solicitation Volume Report SS CHANNEL CoS To/From RATE AREAS Volume WT (lbs) COUNTRY US2517770 to/from AE 6 7,51 United Arab Emirates US2517770 to/from AG 1 335 Algeria US2517770 to/from

More information

7. Parts catalog. How to use this parts catalog xx. Abbreviations used in the parts catalog include the following:

7. Parts catalog. How to use this parts catalog xx. Abbreviations used in the parts catalog include the following: 7. s catalog How to use this parts catalog Abbreviations used in the parts catalog include the following: NS: (Not Shown) in the Asm-Index column indicates that the part is procurable but is not pictured

More information

MANUAL VOICE/DATA SIMCARD CANADA

MANUAL VOICE/DATA SIMCARD CANADA MANUAL VOICE/DATA SIMCARD CANADA Copyright 2018. All rights reserved. The content of this document may not be copied,replaced,distributed,published,displayed, modified,or transferred in any form or by

More information

ThinkPad carrying cases offer protection and convenience for your mobile requirements

ThinkPad carrying cases offer protection and convenience for your mobile requirements Lenovo United States Announcement 108-331, dated May 13, 2008 ThinkPad carrying cases offer protection and convenience for your mobile requirements Additional information... 3 Prices...7 At a glance New

More information

GW-WN150M 11b/g/n USB Wireless User Manual

GW-WN150M 11b/g/n USB Wireless User Manual GW-WN150M 11b/g/n USB Wireless User Manual Wireless Local Area Network USB Card (For 802.11b/g/n Wireless Networks) Contents 1 Overview... 1 1.1 Product Introduction... 1 1.2 System Requirements... 1 1.3

More information

Vodafone Usage Manager R2.0

Vodafone Usage Manager R2.0 Vodafone Global Enterprise Vodafone Usage Manager R2.0 User Guide for Android Power to you Copyright Vodafone Global Enterprise, Vodafone Group Plc, Vodafone House, The Connection 19 April 2017Newbury,

More information

Instructions. (For 6180 Industrial Computers) Installing a Processor Upgrade

Instructions. (For 6180 Industrial Computers) Installing a Processor Upgrade Instructions (For 6180 Industrial Computers) This document describes how to remove or install a Pentium processor in the 6180 Industrial Computer. Processor specifications are also provided. Installing

More information

Microsoft Dynamics 365 for Finance and Operations. Table of contents

Microsoft Dynamics 365 for Finance and Operations. Table of contents Microsoft Dynamics 365 for Finance and Operations Product localization and translation availability guide April 2018 update 1 Dynamics 365 for Finance and Operations Product localization and translation

More information

Microsoft Dynamics 365 for Finance and Operations, Enterprise edition. Table of contents

Microsoft Dynamics 365 for Finance and Operations, Enterprise edition. Table of contents Microsoft Dynamics 365 for Finance and Operations, Enterprise edition Product availability, localization, and translation guide July 2017 Update 1 Dynamics 365 for Finance and Operations, Enterprise edition

More information

AdaptaScan Reader to a PLC-5 Using RS-232/ASCII Protocol with the 2760 RB Module and the 2760-SFC1 and -SFC2 Protocol Cartridge

AdaptaScan Reader to a PLC-5 Using RS-232/ASCII Protocol with the 2760 RB Module and the 2760-SFC1 and -SFC2 Protocol Cartridge Application Note AdaptaScan Reader to a PLC-5 Using RS-232/ASCII Protocol with the 2760 RB Module and the 2760-SFC1 and -SFC2 Protocol Cartridge Overview The AdaptaScan-SN3, -SN5 or -SN8 bar code reader

More information

Vodafone Mobile Broadband for Apple Mac Release ReadMe

Vodafone Mobile Broadband for Apple Mac Release ReadMe Vodafone Mobile Broadband for Apple Mac Release 4.10.04.00 ReadMe Contents Summary... 3 What is new in this release... 3 How to check which release is installed... 3 Requirements... 4 Supported Macs...

More information

Language change summary from version 3.x to 4.0. Language Reference. Header. Body

Language change summary from version 3.x to 4.0. Language Reference. Header. Body Language change summary from version 3.x to 4.0 For full details on any of the changes, see the appropriate reference page. BITMAPS header statement is now BITMAP; only one bitmap is required. VERSION

More information

AdaptaScan Reader to a PLC-5 Using DH-485 Protocol with the 2760 RB Module and the 2760-SFC2 Protocol Cartridge

AdaptaScan Reader to a PLC-5 Using DH-485 Protocol with the 2760 RB Module and the 2760-SFC2 Protocol Cartridge Application Note AdaptaScan Reader to a PLC-5 Using DH-485 Protocol with the 2760 RB Module and the 2760-SFC2 Protocol Cartridge Overview The AdaptaScan-SN3, -SN5 or -SN8 bar code reader may be configured

More information

Turquoise Terminal Returns User Guide for Creating & Uploading a Turquoise Terminal Return

Turquoise Terminal Returns User Guide for Creating & Uploading a Turquoise Terminal Return Turquoise Terminal Returns User Guide for Creating & Uploading a Turquoise Terminal Return End-User Documentation Page 1 of 11 Contents Accessing the Terminal Returns application 3 Creating a Terminal

More information

Application Note. Overview. Hardware Requirements. Software Requirements

Application Note. Overview. Hardware Requirements. Software Requirements Application Note Overview This document provides instructions on interfacing the 2755-DS/DD bar code decoder to the 2760-RB interface module via dumb terminal protocol RS-232 using either the 2760-SFC1

More information

COCAINE (unless otherwise noted) amongst young people (ordered alphabetically by regions)

COCAINE (unless otherwise noted) amongst young people (ordered alphabetically by regions) AFRICA Southern Africa South Africa 13-22 6.7 2008 ARQ ; Select regions (Cape Town) AFRICA West and Central Africa Ghana 13-15 2.9 2007 ARQ AMERICAS Caribbean Antigua and Barbuda High School 1.7 1 0.7

More information

Manual for Philips DVP6xx Player Software Upgrade. Contents

Manual for Philips DVP6xx Player Software Upgrade. Contents Manual for Philips DVP6xx Player Software Upgrade Important : Please read and print this for your easy reference before starting the Software Upgrade. Contents 1. Software Upgrade Version Release Notes

More information

8510 AC Spindle Drive Hardware/Firmware Replacement

8510 AC Spindle Drive Hardware/Firmware Replacement ALLEN-BRADLEY 8510 AC Spindle Drive Hardware/Firmware Replacement Instructions Introduction The purpose of this publication is to describe the steps needed to replace the circuit boards and/or firmware

More information

Appendix G. Percentiles and Standard Deviations of Science Achievement TIMSS 2011 INTERNATIONAL RESULTS IN SCIENCE APPENDIX G 495

Appendix G. Percentiles and Standard Deviations of Science Achievement TIMSS 2011 INTERNATIONAL RESULTS IN SCIENCE APPENDIX G 495 Appendix G s and s of Science Achievement TIMSS 2011 INTERNATIONAL RESULTS IN SCIENCE APPENDIX G 495 Appendix G.1: s Appendix of G.1: Science s Achievement of Science Achievement 5th 10th 25th 50th 75th

More information

END-OF-SALE AND END-OF-LIFE ANNOUNCEMENT FOR THE CISCO MEDIA CONVERGENCE SERVER 7845H-2400

END-OF-SALE AND END-OF-LIFE ANNOUNCEMENT FOR THE CISCO MEDIA CONVERGENCE SERVER 7845H-2400 END-OF-LIFE NOTICE, NO. 2566 END-OF-SALE AND END-OF-LIFE ANNOUNCEMENT FOR THE CISCO MEDIA CONVERGENCE SERVER 7845H-2400 Cisco Systems announces the end of life of the Cisco Media Convergence Server 7845H-2400.

More information

Out of Bundle Vodafone

Out of Bundle Vodafone Out of Bundle Vodafone Out of Bundle Charges - Vodafone The following charges apply once you have used your allowance, or if you call/text/browse outside of your allowance: Standard UK call charges Cost

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

Traffic Offload. Cisco 7200/Cisco 7500 APPLICATION NOTE

Traffic Offload. Cisco 7200/Cisco 7500 APPLICATION NOTE APPLICATION NOTE Cisco 700/Cisco 700 Traffic offload allows exchange carriers to offload their telephony traffic to a packet network from the Public Switched Telephone Network (PSTN). By doing so, carriers

More information

Payphone Origination Service Charge Rate Per Min. Mobile Origination Service Charge. MLB Switched Rate Per Min. MLB Dedicated Rate Per Min

Payphone Origination Service Charge Rate Per Min. Mobile Origination Service Charge. MLB Switched Rate Per Min. MLB Dedicated Rate Per Min SBC Long Distance, LLC 1 st Revised Page 1 d/b/a AT&T Long Distance Effective April 8, 2011 Effective June 30, 2011 the dedicated service offering associated with this Service will be discontinued pursuant

More information

Updates to Plastic Molding and Co-injection Modules (Catalog Numbers 1771-QDC and 1771-QI)

Updates to Plastic Molding and Co-injection Modules (Catalog Numbers 1771-QDC and 1771-QI) Release Note Updates to Plastic Molding and Co-injection Modules (Catalog Numbers 1771- and 1771-QI) What s in This Release Note? this symbol applies to module only QI applies to QI module only QI means

More information

Reference Guide. (Catalog Number 1785 series) Introduction

Reference Guide. (Catalog Number 1785 series) Introduction Reference Guide (Catalog Number 1785 series) ntroduction his document shows how to configure complementary / for PLC-5 processors when you use 2-slot, 1-slot, or 1/2-slot addressing. his information is

More information

Multimedia 7.6. Reference Manual

Multimedia 7.6. Reference Manual Multimedia 7.6 Reference Manual The information contained herein is proprietary and confidential and cannot be disclosed or duplicated without the prior written consent of Genesys Telecommunications Laboratories,

More information

For: Ministry of Education From Date: 19 November 18-2 December 18 Venue: M1 Shops

For: Ministry of Education From Date: 19 November 18-2 December 18 Venue: M1 Shops For: Ministry of Education From Date: 19 November 18-2 December 18 Venue: M1 Shops $200 OFF HANDSETS For new line / port-in / re-contract on mysim e 90 and above plan Reg+ and above plan $150 OFF HANDSETS

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

Overcoming the Compliance Challenges of VAT Remittance. 12 April :55 to 16:30 (CEST)

Overcoming the Compliance Challenges of VAT Remittance. 12 April :55 to 16:30 (CEST) Overcoming the Compliance Challenges of VAT Remittance 12 April 2016 15:55 to 16:30 (CEST) Presenters Nicole Jupin Vertex Inc. Senior Solutions Manager David Rossing Vertex Inc. Senior Tax Solutions Engineer,

More information

Cisco Extensible Provisioning and Operations Manager 4.5

Cisco Extensible Provisioning and Operations Manager 4.5 Data Sheet Cisco Extensible Provisioning and Operations Manager 4.5 Cisco Extensible Provisioning and Operations Manager (EPOM) is a Web-based application for real-time provisioning of the Cisco BTS 10200

More information

Cisco CallManager 4.0-PBX Interoperability: Lucent/Avaya Definity G3 MV1.3 PBX using 6608-T1 PRI NI2 with MGCP

Cisco CallManager 4.0-PBX Interoperability: Lucent/Avaya Definity G3 MV1.3 PBX using 6608-T1 PRI NI2 with MGCP Application Note Cisco CallManager 4.0-PBX Interoperability: Lucent/Avaya Definity G3 MV1.3 PBX using 6608-T1 PRI NI2 with MGCP Introduction This is an application note for connectivity of Lucent/Avaya

More information

Quintiles vdesk Welcome Guide

Quintiles vdesk Welcome Guide Quintiles vdesk Welcome Guide Dear Quintiles Clinical ASP User, Quintiles is pleased to announce vdesk, an unique solution part of the Clinical ASP platform offer. Quintiles vdesk, is a virtual desktop

More information

Installation Guide. An easy guide to installing and upgrading WorldShip software.

Installation Guide. An easy guide to installing and upgrading WorldShip software. WorldShip 2018 Installation Guide An easy guide to installing and upgrading WorldShip software. 2000-2018 United Parcel Service of America, Inc. UPS, the UPS brandmark and the color brown are trademarks

More information

AC/DC (120V) Input Module Cat. No IAD Series C

AC/DC (120V) Input Module Cat. No IAD Series C Installation Instructions To The Installer Pre-installation Considerations Power Requirements Initial Handling This document provides information on: important pre-installation considerations power supply

More information

Depending on the customer. Mobile Internet in Switzerland. 4G+ network (high speed) 300 Mbit/s (download) and 150 Mbit/s (upload)

Depending on the customer. Mobile Internet in Switzerland. 4G+ network (high speed) 300 Mbit/s (download) and 150 Mbit/s (upload) Business world The flexible mobile subscription for Switzerland and worldwide use in 126 countries. Calls and SMS/MMS - in Switzerland - from Switzerland to 126 countries - Included in 126 countries Surfing

More information

Field Terminal Assembly (FTA)

Field Terminal Assembly (FTA) FTA-C300 Brochure Field Terminal Assembly (FTA) New interfaces for the Honeywell Experion PKS C300 controller Weidmüller s new interfaces and pre-assembled cables allow you to wire up I/O cards from Honeywell

More information

Allen-Bradley 1397 Enhanced Field Supply Card Cat. Nos FS FS1020

Allen-Bradley 1397 Enhanced Field Supply Card Cat. Nos FS FS1020 Instructions IN Allen-radley 1397 Enhanced Field Supply Card Cat. Nos. 1397-FS1010 1397-FS1020 What This Option Provides When installed, the Enhanced Field Supply Card provides greater control over the

More information

SIMATIC. Industrial PC Microsoft Windows 10. Safety instructions 1. Initial startup: Commissioning the operating. system

SIMATIC. Industrial PC Microsoft Windows 10. Safety instructions 1. Initial startup: Commissioning the operating. system Safety instructions 1 Initial startup: Commissioning the operating 2 system SIMATIC Industrial PC Restoring operating system and partitions 3 Configuring and updating the operating system 4 Extended scope

More information

Setup Account. OU Campus v10. OmniUpdate, Inc Flynn Road, Suite 100 Camarillo, CA 93012

Setup Account. OU Campus v10. OmniUpdate, Inc Flynn Road, Suite 100 Camarillo, CA 93012 Setup Account v10 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 800.362.2605 805.484.9428 (fax) www.omniupdate.com Copyright

More information

A Guide to our Tariffs

A Guide to our Tariffs A Guide to our Tariffs 2018 Home Phone and Broadband charges All call prices shown are in pence per minute; chargeable calls are subject to a call set-up fee of 16.8p except where otherwise stated Fixed

More information

Digital EAGLEs. Outlook and perspectives

Digital EAGLEs. Outlook and perspectives 2016 Digital EAGLEs Outlook and perspectives Fixed and Mobile broadband adoption rates in the next decade Changes in Fixed-Broadband penetration 2014-25 Changes in Mobile-Broadband penetration 2014-25

More information

MOBILE PRICE LIST. All prices include VAT at 20%. Rates are correct as at 1 October 2018 BUNDLES OTHER CHARGES

MOBILE PRICE LIST. All prices include VAT at 20%. Rates are correct as at 1 October 2018 BUNDLES OTHER CHARGES MOBILE PRICE LIST All prices include VAT at 20%. Rates are correct as at 1 October 2018 BUNDLES Bundle allowance 30 day 24 month (with handset) Unlimited minutes, unlimited texts 10.00 15.00-35.00 Unlimited

More information

CUSTOMER GUIDE Interoute One Bridge Outlook Plugin Meeting Invite Example Guide

CUSTOMER GUIDE Interoute One Bridge Outlook Plugin Meeting Invite Example Guide CUSTOMER GUIDE Interoute One Bridge Outlook Plugin Meeting Invite Example Guide Version History Version Date Title 1.0 04/10/17 Initial document All quotes, offers or proposals are (i) made based on Interoute

More information

The Traveller plans include a monthly Mobile Broadband allowance to be used within all Table 1: Go Europe + USA Destinations.

The Traveller plans include a monthly Mobile Broadband allowance to be used within all Table 1: Go Europe + USA Destinations. Information about the Service Description of the Service The data plan service is a post-paid Mobile Broadband service. Your plan allowance can be used in Table 1: Destinations. Bundling You don t have

More information

Parallels Plesk Sitebuilder

Parallels Plesk Sitebuilder Parallels Plesk Sitebuilder Copyright Notice ISBN: N/A Parallels 660 SW 39th Street Suite 205 Renton, Washington 98057 USA Phone: +1 (425) 282 6400 Fax: +1 (425) 282 6444 Copyright 1999-2008, Parallels,

More information

Cisco Voice Services Provisioning Tool 2.6(1)

Cisco Voice Services Provisioning Tool 2.6(1) Data Sheet Cisco Voice Services Provisioning Tool 2.6(1) The Cisco Voice Services Provisioning Tool (VSPT) provides a GUI for the creation, modification, and execution of signaling connections, trunks,

More information

Cisco HCS Country Dial Plans

Cisco HCS Country Dial Plans Introduction to Country Dial Plans for Cisco Unified Communications Domain Manager 8.1(x), page 1 Guidelines for Deploying Country Dial Plans, page 4 Load a Country-Specific Dial Plan, page 4 Introduction

More information

Enterprise price plan guide Vodafone One Net Business

Enterprise price plan guide Vodafone One Net Business This Price Plan Guide applies to the price plans and is incorporated into the Commercial Terms between Vodafone and Customer and, together with the One Net General Terms and Conditions and Mobile Service

More information

Investigating Country Differences in Mobile App User Behaviour and Challenges for Software Engineering. Soo Ling Lim

Investigating Country Differences in Mobile App User Behaviour and Challenges for Software Engineering. Soo Ling Lim Investigating Country Differences in Mobile App User Behaviour and Challenges for Software Engineering Soo Ling Lim Analysis of app store data reveals what users do in the app store. We want to know why

More information

Global entertainment and media outlook Explore the content and tools

Global entertainment and media outlook Explore the content and tools www.pwc.com/outlook Global entertainment and media outlook Explore the content and tools A comprehensive online source of global analysis for consumer/ end-user and advertising spending 5-year forecasts

More information

STANDARD BROADBAND & FIBRE BROADBAND PLANS

STANDARD BROADBAND & FIBRE BROADBAND PLANS STANDARD BROADBAND & FIBRE BROADBAND PLANS Terms & Conditions for Consumer Customers Version 3.0 Date 12 th July 2016 1 General If you live in either an EE Standard Broadband network area (which is over

More information

A Guide to our Tariffs

A Guide to our Tariffs A Guide to our Tariffs 2018 Home Phone and Broadband charges All call prices shown are in pence per minute; chargeable calls are subject to a call set-up fee of 19.2p except where otherwise stated Prices

More information

Installation Guide. An easy guide to installing and upgrading WorldShip software.

Installation Guide. An easy guide to installing and upgrading WorldShip software. WorldShip 2018 Installation Guide An easy guide to installing and upgrading WorldShip software. 2000-2018 United Parcel Service of America, Inc. UPS, the UPS brandmark and the colour brown are trademarks

More information

Shared: Users. Setup Guide for Concur Standard Edition. Last Revised: April 17, Applies to these SAP Concur solutions:

Shared: Users. Setup Guide for Concur Standard Edition. Last Revised: April 17, Applies to these SAP Concur solutions: Shared: Users Setup Guide for Concur Standard Edition Applies to these SAP Concur solutions: Expense Professional/Premium edition Standard edition Travel Professional/Premium edition Standard edition Invoice

More information

Alternative phone number: Credit card/debit card number Expiry date: / / DD MM YYYY

Alternative phone number: Credit card/debit card number Expiry date: / / DD MM YYYY Enterprise application form - Employee Standard BMP Plans Step 1: Fill out your personal information Name (as in passport): Company name: Email ID: Office address: Nationality: Employee ID: Alternative

More information

CRYPTO CLOUD SIM UNLIMITED DATA NO TRACEABILITY NO THIRD-PARTIES

CRYPTO CLOUD SIM UNLIMITED DATA NO TRACEABILITY NO THIRD-PARTIES CRYPTO CLOUD SIM UNLIMITED DATA NO TRACEABILITY NO THIRD-PARTIES Table of contents 03 Removing middleman from communication 04 Always stay connected 05 Extra security benefits 06 Global coverage, no extra

More information

CISCO IP PHONE 7970G NEW! CISCO IP PHONE 7905G AND 7912G XML

CISCO IP PHONE 7970G NEW! CISCO IP PHONE 7905G AND 7912G XML Q & A CISCO IP PHONE 7970G NEW! CISCO IP PHONE 7905G AND 7912G XML GENERAL QUESTIONS Q. What is the Cisco IP Phone 7970G? A. The 7970G is our latest state-of-the-art IP phone, which includes a large color,

More information

We have solid distributors in over 120 countries China China China Healthcare Equipment Medical Equipment Healthcare Equipment

We have solid distributors in over 120 countries China China China Healthcare Equipment Medical Equipment Healthcare Equipment Mali Ireland United Kingdom Holland Belgium Ukraine Belgium Germany Czech Republic Austria Slovakia France Hungary Moldova Switzerland Slovenia Albania Romania Spain Bulgaria Portugal Italy Montenegro

More information

Patent Portfolio Overview May The data in this presentation is current as of this date.

Patent Portfolio Overview May The data in this presentation is current as of this date. Patent Portfolio Overview May 2018 1 1 The data in this presentation is current as of this date. Table of Contents Overview HEVC Standard Versions in Licensing Program Patent Evaluation Portfolio Growth

More information

DataKom Vodafone Mobile Tariff Minimum 30 day end of month notice cancellation - Subject to contract. DataKom O2 Mobile Tariff. All prices exclude VAT

DataKom Vodafone Mobile Tariff Minimum 30 day end of month notice cancellation - Subject to contract. DataKom O2 Mobile Tariff. All prices exclude VAT DataKom Vodafone Mobile Tariff Minimum 30 day end of month notice cancellation - Subject to contract Data Bolt-Ons 3GB Data Bolt-on Voda Vodafone - 3Gb data 5GB Data Bolt-on Voda Vodafone - 5Gb data 7.00

More information

Tavultesoft Keyboard Manager. Language Reference. Tavultesoft

Tavultesoft Keyboard Manager. Language Reference. Tavultesoft Tavultesoft Keyboard Manager Language Reference VERSION 5.0 Tavultesoft Last update: 07/08/00 9:20 PM This documentation may be freely copied, but the copyright notice must not be altered or removed. No

More information

Griffin Training Manual Address Maintenance

Griffin Training Manual Address Maintenance Griffin Training Manual Address Maintenance The University of Chicago Alumni Relations and Development 2 Griffin Address Maintenance Revised 02/24/2015 Table of Contents Chapter 1: About Maintaining Biographic

More information

Date: September 20, 2004 (C) Copyright International Business Machines Corp., 2004 All rights reserved.

Date: September 20, 2004 (C) Copyright International Business Machines Corp., 2004 All rights reserved. Hardware Management Console Readme Version 4 Release 1 Date: September 20, 2004 (C) Copyright International Business Machines Corp., 2004 All rights reserved. Introduction The information in this Readme

More information

International Roaming Critical Information Summaries JULY 2017

International Roaming Critical Information Summaries JULY 2017 Critical Information Summaries JULY 2017 Phone: Email: Website: Information about the service. Here s a quick summary of all the important bits about your Postpaid SkySmart Mobile International Roaming

More information

Ibis SIM PARTNERSHIP PROGRAM. June 2016

Ibis SIM PARTNERSHIP PROGRAM. June 2016 Ibis SIM PARTNERSHIP PROGRAM June 2016 Page 1 of 12 KEY FACTS 195 countries offering services such as USSD Callback Voice, Prepaid Roaming SIM card, Prepaid Data Roaming. 2016 rollout of Ibis Chat - a

More information

Cisco Unified IP Phone 6900 Series

Cisco Unified IP Phone 6900 Series Cisco Unified IP Phone 6900 Series Product Overview The Cisco Unified IP Phone 6900 Series is a new and innovative portfolio of endpoints that deliver affordable, business-grade, voice communication services

More information

ID Reader for Hotels

ID Reader for Hotels ID Reader for Hotels ID Reader for Hotels ID Reader is a software solution that enables automatic transfer of textual data from personal and travel documents into hotels software within a few seconds.

More information

ITU Plenipotentiary 2018

ITU Plenipotentiary 2018 ITU Plenipotentiary 2018 Preparations, Expectations and Concerns Chris Buckridge 18 Oct 2018 RIPE Cooperation WG Four Years On!2 ITU Structures and Meetings Plenipotentiary (PP) Standardization (T Sector)

More information

ENHANCED INTERIOR GATEWAY ROUTING PROTOCOL STUB ROUTER FUNCTIONALITY

ENHANCED INTERIOR GATEWAY ROUTING PROTOCOL STUB ROUTER FUNCTIONALITY APPLICATION NOTE ENHANCED INTERIOR GATEWAY ROUTING PROTOCOL STUB ROUTER FUNCTIONALITY OVERVIEW Enhanced Interior Gateway Routing Protocol (EIGRP).Stub Router functionality, which Cisco introduced in Cisco

More information

Vodafone Business Plus

Vodafone Business Plus Vodafone Business Plus Vodafone Power to you A smoother, smarter data sharing plan for your business Vodafone Business Plus Introducing a smoother, smarter, data sharing plan for your business. We know

More information

A B A B. (Catalog Number 2707-MVH232, -MVP232) Product Data

A B A B. (Catalog Number 2707-MVH232, -MVP232) Product Data A B A B (Catalog Number 2707-MVH22, -MVP22) Product Data 9 9 The MicroView Operator Interface extends the Bulletin 2707 product line, providing an interface with the Allen-Bradley MicroLogix family of

More information

HP Mini 210. Maintenance and Service Guide

HP Mini 210. Maintenance and Service Guide HP Mini 210 Maintenance and Service Guide Copyright 2011 Hewlett-Packard Development Company, L.P. Bluetooth is a trademark owned by its proprietor and used by Hewlett-Packard Company under license. Intel

More information