Vijeo Citect Customization and Design Study Guide

Size: px
Start display at page:

Download "Vijeo Citect Customization and Design Study Guide"

Transcription

1 Vijeo Citect Customization and Design Study Guide Version 7.30 Schneider-Electric Pty (Australia) Ltd 78 Waterloo Road Macquarie Park NSW 2113 Australia

2 DISCLAIMER Schneider Electric makes no representations or warranties with respect to this manual and, to the maximum extent permitted by law, expressly limits its liability for breach of any warranty that may be implied to the replacement of this manual with another. Furthermore, Schneider Electric reserves the right to revise this publication at any time without incurring an obligation to notify any person of the revision. The information provided in this documentation contains general descriptions and/or technical characteristics of the performance of the products contained herein. This documentation is not intended as a substitute for and is not to be used for determining suitability or reliability of these products for specific user applications. It is the duty of any such user or integrator to perform the appropriate and complete risk analysis, evaluation and testing of the products with respect to the relevant specific application or use thereof. Neither Schneider Electric nor any of its affiliates or subsidiaries shall be responsible or liable for misuse of the information that is contained herein. If you have any suggestions for improvements or amendments or have found errors in this publication, please notify us. All pertinent state, regional, and local safety regulations must be observed when installing and using this product. For reasons of safety and to help ensure compliance with documented system data, only the manufacturer should perform repairs to components. When devices are used for applications with technical safety requirements, the relevant instructions must be followed. Failure to use Schneider Electric software or approved software with our hardware products may result in injury, harm, or improper operating results. Failure to observe this information can result in injury or equipment damage Schneider Electric. All rights reserved. Schneider Electric Vijeo Citect Customization and Design Study Guide INTRODUCTION AND LEGAL NOTICE Your purchase of this official Vijeo Citect Upgrade Training Manual entitles you to undertake the Vijeo Citect Upgrade training course. Satisfactory completion of the course evaluation is mandatory for you to obtain a Schneider Electric certificate of completion of the training course. The contents of this manual are proprietary to Schneider Electric and all rights, including copyright, are reserved by Schneider Electric. No part of this document may be reproduced in any form or by any means, electronic or mechanical, including photocopying, without express written permission of Schneider Electric. Schneider Electric will not accept any liability for action taken in reliance on this training manual. TRADEMARKS Schneider Electric has made every effort to supply trademark information about company names, products and services mentioned in this manual. Trademarks shown below were derived from various sources. Vijeo Citect, CitectSCADA, Cicode, Vijeo Historian, CitectHistorian, and Ampla are trademarks owned by Schneider Electric Industry SAS or its affiliated companies. All other trademarks are the property of their respective owners. ActiveX, Excel, Internet Explorer, Microsoft.NET, SQL Server, Windows, Windows Server, Windows XP, Windows Vista and Windows 7 are either registered trademarks or trademarks of Microsoft Corporation in the United States and/or other countries. SafeNet Sentinel is a trademark of Sentinel, Inc. VMware is a registered trademark or trademark of VMware, Inc. in the United States and/or other jurisdictions. PI is a registered trademark of OSIsoft, Inc. General Notice: Some product names used in this manual are used for identification purposes only and may be trademarks of their respective companies. Validity Note The present documentation is intended for qualified technical personnel responsible for the implementation, operation and maintenance of the products described. It contains information necessary for the proper use of the products. Electrical equipment should be installed, operated, serviced, and maintained only by qualified personnel. No responsibility is assumed by Schneider Electric for any consequences arising out of the use of this material. A qualified person is one who has skills and knowledge related to the construction and operation of the electrical equipment and installations and has received safety training to recognize and avoid the hazards involved. May 2013 Edition for v7.30 Manual Release 1 ii Version 7.30 May 2013

3 Contents CHAPTER 1: V7.30 CUSTOMIZATION AND DESIGN EXAM TOPICS OVERVIEW Custom Templates Smart Genies Smart Popups and Metadata Forms SQL Interface CitectSCADA and Other Applications Miscellaneous Customization and Design Exam Manual Release 1 iii

4

5 Chapter 1: v7.30 Customization and Design Exam Topics Overview Introduction You can configure a Vijeo Citect monitoring and control system to suit any industrial application. Because Vijeo Citect has been designed with flexibility in mind, you can design a system to suit your exact requirements. Vijeo Citect suits both small and large applications. Because it is flexible, Vijeo Citect will keep pace with your plant and information requirements as they change and expand. Vijeo Citect is easy to learn and use. Programming techniques may be used to customise your application to suit your requirements. Features such as templates, genies, forms and wizards reduce the time and effort required to configure your Vijeo Citect system, as well as maximising performance. This Chapter Covers These Topics: Custom Templates 1-2 Smart Genies 1-3 Smart Popups and Metadata 1-5 Forms 1-8 SQL Interface 1-9 Vijeo Citect and Other Applications 1-10 Miscellaneous 1-11 Customization and Design Exam Manual Release 1 1-1

6 Custom Templates Common Objects on all Pages If the pages in your project contain items that are common to all pages such as toolbars and status bars you can create your own template (containing all common objects) to use as a base for the pages. You can then create the pages based on the template, and add individual objects to each page. If you subsequently decide to delete or change the location of a common object, or to add a new common object, you do not have to change each page - you can change the template. Vijeo Citect automatically updates all pages based on the template. Suggested Exercises Further Reading Use these suggested exercises to increase your understanding of the topic. Create a custom template in the Example project. Change various pages in the project to use the custom template Make a change to the template then Update Pages. Check the pages. Create an Alarm Template. Use the function AlarmDsp() to populate the page with the current alarms. Use the following references to assist your understanding of the topic. Vijeo Citect Help Topic Reserved ANs. Knowledge Base Article Q2365: Animation Numbers in V5.XX. Knowledge Base Article Q1416: Templates based on templates. 1-2 Version 7.30 May 2013

