SCADA Expert Vijeo Citect 2015 Programming with Cicode Study Guide

Size: px
Start display at page:

Download "SCADA Expert Vijeo Citect 2015 Programming with Cicode Study Guide"

Transcription

1 SCADA Expert Vijeo Citect 2015 Programming with Cicode Study Guide 2015 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 study guide 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 study guide 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. INTRODUCTION AND LEGAL NOTICE 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 study guide 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 study guide. TRADEMARKS Schneider Electric has made every effort to supply trademark information about company names, products and services mentioned in this study guide. 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, Windows 7 and Windows 8 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. General Notice: Some product names used in this study guide 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. June 2015 Edition for Vijeo Citect 2015 ii Vijeo Citect Cicode Exam

3 Contents CHAPTER 1: 2015 CICODE PROGRAMMING EXAM TOPICS OVERVIEW Function Structure Variables, Datatypes and Data Structures Flow Control Logic Statements Input and Output Parameter Passing Error Handling Debugging Programming Standards Vijeo Citect Cicode Exam iii

4

5 Chapter 1: 2015 Cicode Programming Exam Topics Overview Introduction Cicode Programming is the second of the CSCE exams. This exam is based around information that is covered in the Cicode Programming Course. This Chapter Covers These Topics: Function Structure Variables, Datatypes and Data Structures Flow Control Logic Statements Input and Output Parameter Passing Error Handling Debugging Programming Standards Vijeo Citect Cicode Exam 1-1

6 Cicode Development Environment Programming Language Cicode is a simple, easy-to-use computer programming language designed especially for plant monitoring and control applications. It is a structured language similar to Visual Basic or 'C', however you need no previous programming experience to use it. Using Cicode, you have access to all real-time data (variables) in the Vijeo Citect project, and all Vijeo Citect facilities - variable tags, alarms, trends, reports, and so on. You can use Cicode to interface to various resources on the computer, such as the operating system and communication ports. Cicode supports advanced features including pre-emptive multi-tasking, multi-threads, and remote procedure calls that will be discussed later in this course. Create and save Cicode function libraries. Experiment with the automated layout functionality within the editor. Use comments to disable sections of cicode. Vijeo Citect Help Topic - The Cicode Editor. 1-2 Vijeo Citect Cicode Exam

7 Function Structure User Functions Vijeo Citect is supplied with over 600 in-built functions. One or a combination of these functions can usually perform most tasks in your system. However, where system functionality cannot be achieved with in-built functions, you can write your own functions. A Cicode function is a small program that may contain a collection of statements, variables, operators, conditional executors, and functions, in fact, of all the elements of Cicode. Revise the syntax of Cicode functions. Make a small Cicode program to create a standard Microsoft ActiveX Listbox at runtime, and fill this listbox with three items, and then select one of these items, and then store the value of the item in a DiskPLC variable. Vijeo Citect Help Topic - Cicode Function syntax. Vijeo Citect Help Topic - Converting and Formatting Cicode Variables. Vijeo Citect Cicode Exam 1-3

8 Variables, Datatypes and Data Structures Operators Cicode is used to manipulate data and perform tasks. Data manipulation is achieved using five classes of operators. These are the Mathematical, Bit, Logical, Relational and Format operators. Review the Cicode Programming Training manual. Create Global, Module and Local variable declarations along with assigning default values to the declared variables. Determine maximum array size limits. Vijeo Citect Help Topic - Using Variables. Vijeo Citect Help Topic - Using Arrays. Vijeo Citect Help Topic - Variable declaration. 1-4 Vijeo Citect Cicode Exam

9 Flow Control Four Conditional Executors The statements that control decisions and loops in your functions are called conditional executors. Cicode uses four conditional executors: IF, FOR, WHILE and SELECT CASE. Review the syntax of the four types of Conditional Executor in Cicode. Create functions that test the functionality of the Conditional Executors. Vijeo Citect Help Topic - Working with Conditional Executors. Vijeo Citect Cicode Exam 1-5