7 Smart Genies IFDEF Macro One of the key benefits of using genies is that they are reusable. However, sometimes you may wish to use a genie that has been configured for multiple tags but you do not need to use all of the tags. This creates a problem when adding the tags and compiling. The IFDEF macro allows you to define two possible outcomes based on whether or not a specified tag exists within a project at the time of compiling. The macro can be implemented anywhere a simple expression is used, including fields within relevant Vijeo Citect dialogs. By allowing a "0" or "1" to be generated within the Hidden When field of a genie s properties, elements could simply be hidden if a required tag was missing, allowing the genie to still be pasted onto a graphics page. The macro accepts three arguments: the first specifies the tag that requires confirmation, the second defines the outcome if the tag exists and the third defines the outcome if it does not exist. In the case of a genie being pasted on a graphics page, the IFDEF function would be configured as follows in the Hidden When field of the object properties dialog: IFDEF("Tag1_PV",0,1) If the tag "Tag1_PV" is defined in the tag database, the value in the Hidden When field will be 0. If Tag1_PV is undefined, the value will be 1. Since the object is hidden when the value is TRUE (1), the object will be hidden when Tag1_PV is undefined. See the topic Hiding Graphics Objects for more information. Beyond this purpose, the IFDEF macro can be broadly used as a conditional variable. The [<value if defined>] and <value if not defined> arguments can support any variable, expression, or constant. The [<value if defined>] argument is optional if you leave it blank it will return the tag value of the first argument if that argument exists in the project at compile time. For example IFDEF( Bit_1,, ) will return the tag value of Bit_1 if the tag is defined in the project at compile time. You can also use nested IFDEF macros. Suggested Exercises Use these suggested exercises to increase your understanding of the topic. Create Genies using the IfDef() Macro. Create a Genie form to filter tags of a certain type in a drop down list Customization and Design Exam Manual Release 1 1-3

8 Smart Genies (cont.) Further Reading Use the following references to assist your understanding of the topic. Vijeo Citect Help Topic -Understanding Genies. Vijeo Citect Help Topic -Using Genies and Super Genies. Vijeo Citect Help Topic -Hiding Graphics Objects. Vijeo Citect Help Topic -Using structured tag names. Vijeo Citect Help Topic -Using structured tag names with Genies and Super Genies. Knowledge Base Article Q1416: Templates based on templates. Knowledge Base Article Q1764: Writing Genie Form Files. Knowledge Base Article Q2706: Demystifying why windows display where they do. Knowledge Base Article Q2541: Default values for Genie substitutions. 1-4 Version 7.30 May 2013

9 Smart Popups and Metadata Numbered Associations With a numbered association, number is the position of the tag name in the list provided in the function that was called to open the Popup page. It is not strictly necessary to use type in the substitution syntax. However, if the type is used for further clarity it is the data type in the variable tag ( eg. string, int, real or digital ). Example In the example of the function AssPopUp(), AssPopUp( poppage, Tag1, Tag2, Tag3 ) if the tags are a string, integer and digital respectively, then they could be referenced anywhere in the popup page as:?string 1? Strings must have the type defined?int 2? or?2??digital 3? or?3? Named Associations In a named association instance, a separate function must be used to link a variable tag (or other data source, such as a constant or local variable) to a local name defined within the popup window. As is true for numbered associations, the datatype is optional for numeric variables and mandatory for strings. Example Firstly, a connection must be made between the data source and the popup's internal variable. In this instance, the popup contains the variable?valve? and it will be linked to the variable tag "Valve_tag." Ass(-2, "Valve", "Valve_tag",0) The next step is to launch the popup window. All pending tag associations will be drawn into the popup as it is launched. WinNewAt("popPage", 250, 250, ) Customization and Design Exam Manual Release 1 1-5

10 Smart Popups and Metadata (cont.) TagGetProperty Function The functionality of these pages may be extended in the same way as genies by using Smart Pages. A popup page may be used with other objects but sometimes there may be a tag association that is not used. If this happens the #ASS (association) error is displayed on the page. The TagGetProperty() function will enable the popup pages to ignore assignment errors and increase the usability of the popup pages. The Use of Metadata, as an attribute of any object on a graphics page, may be used as a source Metadata of substitution information for named associations on a popup page. There are a variety of Cicode functions available to manage the use of Metadata. Suggested Exercises Further Reading Use these suggested exercises to increase your understanding of the topic. Create a button with metadata and use that data to populate a popup page's substitutions. Use the AssGetProperty and TagGetProperty functions to manage the presence or absence of tags linked to popup pages. Use the following references to assist your understanding of the topic. Vijeo Citect Help Topic -Using structured tag names. Vijeo Citect Help Topic -Using structured tag names with Genies and Super Genies. Vijeo Citect Help Topic -Using Metadata. Knowledge Base Article Q1724: SuperGenies on Pages and Templates. Knowledge Base Article Q2706: Demystifying why windows display where they do. Knowledge Base Article Q1589: #ASS displays in my Super Genie. 1-6 Version 7.30 May 2013

11 Customization and Design Exam Manual Release 1 1-7

12 Forms Reading and Writing Data Suggested Exercises Further Reading Forms may be used to read and write values into variable tags, send and receive information from databases and pass data into functions. Standard forms are provided with Vijeo Citect to enter information into the Vijeo Citect databases but you also have the facility to create your own custom forms. Use these suggested exercises to increase your understanding of the topic. Create a form that will display the value of a tag when it is called and allow you to input a value into a tag. Use the following references to assist your understanding of the topic. Vijeo Citect Help Topic - Form Functions. 1-8 Version 7.30 May 2013

13 SQL Interface ActiveX Data Objects Suggested Exercises Further Reading Vijeo Citect v7.30 introduces the use of the ADO.NET library of SQL functions, which provides a modern approach to data access, can be programmed using any of.net managed languages, and is supported and further developed by its manufacturer. Further, the new ADO.NET approach enables you to have multiple recordsets per connection, and multiple queries per recordset. Earlier versions of Vijeo Citect were restricted to 1 recordset and 1 query per connection. More importantly, the new implementation uses separate application threads for connections, disconnections and query executions, meaning that the SQL queries need no longer be blocking actions. Use these suggested exercises to increase your understanding of the topic. Create a DSN and connect to a database using ADO SQL functions. Use the following references to assist your understanding of the topic. Vijeo Citect Help Topic ActiveX Data Objects Vijeo Citect Help Topic Using External Databases Vijeo Citect Help Topic - SQL Functions. Customization and Design Exam Manual Release 1 1-9

14 Vijeo Citect and Other Applications Transferring Data Suggested Exercises You can transfer data between Vijeo Citect and a wide range of software applications for storage, analysis, and post processing, or to control and tune your Vijeo Citect system. In this chapter we will discuss methods for exchanging data with Vijeo Citect and other applications. Use these suggested exercises to increase your understanding of the topic. Create a Data Source Name (DSN) that will connect to a recipe in dbase format. Use the Database Exchange control to: o o o view the recipes edit the recipes upload the values into Vijeo Citect tags Further Reading Use the following references to assist your understanding of the topic. Vijeo Citect Help Topic - ActiveX Functions. Vijeo Citect Help Topic - Using ODBC drivers. Vijeo Citect Help Topic - SQL Functions Version 7.30 May 2013

15 Miscellaneous Real-world Scenarios This section of the exam is based upon the collected experience of the Exam Development Team and will cover a variety of aspects of Vijeo Citect in realworld situations. No further information is offered for this section. Customization and Design Exam Manual Release

SCADA Expert Vijeo Citect 2015 Programming with Cicode Study Guide

SCADA Expert Vijeo Citect 2015 Programming with Cicode Study Guide SCADA Expert Vijeo Citect 2015 Programming with Cicode Study Guide 2015 Schneider-Electric Pty (Australia) Ltd 78 Waterloo Road Macquarie Park NSW 2113 Australia DISCLAIMER Schneider Electric makes no

More information

SCADA Expert Vijeo Citect Architecture and Redundancy Study Guide

SCADA Expert Vijeo Citect Architecture and Redundancy Study Guide SCADA Expert Vijeo Citect Architecture and Redundancy Study Guide 2015 Schneider-Electric Pty (Australia) Ltd 78 Waterloo Road Macquarie Park NSW 2113 Australia DISCLAIMER Schneider Electric makes no representations

More information

Schneider Electric License Manager

Schneider Electric License Manager Schneider Electric License Manager EIO0000001070 11/2012 Schneider Electric License Manager User Manual 12/2012 EIO0000001070.01 www.schneider-electric.com The information provided in this documentation

More information

EcoStruxure Power Commission Installation Guide

EcoStruxure Power Commission Installation Guide EcoStruxure Power Commission DOCA0134EN 03/2019 EcoStruxure Power Commission Installation Guide 03/2019 DOCA0134EN-04 www.schneider-electric.com The information provided in this documentation contains

More information

RELEASE NOTES. WSOS5 version 5.16.xx. Version Schneider Electric. All Rights Reserved.

RELEASE NOTES. WSOS5 version 5.16.xx. Version Schneider Electric. All Rights Reserved. RELEASE NOTES WSOS5 version 5.16.xx Version 02 2017 Schneider Electric. All Rights Reserved. Page 1 of 14 The information provided in this documentation contains general descriptions and/or technical characteristics

More information

Schneider Electric Floating License Manager

Schneider Electric Floating License Manager Schneider Electric Floating License Manager EIO0000001078 11/2012 Schneider Electric Floating License Manager User Manual 12/2012 EIO0000001078.01 www.schneider-electric.com The information provided in

More information

Version 5.5. Using Accumulators. Citect Pty Ltd 3 Fitzsimmons Lane Gordon NSW 2072 Australia

Version 5.5. Using Accumulators. Citect Pty Ltd 3 Fitzsimmons Lane Gordon NSW 2072 Australia Version 5.5 Using Accumulators Citect Pty Ltd 3 Fitzsimmons Lane Gordon NSW 2072 Australia www.citect.com DISCLAIMER Citect Pty. Limited makes no representations or warranties with respect to this manual

More information

Architecture and Redundancy Exam Study Guide

Architecture and Redundancy Exam Study Guide Manual Release 1 Architecture and Redundancy Exam Study Guide Version 7.20 Citect Pty Ltd 3 Fitzsimons Lane GORDON NSW 2072 PO Box 174 PYMBLE NSW 2073 AUSTRALIA Telephone: 61 2 9496 7300 Fax: 61 2 9496

More information

5521 Potentiometer Analog Input Module

5521 Potentiometer Analog Input Module 55 Potentiometer Analog Input Installation, Operation and Maintenance Setup Manual 5/9/0 Safety Information The information provided in this documentation contains general descriptions and/or technical

More information

Packaging User Guide for Temperature Control M221 Project Template

Packaging User Guide for Temperature Control M221 Project Template Packaging EIO0000001762 04/2014 Packaging User Guide for Temperature Control M221 Project Template 04/2014 EIO0000001762.00 www.schneider-electric.com The information provided in this documentation contains

More information

Ethernet Modbus X80 Gateway Device Type Manager

Ethernet Modbus X80 Gateway Device Type Manager Ethernet Modbus X80 Gateway Device Type Manager EIO0000001315 10/2012 Ethernet Modbus X80 Gateway Device Type Manager User Manual 10/2012 EIO0000001315.00 www.schneider-electric.com The information provided

More information

CitectSCADA Batch Tutorial

CitectSCADA Batch Tutorial CitectSCADA Batch Tutorial Version 1.0.8 Citect Pty Ltd 3 Fitzsimmons Lane Gordon NSW 2072 Australia www.citect.com 2 DISCLAIMER Citect Pty. Limited makes no representations or warranties with respect

More information

How Can I. Integrate a Third-Party Modbus Device with PowerSCADA Expert? System Technical Note PowerSCADA Expert V1.0

How Can I. Integrate a Third-Party Modbus Device with PowerSCADA Expert? System Technical Note PowerSCADA Expert V1.0 How Can I Integrate a Third-Party Modbus Device with PowerSCADA Expert? System Technical Note PowerSCADA Expert V1.0 Safety Information Important Information Read these instructions carefully before trying

More information

SCADAPack E Idec PLC Interface Manual

SCADAPack E Idec PLC Interface Manual SCADAPack E Idec PLC Interface Manual 2 SCADAPack E Idec PLC Interface Manual Table of Contents Part I Idec PLC Interface 3 1 Technical... Support 3 2 Safety... Information 4 3 Preface... 6 4 Overview...