10 Logic Use of Logic in Cicode Cicode supports the use of all major Logical operators: AND, OR, XOR, NOT. Create simple logic statements to test the order of precedence and also to be sure that you understand how statements are executed. Vijeo Citect Help Topic - Using Logical Operators 1-6 Vijeo Citect Cicode Exam

11 Statements Doing the Work Statements are used to execute Cicode Functions and also to assign values (or the results of Cicode Functions) to variables and to Variable Tags. Statements also include the ability to exchange information between variable of differing datatypes - for instance converting an Integer to a String or vice versa. The various operators (addition, subtraction, multiplication etc) have an order of precedence (they are not executed left-to-right or right-to-left) Review the Order of Precedence of Operators. Create Cicode fragments to assign values and call functions. Confirm your knowledge of datatype conversion functions. Vijeo Citect Help Topic - Working with Operators. Vijeo Citect Help Topic - Converting and Formatting Cicode Variables. Vijeo Citect Help Topic - Order of Precedence of Operators. Vijeo Citect Cicode Exam 1-7

12 Input and Output Interact with the Operator In addition to acting on data sourced from the plant via Variable Tags, there are occasions when it is necessary to interact with the operator in order to either request values (perhaps the name of the next recipe or the adjusted setpoint value for some parameter) or to provide other information - often via the prompt field on the screen. Generally, the Input and the Prompt Cicode functions are used for this, although others are also available. Understand the datatype of the various input and output functions and be familiar with how to ensure data is sent or received in the necessary datatype. Be familiar with key sequences for data input. Test the use of the ArgX and ArgValueX items. Vijeo Citect Help Topic - Defining Key Sequences for Commands. Vijeo Citect Help Topic - Input. Vijeo Citect Help Topic - Prompt. Vijeo Citect Help Topic - FormNumPad. 1-8 Vijeo Citect Cicode Exam

13 Parameter Passing Provide Information for a Function to work with In order to make Cicode Functions flexible and reusable, it is normal to provide a list of parameters for them to work with as arguments to the function. Clearly the only alternative would be to define some large list of fixed Global variables. When passing parameters to a function, the programmer must make sure that the parameters appear in the correct order and have the proper datatypes. Create Cicode Functions with default parameters for use when the parameter is not provided. Call functions with missing parameters. Test the application of datatypes to function parameters. Vijeo Citect Help Topic - Parameters. Vijeo Citect Help Topic - Function Argument Structure. Vijeo Citect Cicode Exam 1-9

14 Error Handling Deal with Problems There are many situations where your programs must handle unexpected events. These might range from a file not existing when you request to open it to attempting to read from a non-existent array item. You should write your software to minimise these issues as much as possible and also to gracefully handle the ones you can't catch. Vijeo Citect Help Topic - Defensive Programming. Vijeo Citect Help Topic - Using Cicode Programming Standards Vijeo Citect Cicode Exam

15 Debugging Cicode Editor as a Debugger The Cicode Editor can function in debug mode, to analyse running Cicode. Debugging Cicode requires that Vijeo Citect is running, though you can turn debugging on and off as required. The operation of the debugger is controlled through Debug Options, with some options only taking effect on startup. Review how the Cicode language supports multi-tasking and pre-empting. Review the use of the Cicode Editor in Debug mode. Add some breakpoints to the program you created earlier and use the Cicode debugger to step through it, by breakpoint and line by line. Vijeo Citect Help Topic - Debugging Cicode. Vijeo Citect Help Topic - Using breakpoints. Vijeo Citect Help Topic - Stepping through code. Vijeo Citect Cicode Exam 1-11

16 Programming Standards Fundamentals of Good Design One of the critical aspects to follow on from the earlier concepts of Error Handling and Defensive Programming is "Good Design." the better designed your software is, the easier it will be to deal with errors and exceptions. Software should be written with as much of the code hidden as PRIVATE functions in order to not accidentally call functions which have not been configured for global use. Similarly, unless a variable must be made available globally, it should be declared as a MODULE variable or even kept local to a function. Experiment with declaring PUBLIC and PRIVATE Functions. Investigate the difference between Blocking and Non-Blocking functions. Read widely on programming techniques. Vijeo Citect Help Topic - Function Scope. Vijeo Citect Help Topic - Formatting Functions Vijeo Citect Cicode Exam