More information

LXM32. Explanation for detected error E 733F. Expert Support Machine Solution

LXM32. Explanation for detected error E 733F. Expert Support Machine Solution LXM32 Explanation for detected error E 733F Expert Support Machine Solution The information provided in this documentation contains general descriptions and/or technical characteristics of the performance

More information

SCADAPack E Target 5 DF1 PLC Interface

SCADAPack E Target 5 DF1 PLC Interface SCADAPack E Target 5 DF1 PLC Interface 2 Table of Contents Part I 3 1 Technical... Support 3 2 Safety... Information 4 3 Overview... 7 4 I/O Device... Interface 7 4.1 Input Devices... 9 4.2 Output Devices...

More information

SoMachine HVAC v2.2. Release Notes

SoMachine HVAC v2.2. Release Notes Software / Firmware Version: SoMachine HVAC v2.2 Release Notes TM171PDM27 PV: 01, RL: 04 SV: 423.24 TM171PBM27R PV: 01, RL: 04 SV: 477.24 TM171PFE03 PV: 01, RL: 04 SV: 489.17 TM171DGRP PV: 01, RL: 04 SV:

More information

OFS Parameter Tuning Training Manual

OFS Parameter Tuning Training Manual Manual Release 1.0 OFS Parameter Tuning Training Manual OFS v3.40 DISCLAIMER Schneider Electric Limited makes no representations or warranties with respect to this manual and, to the maximum extent permitted

More information

SCADAPack E ISaGRAF Quick Start Guide

SCADAPack E ISaGRAF Quick Start Guide SCADAPack E ISaGRAF Quick Start Guide 2 SCADAPack E ISaGRAF Quick Start Guide Table of Contents Part I ISaGRAF 3 Quick Start Guide 3 1 Technical... Support 3 2 Safety... Information 4 3 Preface... 6 4

More information

Version 5.5. CitectSCADA Pocket. Citect Pty Ltd 3 Fitzsimmons Lane Gordon NSW 2072 Australia

Version 5.5. CitectSCADA Pocket. Citect Pty Ltd 3 Fitzsimmons Lane Gordon NSW 2072 Australia Version 5.5 CitectSCADA Pocket Citect Pty Ltd 3 Fitzsimmons Lane Gordon NSW 2072 Australia www.citect.com DISCLAIMER Citect Pty. Limited makes no representations or warranties with respect to this manual

More information

File Synchronization User Guide

File Synchronization User Guide Eurotherm PAC User Guide Issue 2 April 2018 HA033151/2 Legal Information The information provided in this documentation contains general descriptions and/or technical characteristics of the performance

More information

5504 Thermocouple Analog Input Module

5504 Thermocouple Analog Input Module 550 Thermocouple Analog Input Installation, Operation and Maintenance Setup Manual 5/9/0 Safety Information The information provided in this documentation contains general descriptions and/or technical

More information

Unity Pro OSLoader User Manual

Unity Pro OSLoader User Manual Unity Pro 35006156 12/2015 Unity Pro OSLoader User Manual 12/2015 35006156.14 www.schneider-electric.com The information provided in this documentation contains general descriptions and/or technical characteristics

More information

Pro-face Connect User Guide for Security Setting

Pro-face Connect User Guide for Security Setting Pro-face Connect User Guide for Security Setting Preface The information provided in this documentation contains general descriptions and/or technical characteristics of the performance of the products

More information

Stellar WAB to PST Converter 1.0

Stellar WAB to PST Converter 1.0 Stellar WAB to PST Converter 1.0 1 Overview Stellar WAB to PST Converter software converts Outlook Express Address Book, also known as Windows Address Book (WAB) files to Microsoft Outlook (PST) files.

More information

QPP Proprietary Profile Guide

QPP Proprietary Profile Guide Rev. 04 April 2018 Application note Document information Info Content Keywords Proprietary Profile, Server, Client Abstract The Proprietary Profile is used to transfer the raw data between BLE devices.

More information

Firmware Update Function

Firmware Update Function Firmware Update Function (Updating from a USB memory stick) The firmware update function allows you to easily update the projector's firmware without having to use dedicated updater software. This guide

More information

Web Designer for Modicon M340, Premium and Quantum

Web Designer for Modicon M340, Premium and Quantum Web Designer for Modicon M340, Premium and Quantum 35016149 08/2012 Web Designer for Modicon M340, Premium and Quantum User Manual 08/2012 35016149.05 www.schneider-electric.com The information provided

More information

COMMERCIAL BANK OF DUBAI PSC GENERAL CONDITIONS OF ACCESS AND USE OF COMMERCIAL BANK OF DUBAI FACEBOOK BRANCH

COMMERCIAL BANK OF DUBAI PSC GENERAL CONDITIONS OF ACCESS AND USE OF COMMERCIAL BANK OF DUBAI FACEBOOK BRANCH COMMERCIAL BANK OF DUBAI PSC GENERAL CONDITIONS OF ACCESS AND USE OF COMMERCIAL BANK OF DUBAI FACEBOOK BRANCH 1. CBD Facebook Branch Commercial Bank of Dubai psc (hereinafter "CBD"), allows access and

More information

SoMachine Scan for Buttons Linked to ZBRN Modules Harmony ZBRN Library Guide

SoMachine Scan for Buttons Linked to ZBRN Modules Harmony ZBRN Library Guide SoMachine EIO0000001868 11/2016 SoMachine Scan for Buttons Linked to ZBRN Modules Harmony ZBRN Library Guide 11/2016 EIO0000001868.04 www.schneider-electric.com The information provided in this documentation

More information

Best Practices and What's New in Vijeo Citect. Vijeo Citect Product Management Adam Barnes Tim van Wyk

Best Practices and What's New in Vijeo Citect. Vijeo Citect Product Management Adam Barnes Tim van Wyk Best Practices and What's New in Vijeo Citect Vijeo Citect Product Management Adam Barnes Tim van Wyk Best Practices and What's New in Vijeo Citect How can you get more out of your investment in Vijeo

More information

Vijeo Connect User Guide For GateManager

Vijeo Connect User Guide For GateManager Vijeo Connect EIO0000002449 11/2016 Vijeo Connect User Guide For GateManager 11/2016 EIO0000002449.02 www.schneider-electric.com The information provided in this documentation contains general descriptions

More information

Placing you at the heart of your operations. Vijeo Citect

Placing you at the heart of your operations. Vijeo Citect Placing you at the heart of your operations Vijeo Citect 10 things you should know about SCADA 1 Safety of workers and equipment are ensured through predefined processes managed by a SCADA system. 2 Engineering

More information

BlackBerry Enterprise Service 10. September 10, 2014 Version: 10 and 10.1.x. Compatibility Matrix

BlackBerry Enterprise Service 10. September 10, 2014 Version: 10 and 10.1.x. Compatibility Matrix BlackBerry Enterprise Service 10 September 10, 2014 Version: 10 and 10.1.x Compatibility Matrix Published: 2014-09-10 SWD-20140910144217710 Contents 1...4 Introduction...4 Legend... 4 Operating system...

More information

Terms and Conditions of Website Use

Terms and Conditions of Website Use Terms and Conditions of Website Use This website (the "Site") is owned and operated by Hoshizaki Lancer Pty Ltd (ABN 84 007 706 461) ("Hoshizaki Lancer") and may contain material from Hoshizaki Lancer

More information

ALERT SETTLEMENT INSTRUCTION (SI) SCAN UPLOAD GUIDE FEBRUARY 27, 2018

ALERT SETTLEMENT INSTRUCTION (SI) SCAN UPLOAD GUIDE FEBRUARY 27, 2018 ALERT SETTLEMENT INSTRUCTION (SI) SCAN UPLOAD GUIDE FEBRUARY 27, 2018 Copyright 2018 DTCC. All rights reserved. This work (including, without limitation, all text, images, logos, compilation and design)

More information

Pro-face Connect User Guide for GateManager

Pro-face Connect User Guide for GateManager Pro-face Connect User Guide for GateManager Preface The information provided in this documentation contains general descriptions and/or technical characteristics of the performance of the products contained

More information

HUAWEI H30-U10. Quick Start Guide

HUAWEI H30-U10. Quick Start Guide HUAWEI H30-U10 Quick Start Guide Dual card dual standby single pass Your phone supports only dual card dual standby single pass, which means you cannot use both SIM cards for calls or data services simultaneously.

More information

Version 5.5. Multi-language Projects. Citect Pty Ltd 3 Fitzsimmons Lane Gordon NSW 2072 Australia

Version 5.5. Multi-language Projects. Citect Pty Ltd 3 Fitzsimmons Lane Gordon NSW 2072 Australia Version 5.5 Multi-language Projects Citect Pty Ltd 3 Fitzsimmons Lane Gordon NSW 2072 Australia www.citect.com DISCLAIMER Citect Pty. Limited makes no representations or warranties with respect to this

More information

BRF Crystal_Reporting_9_1

BRF Crystal_Reporting_9_1 Version Date: February 2014 COPYRIGHT & TRADEMARKS Copyright 1998, 2011, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates.

More information

Stellar Phoenix Windows Data Recovery - Pro

Stellar Phoenix Windows Data Recovery - Pro Stellar Phoenix Windows Data Recovery - Pro Version 4.2 Installation Manual 1 Overview Stellar Phoenix Windows Data Recovery is a complete solution to recover data from hard disk. However, Microsoft Windows

More information

Oracle Hospitality Suite8 Export to Outlook User Manual Release 8.9. July 2015

Oracle Hospitality Suite8 Export to Outlook User Manual Release 8.9. July 2015 Oracle Hospitality Suite8 Export to Outlook User Manual Release 8.9 July 2015 Copyright 1987, 2015, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided

More information

Compatibility Matrix. Good Control and Good Proxy. June 4, 2018

Compatibility Matrix. Good Control and Good Proxy. June 4, 2018 Compatibility Matrix Good Control and Good Proxy June 4, 2018 Published: 2018-06-04 SWD-20180604161707961 Contents Introduction... 4 Legend... 4 Good Control server... 5 Operating system...5 Database server...5

More information

OCTOSHAPE SDK AND CLIENT LICENSE AGREEMENT (SCLA)

OCTOSHAPE SDK AND CLIENT LICENSE AGREEMENT (SCLA) OCTOSHAPE SDK AND CLIENT LICENSE AGREEMENT (SCLA) This is a License Agreement (the "Agreement") for certain code (the Software ) owned by Akamai Technologies, Inc. ( Akamai ) that is useful in connection

More information

SysInfoTools NSF Duplicate Remover

SysInfoTools NSF Duplicate Remover SysInfoTools NSF Duplicate Remover Table of Contents SysInfoTools NSF Duplicate Remover 1. SysInfoTools NSF Duplicate Remover... 2 2. Overview... 2 3. Getting Started... 3 3.1 Installation procedure...

More information

BlackBerry Enterprise Server for IBM Lotus Domino. Compatibility Matrix. September 20, 2012

BlackBerry Enterprise Server for IBM Lotus Domino. Compatibility Matrix. September 20, 2012 BlackBerry Enterprise Server for IBM Lotus Domino Compatibility Matrix September 20, 2012 2012 Research In Motion Limited. All rights reserved. www.rim.com Page: 1 **Software version support life cycle

More information

TeSys T LTM R EtherNet/IP with a Third-Party PLC Quick Start Guide

TeSys T LTM R EtherNet/IP with a Third-Party PLC Quick Start Guide TeSys TLTMR EtherNet/IP with a Third-Party PLC DOCA0119EN-00 06/2015 TeSys T LTM R EtherNet/IP with a Third-Party PLC Quick Start Guide 06/2015 DOCA0119EN-00 www.schneider-electric.com The information

More information

PowerSCADA Expert v7.30

PowerSCADA Expert v7.30 PowerSCADA Expert v7.30 Installation and Configuration Guide November 2012 Legal Information DISCLAIMER Schneider Electric (Australia) Pty. Ltd. makes no representations or warranties with respect to this

More information