Vijeo Citect Customization and Design Study Guide

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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 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

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

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

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

Security Quick Start Guide

Security Quick Start Guide 2 Table of Contents Part I 4 1 Technical... Support 4 2 Safety... Information 5 3 Introduction... 7 4 Security... Overview 8 5 How to... Configure DNP3 Secure Authentication 11 5.1 Check RTU Firm... w

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

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

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

Remote Backup Software. User Manual

Remote Backup Software. User Manual Remote Backup Software User Manual Legal Information About this Manual This Manual is subject to domestic and international copyright protection. Hangzhou Hikvision Digital Technology Co., Ltd. ("Hikvision")

More information

Smart Mode Measurements

Smart Mode Measurements Smart Mode Measurements Technical Reference for Maintenance PME 7.2.3 V1.0 Safety Information Important Information Read these instructions carefully before trying to install, configure, or operate this

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

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

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

TeSys U LULC07 Profibus DP Communication Module

TeSys U LULC07 Profibus DP Communication Module 1672612 03/2009 TeSys U LULC07 Profibus DP Communication Module Acyclic Data Read/Write with Siemens Application Note 03/2009 1672612 www.schneider-electric.com Schneider Electric assumes no responsibility

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

END USER LICENSE AGREEMENT PANDA ANTIVIRUS 2007 / PANDA ANTIVIRUS + FIREWALL 2007 / PANDA INTERNET SECURITY 2007

END USER LICENSE AGREEMENT PANDA ANTIVIRUS 2007 / PANDA ANTIVIRUS + FIREWALL 2007 / PANDA INTERNET SECURITY 2007 END USER LICENSE AGREEMENT PANDA ANTIVIRUS 2007 / PANDA ANTIVIRUS + FIREWALL 2007 / PANDA INTERNET SECURITY 2007 Please read the following license agreement carefully before using this program. By accepting

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

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

Epson Stylus Photo 1410 Managing Color

Epson Stylus Photo 1410 Managing Color Epson Stylus Photo 1410 Managing Color Printing With Adobe Photoshop Elements 6.0 Copyright Notice All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted

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

Information Bulletin

Information Bulletin Application of Primary and Secondary Reference Documents Version 1.1 Approved for release July 2014 Table of Contents 1.0 Purpose statement... 3 2.0 Audience... 3 3.0 BCA requirements and referenced documents...

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

LOGO LICENSE AGREEMENT(S) CERTIPORT AND IC³

LOGO LICENSE AGREEMENT(S) CERTIPORT AND IC³ LOGO LICENSE AGREEMENT(S) CERTIPORT AND IC³ EXHIBIT B-2 LICENSEE: Address: Attention: Phone: Fax: Email: Account #: CERTIPORT LOGO LICENSE AGREEMENT Authorized Testing Centers This Logo License Agreement

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

5401 and 5402 Digital I/O Modules

5401 and 5402 Digital I/O Modules 50 and 50 Digital I/O Modules 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

Broadcast Notification solutions

Broadcast Notification solutions Broadcast Notification solutions Fast, accurate group communication to enhance your security response security.gallagher.com Broadcast Notification solutions Mobile Network Provider Staff in building 2

More information

Installing Your Microsoft Access Database (Manual Installation Instructions)

Installing Your Microsoft Access Database (Manual Installation Instructions) Installing Your Microsoft Access Database (Manual Installation Instructions) Installation and Setup Instructions... 1 Single User Setup... 1 Multiple User Setup... 2 Adjusting Microsoft Access 2003 Macro

More information

Building Information Modeling and Digital Data Exhibit

Building Information Modeling and Digital Data Exhibit Document E203 2013 Building Information Modeling and Digital Data Exhibit This Exhibit dated the day of in the year is incorporated into the agreement (the Agreement ) between the Parties for the following

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

PRODUCT GUIDE. L e p i d e S o f t w a r e P r i v a t e L i m i t e d

PRODUCT GUIDE. L e p i d e S o f t w a r e P r i v a t e L i m i t e d PRODUCT GUIDE Table of Contents 1. About Kernel for PDF to Word... 4 1.1 Using this Manual... 4 1.2 Kernel for PDF to Word... 5 1.4 Who Should Use this Software?... 6 2. Getting Started... 7 2.1 Installation