BlackBerry Enterprise Server for Novell GroupWise. Compatibility Matrix June 26, 2012

BlackBerry Enterprise Server for Novell GroupWise. Compatibility Matrix June 26, 2012 BlackBerry Enterprise Server for Novell GroupWise Compatibility Matrix June 26, 2012 2012 Research In Motion Limited. All rights reserved. www.rim.com Page: 1 Operating Systems: BlackBerry Enterprise Server

More information

One Identity Manager Administration Guide for Connecting to SharePoint

One Identity Manager Administration Guide for Connecting to SharePoint One Identity Manager 8.0.2 Administration Guide for Connecting to Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

TERMS & CONDITIONS. Complied with GDPR rules and regulation CONDITIONS OF USE PROPRIETARY RIGHTS AND ACCEPTABLE USE OF CONTENT

TERMS & CONDITIONS. Complied with GDPR rules and regulation CONDITIONS OF USE PROPRIETARY RIGHTS AND ACCEPTABLE USE OF CONTENT TERMS & CONDITIONS www.karnevalkings.com (the "Site") is a website and online service owned and operated by the ViisTek Media group of companies (collectively known as "Karnevalkings.com", "we," "group",

More information

Tabular SIMATIC BATCH report for the Information Server. SIMATIC PCS 7 / SIMATIC Information Server 2014 / Customized Reporting

Tabular SIMATIC BATCH report for the Information Server. SIMATIC PCS 7 / SIMATIC Information Server 2014 / Customized Reporting Tabular SIMATIC BATCH report for the Information Server SIMATIC PCS 7 / SIMATIC Information Server 2014 / Customized Reporting https://support.industry.siemens.com/cs/ww/en/view/64906050 Siemens Industry

More information

1. License Grant; Related Provisions.

1. License Grant; Related Provisions. IMPORTANT: READ THIS AGREEMENT CAREFULLY. THIS IS A LEGAL AGREEMENT BETWEEN AVG TECHNOLOGIES CY, Ltd. ( AVG TECHNOLOGIES ) AND YOU (ACTING AS AN INDIVIDUAL OR, IF APPLICABLE, ON BEHALF OF THE INDIVIDUAL

More information

UM PR533 - PCSC Tool. User manual COMPANY PUBLIC. Rev November Document information

UM PR533 - PCSC Tool. User manual COMPANY PUBLIC. Rev November Document information PR533 - PCSC Tool Document information Info Content Keywords PR533, CCID, PCSC, APDU Abstract This document describes the PCSC Tool software which demonstrates the capabilities of PR533 device. Revision

More information

Color Ink Jet Printer. Printer Software

Color Ink Jet Printer. Printer Software Color Ink Jet Printer Printer Software 3003198-00 All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, electronic,

More information

Compatibility Matrix. BlackBerry UEM. March 26, 2018

Compatibility Matrix. BlackBerry UEM. March 26, 2018 Compatibility Matrix BlackBerry UEM March 26, 2018 Published: 2018-03-26 SWD-20180326105755902 Contents Introduction... 4 Legend... 4 BlackBerry UEM server...5 Operating system...5 Database server...5

More information

Vijeo Citect V7.20 Objectives

Vijeo Citect V7.20 Objectives Vijeo Citect V7.20 Vijeo Citect V7.20 Objectives Helping you to Reduce development time & risk Make smarter decisions Optimise assets production & resources Adapt to new business requirements Secure the

More information

Release Notes. BlackBerry Enterprise Identity

Release Notes. BlackBerry Enterprise Identity Release Notes BlackBerry Enterprise Identity Published: 2018-03-13 SWD-20180606100327990 Contents New in this release...4 Fixed issues...5 Known issues... 6 Legal notice...8 New in this release New in

More information

Exception Process User Guide Oracle Banking Credit Facilities Process Management Release Part No. E July 2018

Exception Process User Guide Oracle Banking Credit Facilities Process Management Release Part No. E July 2018 Exception Process User Guide Oracle Banking Credit Facilities Process Management Release 14.1.0.0.0 Part No. E97614-01 July 2018 Oracle Banking Credit Facilities Process Management User Guide Oracle Financial

More information

BCM ULP Breaker Communication Module

BCM ULP Breaker Communication Module DOCA0152EN-00 BCM ULP Breaker Communication Module Firmware Version 4.1.9 Release Note 05/2018 The information provided in this documentation contains general descriptions and/or technical characteristics

More information

Pro-face Connect Troubleshooting for SiteManager (Access to GateManager)

Pro-face Connect Troubleshooting for SiteManager (Access to GateManager) Pro-face Connect Troubleshooting for SiteManager (Access to GateManager) Preface The information provided in this documentation contains general descriptions and/or technical characteristics of the performance

More information

Upgrading BMDM and BMRG Software and MPM, BDS and DCM Firmware

Upgrading BMDM and BMRG Software and MPM, BDS and DCM Firmware Upgrading BMDM and BMRG Software and MPM, BDS and DCM Firmware 990 South Rogers Circle, Suite 11 Boca Raton, FL 33487 Tel: 561-997-2299 Fax: 561-997-5588 www.alber.com 1. Warranty and Limitation of Liability

More information

Installation Guide Plant Connectivity 2.3

Installation Guide Plant Connectivity 2.3 Installation Guide Plant Connectivity 2.3 Target Audience System administrators Technology consultants CUSTOMER Document version: 4.0 2014-02-04 Document History CAUTION Before you start the implementation,

More information

Stellar Phoenix Lotus Notes Recovery

Stellar Phoenix Lotus Notes Recovery Stellar Phoenix Lotus Notes Recovery Version 2.0 User Guide 1 Overview Stellar Phoenix Lotus Notes Recovery is a complete recovery solution for damaged Lotus Notes (NSF) files. Software repairs corrupted

More information

INCLUDING MEDICAL ADVICE DISCLAIMER

INCLUDING MEDICAL ADVICE DISCLAIMER Jordan s Guardian Angels Terms and Conditions of Use INCLUDING MEDICAL ADVICE DISCLAIMER Your use of this website and its content constitutes your agreement to be bound by these terms and conditions of

More information

Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Primavera Portfolio Management 9.0 What s New Copyright 1999-2011, Oracle and/or its affiliates. The Programs (which include both the software and documentation) contain proprietary information; they are

More information

BlackBerry Enterprise Server Express for IBM Lotus Domino. Compatibility Matrix. September 20, 2012

BlackBerry Enterprise Server Express for IBM Lotus Domino. Compatibility Matrix. September 20, 2012 BlackBerry Enterprise Server Express for IBM Lotus Domino Compatibility Matrix September 20, 2012 2012 Research In Motion Limited. All rights reserved. www.rim.com Page: 1 Operating Systems: BlackBerry

More information

Converter. Stellar DBX To Windows Live Mail. Stellar DBX To Windows Live Mail Converter 1.0 User Guide

Converter. Stellar DBX To Windows Live Mail. Stellar DBX To Windows Live Mail Converter 1.0 User Guide Converter Stellar DBX To Windows Live Mail Stellar DBX To Windows Live Mail Converter 1.0 User Guide 1 Overview Stellar DBX To Windows Live Mail Converter converts Microsoft Outlook Express (DBX) files

More information

Governance, Risk, and Compliance Controls Suite. Release Notes. Software Version

Governance, Risk, and Compliance Controls Suite. Release Notes. Software Version Governance, Risk, and Compliance Controls Suite Release Notes Software Version 7.2.2.1 Governance, Risk, and Compliance Controls Suite Release Notes Part No. AG008-7221A Copyright 2007, 2008, Oracle Corporation

More information

CLSA DIRECT MARKET ACCESS SERVICES ANNEX

CLSA DIRECT MARKET ACCESS SERVICES ANNEX CLSA DIRECT MARKET ACCESS SERVICES ANNEX 1. Definitions and Interpretation 1.1 In this Direct Market Access Services Annex capitalised terms have the meaning given to them in the CLSA Asia-Pacific Terms

More information

BlackBerry Enterprise Server Express for Microsoft Exchange

BlackBerry Enterprise Server Express for Microsoft Exchange BlackBerry Enterprise Server Express for Microsoft Exchange Compatibility Matrix March 25, 2013 2013 Research In Motion Limited. All rights reserved. www.rim.com Page: 1 Operating Systems: BlackBerry Enterprise

More information

No part of this document may be used for any purpose other than for the purposes specifically indicated herein nor may it be reproduced or

No part of this document may be used for any purpose other than for the purposes specifically indicated herein nor may it be reproduced or UniDDE Server No part of this document may be used for any purpose other than for the purposes specifically indicated herein nor may it be reproduced or transmitted in any form or by any means, electronic

More information

Apple Safari Settings Oracle FLEXCUBE Release [May] [2017]

Apple Safari Settings Oracle FLEXCUBE Release [May] [2017] Apple Safari Settings Oracle FLEXCUBE Release 12.4.0.0.0 [May] [2017] Table of Contents 1. CONFIGURING APPLE SAFARI (LATEST QUALIFIED VERSION)... 1-1 1.1 CLEARING CACHE... 1-1 1.2 REMOVING BACK/FORWARD

More information

Oracle Governance, Risk and Compliance. Release Notes Release Part No. E

Oracle Governance, Risk and Compliance. Release Notes Release Part No. E Oracle Governance, Risk and Compliance Release Notes Release 8.6.4 Part No. E26596-02 November 2011 Oracle Governance, Risk and Compliance Release Notes Part No. E26596-02 Copyright 2011 Oracle Corporation

More information

One Identity Manager Administration Guide for Connecting Oracle E-Business Suite

One Identity Manager Administration Guide for Connecting Oracle E-Business Suite One Identity Manager 8.0.2 Administration Guide for Connecting Oracle E- Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

FX RFID READER SERIES Embedded SDK Sample Application

FX RFID READER SERIES Embedded SDK Sample Application FX RFID READER SERIES Embedded SDK Sample Application User Guide MN000539A01 FX RFID READER SERIES EMBEDDED SDK SAMPLE APPLICATIONS USER GUIDE MN000539A01 Revision A December 2017 Copyright 2017 ZIH Corp.

More information

GS2K External Flash based Host Firmware Update Application Note NT11608A Rev

GS2K External Flash based Host Firmware Update Application Note NT11608A Rev GS2K External Flash based Host Firmware Update Application Note 80560NT11608A Rev. 1.0 2017-07-01 SPECIFICATIONS ARE SUBJECT TO CHANGE WITHOUT NOTICE NOTICE While reasonable efforts have been made to assure

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience Push Notification User Manual Release 18.3.0.0.0 Part No. F12056-01 December 2018 Push Notification User Manual December 2018 Oracle Financial Services Software Limited

More information

Opera Browser Settings Oracle FLEXCUBE Release [May] [2017]

Opera Browser Settings Oracle FLEXCUBE Release [May] [2017] Opera Browser Settings Oracle FLEXCUBE Release 12.4.0.0.0 [May] [2017] Table of Contents 1. CONFIGURING OPERA (VERSION LATEST QUALIFIED VERSION)... 1-1 1.1 CLEARING CACHE... 1-1 1.2 CLEARING BROWSER CACHE

More information

About the P6 EPPM Importing and Exporting Guide

About the P6 EPPM Importing and Exporting Guide P6 EPPM Importing and Exporting Guide October 2018 Contents About the P6 EPPM Importing and Exporting Guide Scope This guide contains information about import and export formats and the process of importing

More information

SysInfoTools Excel Recovery

SysInfoTools Excel Recovery Table of Contents SysInfoTools Excel Recovery 1. SysInfotools Excel Recovery... 2 2. Overview... 2 3. Getting Started... 3 3.1 Installation procedure... 3 4. Order and Activation... 3 4.1 How to Order...

More information

XPSMCMx Fieldbus Expansion Modules Instruction Sheet (Original Language)

XPSMCMx Fieldbus Expansion Modules Instruction Sheet (Original Language) XPSMCMx Fieldbus Expansion Modules EAV8283001 12/2014 XPSMCMx Fieldbus Expansion Modules Instruction Sheet (Original Language) 12/2014 EAV8283001.00 www.schneider-electric.com The information provided

More information

Intel Manageability Commander User Guide

Intel Manageability Commander User Guide Intel Manageability Commander User Guide Document Release Date: October 27, 2016 Legal Information INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED,

More information

User Guide. BlackBerry Docs To Go for Android. Version 1.3.0

User Guide. BlackBerry Docs To Go for Android. Version 1.3.0 User Guide BlackBerry Docs To Go for Android Version 1.3.0 Published: 2017-09-13 SWD-20170925160536936 Contents Introduction... 5 What is the BlackBerry Docs To Go app?...5 Getting started with BlackBerry

More information

Oracle Insurance IStream

Oracle Insurance IStream Oracle Insurance IStream IStream Document Manager Glossary Release 6.3 E15015-01 June 2009 Copyright Copyright 2009, Oracle and/or its affiliates. All rights reserved. Primary Authors: Andrew Brooke and

More information

V E2B Snap-in I/O Module

V E2B Snap-in I/O Module i4 Automation Ltd - 01480 395256 V200-18-E2B Snap-in I/O Module The V200-18-E2B plugs directly into the back of compatible Unitronics OPLCs, creating a selfcontained PLC unit with a local I/O configuration.

More information

Oracle Insurance IStream

Oracle Insurance IStream Oracle Insurance IStream IStream Document Manager Glossary Release 6.2 E14878-01 January 2009 Copyright Copyright 2009, Oracle and/or its affiliates. All rights reserved. Primary Authors: Andrew Brooke

More information

Logipam. SFT2885 Programming Software for Sepam Series 80 User s Manual 01/ SEPED303004EN. Logipam

Logipam. SFT2885 Programming Software for Sepam Series 80 User s Manual 01/ SEPED303004EN. Logipam Logipam SEPED303004EN 01/2013 Logipam SFT2885 Programming Software for Sepam Series 80 User s Manual 01/2013 SEPED303004EN www.schneider-electric.com The information provided in this documentation contains

More information

Stellar Phoenix Messenger Password Recovery

Stellar Phoenix Messenger Password Recovery Stellar Phoenix Messenger Password Recovery User Guide Version 1.0 Overview Messengers or instant messaging clients are computer programs used by many people to send and receive instant text messages between

More information

Oracle. Field Service Cloud Using the Parts Catalog

Oracle. Field Service Cloud Using the Parts Catalog Oracle Field Service Cloud Release August 2016 Field Service Cloud Part Number: E67887-10 Copyright 2016, Oracle and/or its affiliates. All rights reserved Authors: The Field Service Cloud Information

More information

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3 Enterprise Vault.cloud CloudLink Google Account Synchronization Guide CloudLink 4.0.1 to 4.0.3 Enterprise Vault.cloud: CloudLink Google Account Synchronization Guide Last updated: 2018-06-08. Legal Notice

More information

Oracle Hospitality Materials Control Release Notes. Release 8.32

Oracle Hospitality Materials Control Release Notes. Release 8.32 Oracle Hospitality Materials Control Release Notes Release 8.32 E88125-02 August 2017 Oracle Hospitality Materials Control Release Notes, Release 8.32 E88125-02 Copyright 2002, 2017, Oracle and/or its

More information

Release Notes. BlackBerry UEM Client for Android Version

Release Notes. BlackBerry UEM Client for Android Version Release Notes BlackBerry UEM Client for Android Version 12.27.0.153083 Published: 2017-01-13 SWD-20170113121937594 Contents What's new...4 Fixed issues...5 Known issues... 6 Legal notice...7 What's new

More information

Upgrade your IsatPhone

Upgrade your IsatPhone Upgrade your IsatPhone How to Upgrade your IsatPhone 1 INSTALLING THE ISATPHONE 2 FIRMWARE UPGRADE TOOL From time to time, it may be necessary to upgrade your phone in order to improve its functionality

More information

PLX35-NB2 RELEASE NOTES. Network Bridge Stand Alone Gateway. July 20, 2018

PLX35-NB2 RELEASE NOTES. Network Bridge Stand Alone Gateway. July 20, 2018 PLX35-NB2 Network Bridge RELEASE NOTES Your Feedback Please We always want you to feel that you made the right decision to use our products. If you have suggestions, comments, compliments or complaints

More information

Avaya Client Applications Configurator User Guide

Avaya Client Applications Configurator User Guide Avaya Client Applications Configurator User Guide Release 6.3 02-604198 Issue 02.01 February 2014 2014 Avaya Inc. All Rights Reserved. Notice While reasonable efforts have been made to ensure that the

More information

Diagnostic communication setup with MB/TCP and E/IP fieldbus modules FW 1.7 or 1.8

Diagnostic communication setup with MB/TCP and E/IP fieldbus modules FW 1.7 or 1.8 Diagnostic communication setup with MB/TCP and E/IP fieldbus modules FW 1.7 or 1.8 Application Technical note Author: Matti Haliseva, Schneider Electric, Machine Solutions Page 1 of 20 The information

More information

Quickstart Guide for Khronos Replay. Welcome to Khronos, your historian companion.

Quickstart Guide for Khronos Replay. Welcome to Khronos, your historian companion. Khronos Historian Replay and Analysis Tools Quickstart Guide for Khronos Replay Welcome to Khronos, your historian companion. This Guide will take you through the basic steps required to install, setup

More information

Single Message Report for the Information Server. SIMATIC PCS 7, SIMATIC Information Server Siemens Industry Online Support

Single Message Report for the Information Server. SIMATIC PCS 7, SIMATIC Information Server Siemens Industry Online Support Single Message Report for the Information Server SIMATIC PCS 7, SIMATIC Information Server 2014 https://support.industry.siemens.com/cs/ww/en/view/64906050 Siemens Industry Online Support Legal information

More information

Quick Start Guide. BlackBerry Workspaces app for Android. Version 5.0

Quick Start Guide. BlackBerry Workspaces app for Android. Version 5.0 Quick Start Guide BlackBerry Workspaces app for Android Version 5.0 Published: 2017-01-22 SWD-20170122060917401 Contents Overview... 4 Browse workspaces, folders, and files... 5 Create new workspaces,

More information