More information

CALSTRS ONLINE AGREEMENT TERMS AND CONDITIONS

CALSTRS ONLINE AGREEMENT TERMS AND CONDITIONS CALSTRS ONLINE AGREEMENT TERMS AND CONDITIONS INTRODUCTION: Before the California State Teachers Retirement System (hereinafter "CalSTRS," "We," or "Us") will provide services found at mycalstrs.com (the

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

New Features in Primavera Professional 15.2

New Features in Primavera Professional 15.2 New Features in Primavera Professional 15.2 COPYRIGHT & TRADEMARKS Copyright 2015, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates.

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

One Identity Manager 8.0. Administration Guide for Connecting to Cloud Applications

One Identity Manager 8.0. Administration Guide for Connecting to Cloud Applications One Identity Manager 8.0 Administration Guide for Connecting to Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

Ongoing conformance of the product with the standard is the responsibility of the certificate holder and the Australian manufacturer or importer.

Ongoing conformance of the product with the standard is the responsibility of the certificate holder and the Australian manufacturer or importer. 1. Preface The (TECS) offered by Comtest Certification Body is based on a type test scheme, which is one where a representative sample is provided for testing and certification, and does not include any

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

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

Installation and Configuration Guide

Installation and Configuration Guide Installation and Configuration Guide BlackBerry Blend Version 1.2 Published: 2015-07-06 SWD-20150706173035792 Contents About BlackBerry Blend... 4 BlackBerry Blend architecture... 4 Security... 5 IT policy

More information

Terms of Use. Changes. General Use.

Terms of Use. Changes. General Use. Terms of Use THESE TERMS AND CONDITIONS (THE TERMS ) ARE A LEGAL CONTRACT BETWEEN YOU AND SPIN TRANSFER TECHNOLOGIES ( SPIN TRANSFER TECHNOLOGIES, STT, WE OR US ). THE TERMS EXPLAIN HOW YOU ARE PERMITTED

More information

CitectHistorian 2016

CitectHistorian 2016 CitectHistorian 2016 Readme (Updated 14 June 2016) See the Release Notes for information about fixes in this release and the Installation and Configuration Guide for information on the installation of

More information

Practices Guide OMRON Standard IAG Library

Practices Guide OMRON Standard IAG Library Programmable Terminal NA-series Practices Guide OMRON Standard IAG Library NA5-15[]101[] NA5-12[]101[] NA5-9[]001[] NA5-7[]001[] V415-E1-04 Introduction This guide provides reference information for the

More information

NVIDIA GPU CLOUD IMAGE FOR GOOGLE CLOUD PLATFORM

NVIDIA GPU CLOUD IMAGE FOR GOOGLE CLOUD PLATFORM NVIDIA GPU CLOUD IMAGE FOR GOOGLE CLOUD PLATFORM RN-08963-18.06.0 _v01 June 2018 Release Notes TABLE OF CONTENTS 1. 2. 3. 4. 5. NVIDIA GPU Cloud Image Overview... 1 Version 18.06.0... 2 Version 18.05.0...

More information

MMS DATA SUBSCRIPTION SERVICES USER INTERFACE GUIDE

MMS DATA SUBSCRIPTION SERVICES USER INTERFACE GUIDE MMS DATA SUBSCRIPTION SERVICES USER INTERFACE GUIDE VERSION: 2.01 DOCUMENT REF: PREPARED BY: MMSTDPD69 EMD DATE: 16 February 2010 Final Copyright Copyright 2012 Australian Energy Market Operator Limited

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

VAR-EXT-CB8 Datasheet Camera Extension Board for VAR-DT8MCustomBoard & SPEAR-MX8CustomBoard V 1.x

VAR-EXT-CB8 Datasheet Camera Extension Board for VAR-DT8MCustomBoard & SPEAR-MX8CustomBoard V 1.x Rev. 1.00, 07/2018 VAR- EXT- CB8 VARISCITE LTD. VAR-EXT-CB8 Datasheet Camera Extension Board for VAR-DT8MCustomBoard & SPEAR-MX8CustomBoard V 1.x VARISCITE LTD. VAR-EXT-CB8 Datasheet 2018 All Rights Reserved.

More information

End User License Agreement

End User License Agreement End User License Agreement Kyocera International, Inc. ( Kyocera ) End User License Agreement. CAREFULLY READ THE FOLLOWING TERMS AND CONDITIONS ( AGREEMENT ) BEFORE USING OR OTHERWISE ACCESSING THE SOFTWARE

More information

BC403 Advanced ABAP Debugging

BC403 Advanced ABAP Debugging BC403 Advanced ABAP Debugging. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding)

BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding) BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding) CLAUSE 13 ON-LINE BIDDING 13.1 ON-LINE BIDDING.1 Definitions: Owner means the party and/or their agent designated to receive on-line

More information

CERTIFIED MAIL LABELS TERMS OF USE and PRIVACY POLICY Agreement

CERTIFIED MAIL LABELS TERMS OF USE and PRIVACY POLICY Agreement CERTIFIED MAIL LABELS TERMS OF USE and PRIVACY POLICY Agreement Welcome to Certified Mail Envelopes and Certified Mail Labels web sites (the Site ) a website, trademark and business name owned and operated

More information

Application Note on Modifying Disconnect Settings for Xantrex GT Series Single Phase Inverters and Conext TX Series Inverters

Application Note on Modifying Disconnect Settings for Xantrex GT Series Single Phase Inverters and Conext TX Series Inverters Application Note on Modifying Disconnect Settings for Xantrex GT Series Single Phase Inverters and Conext TX Series Inverters 976-0312-01-01 Revision A DANGER RISK OF FIRE, ELECTRIC SHOCK, EXPLOSION, AND

More information

Proficy* Historian OSI PI C OLLECTOR G UIDE. Version 6.0 June 2015

Proficy* Historian OSI PI C OLLECTOR G UIDE. Version 6.0 June 2015 Proficy* Historian OSI PI C OLLECTOR G UIDE Version 6.0 June 2015 Disclaimer of Warranties and Liability The information contained in this manual is believed to be accurate and reliable. However, GE Intelligent

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

Mobile On the Go (OTG) Server

Mobile On the Go (OTG) Server Mobile On the Go (OTG) Server Installation Guide Paramount Technologies, Inc. 1374 East West Maple Road Walled Lake, MI 48390-3765 Phone 248.960.0909 Fax 248.960.1919 www.paramountworkplace.com Copyright

More information

User Scripting April 14, 2018

User Scripting April 14, 2018 April 14, 2018 Copyright 2013, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and

More information

Compatibility Matrix. BlackBerry UEM. December 22, 2016

Compatibility Matrix. BlackBerry UEM. December 22, 2016 Compatibility Matrix BlackBerry UEM December 22, 2016 Published: 2016-12-22 SWD-20161220124335071 Contents Introduction... 4 Legend... 4 BlackBerry UEM server...5 Operating system...5 Database server...5

More information

Reference Guide VIB 10/11. (VIB 10 pictured) vehicle integration box

Reference Guide VIB 10/11. (VIB 10 pictured) vehicle integration box VIB 10/11 Reference Guide (VIB 10 pictured) vehicle integration box 2006 2008 Garmin Ltd. or its subsidiaries Garmin International, Inc. Garmin (Europe) Ltd. 1200 East 151st Street, Liberty House Olathe,

More information

Terms and Conditions 01 January 2016

Terms and Conditions 01 January 2016 Terms and Conditions 01 January 2016 thehealthsource: Terms and Conditions Page 1 of 7 This Agreement (the Agreement ) is entered into by and between thehealthsource (Pty) Ltd and the entity agreeing to

More information

These terms and conditions outline the rules and regulations for the use of Duxbury Networking's Website.

These terms and conditions outline the rules and regulations for the use of Duxbury Networking's Website. Welcome to Duxbury Networking! Introduction These terms and conditions outline the rules and regulations for the use of Duxbury Networking's Website. Duxbury Networking is located at: Block 1 Riviera Office

More information