ArcSight Variable and Operators HOWTO

Size: px
Start display at page:

Download "ArcSight Variable and Operators HOWTO"

Transcription

1 ArcSight Variable and Operators HOWTO Descriptions and examples of some of the ArcSight variables and operators. Document Version

2 Copyright & Confidentiality Statements This document is Copyright Networks Ltd All rights reserved. The contents of this document may not be copied or duplicated in any form, in whole or in part, without the prior written permission of Networks Ltd. The information in this document is subject to change without notice. Networks Ltd shall not be liable for any damages resulting from technical errors or omissions which may be present in this document, or from use of this document. This document is an unpublished work protected by the United Kingdom copyright laws and is proprietary to Networks Ltd. Disclosure, copying, reproduction, merger, translation, modification, enhancement, or use of this document by anyone other than authorised employees, authorised users, or licensees of Networks Ltd without the prior written consent of Networks Ltd is prohibited. Document Information Name: ArcSight Variable and Operators HOWTO Version: Document Version 1.0 Publication Date: 23 September 2013 Classification: Prepared by: Mark Johnston Document Status: Final Document Control Version Date Author Change Summary Document Version /09/2013 Mark Johnston Final

3 Contents Copyright & Confidentiality Statements... 2 Document Information... 2 Document Control... 2 Introduction... 5 Background... 5 EvaluateVelocityTemplate... 5 General... 5 Location... 5 Example Search for usernames matching the pattern 1 character followed by 5 digits... 5 Example Compare ActiveList Entry to a regular expression (regex)... 6 Example String Substitution... 8 Example String Substitution Expanded (useful for activel:104)... 9 Example Sub Strings... 9 Example Conditional String Checks... 9 Example Others... 9 JavaMathematicalExpression General Location Notes Example Add 10 to the value of devicecustomnumber Example Calculate distance in KM s given latitude and longitude of two locations Active List Contains General Notes Like Logical Operator General Location Notes Example Simple Matching Matches Logical Operator General Location

4 Notes Example Search for an IP address in a String Example Search for the domain in a string Example Search for usernames matching the pattern 1 character followed by 5 digits

5 Introduction Background ArcSight provides a number of variables and operators that can be used within Content to help massage and search through event data. This document looks at some of the more useful variables and operators for which there is little existing documentation. EvaluateVelocityTemplate General Velocity is a java based template engine developed by the apache foundation. It provides a language to reference objects defined in java code. Further information on Velocity can be found at Below is a table of the most common operators used in Velocity. Specifically for ArcSight the evaluate_velocity_template variable allows interaction via the velocity language with ArcSight event information and other ArcSight variables. The variable is available for most resources. As an example, it could be used in an Active Channel (by implementing FieldSets) to give an Analyst an immediate view on rule fire information in a column. Location The EvaluateVelocityTemplate function is found under Variables (local or global) String EvaluateVelocityTemplate Example Search for usernames matching the pattern 1 character followed by 5 digits evaluate_velocity_template(#if($message.matches( [A-Za-z]\d{5} ))matches#else notmatches#end)

6 Example Compare ActiveList Entry to a regular expression (regex) Create an Active list with sample values Create global variable with local variables used to extract AL information Set actual global variable using local variables (calling $userdata which is local to the global) Set the event field reason with the global variable value

7 Insert some test data, and we see the reason field being set with appropriate info Global variable can also be used in conditions Setting the reason field to This works to test use of global variable in conditions

8 Channel with results This can also be done locally within the rule if running an older version of ESM Matches logical operator can also be used to test for the match Example String Substitution evaluate_velocity_template(#set($tempvar=$message)$tempvar.replaceall( x, y )) evaluate_velocity_template(#set($tempvar=$message)$tempvar.replaceall( [^x], y )) Assume message string user:mark:stuffhere:otherstuff:12345 and only want to return user value evaluate_velocity_template(#set($tempvar=$message)$tempvar.replaceall( user:([^:]+).*, $1 ))

9 Example String Substitution Expanded (useful for activel:104) Assume that activelist expiry comes from a list with two columns, rather than using indexof String1 is evaluate_velocity_template($devicecustomstring4.replaceall( ([^\ ]*)\ ([^\ ]*), $1 ) String2 is evaluate_velocity_template($devicecustomstring4.replaceall( ([^\ ]*)\ ([^\ ]*), $2 ) Example Sub Strings Assume message string of xx yy zz evaluate_velocity_template($message.substring(3,5)), which will return yy evaluate_velocity_template($message.substring(0,$message.indexof( ))), which will return xx evaluate_velocity_template($message.substring($message.lastindexof( ),8)) will return zz Example Conditional String Checks evaluate_velocity_template(#if($message== test )Matches#else Not_Matches#end evaluate_velocity_template(#if($message== test )ret_test#elseif($message== other )ret_other#else No_Match#end evaluate_velocity_template(#if($message!= test )No Match#else Match#end Example Others Multiple VM expressions in single template evaluate_velocity_template(#set($tempvar=$message.length())#if($tempvar > 10)Large#else Small#end

10 JavaMathematicalExpression General The function allows for Java mathematical expressions to be applied against fields (numerical only) within ArcSight. This function is not available under all resources, but can be used with Rules, Filters, Data Monitors and FieldSets. By virtue of being available in FieldSets, this function can thus be used within Active Channels. See for the available mathematical functions. Location The JavaMathematicalExpression function is found under Variables (local or global) Arithmetic JavaMathematicalExpression Notes ArcSight fields are referenced WITHOUT the $ within the expression. For example devicecustomnumber1 + 1 Example Add 10 to the value of devicecustomnumber1 evaluate_jep(devicecustomnumber1 + 10) Example Calculate distance in KM s given latitude and longitude of two locations The variables

11 The screenshot showing the results (validated with online calculator)

12 Active List Contains General Active list contains is not currently supported by ArcSight. However during our testing it was possible to extract regex expressions from an Active List and have those compared against respective string values. The screenshots below show the implementation. Notes It may be possible to achieve the activelist contains by using the ESM plugin. The plugin allows for the interaction of custom java code with events before they are written to or retrieved from the database. Create the activelist, must have a key field in order to be looked up. Insert all regex into regex expr field with a separator

13 Extract the regex expr values and then break them down (like activelist:104). Once broken down evaluate each regex expression against the field required. Screenshot showing the results

14 Like Logical Operator General The ArcSight LIKE rule operator functions exactly the same as the SQL LIKE condition with the exception of not being able to use escape characters (escape characters are used to match literal % or _ ). For the SQL LIKE condition there are two wildcard matches, these being % and _. The % allows matching of any string of any length (including zero length). The _ allows matching on a single character. Location Like is a logical operator and thus can be found under Event Conditions, in the Common Conditions Editor. Notes Variables cannot be used for comparison. For example Message Like $test Example Simple Matching Given event.message = hello the following will work: Message Like %ell% Message Like h% Message Like hell_ Message Like %ell_

15 Matches Logical Operator General The ArcSight MATCHES logical operator provides the capability to use regular expressions in rule conditions only for string matching. The regex engine is based upon Perl 5 syntax, and within ArcSight the regular expression must match the entire string to be true (wildcards can be used). Location The logical operator can only be used within Rules. Notes Commas cannot be used within the regular expression (ArcSight limitation). For example you cannot stipulate min and max occurrences \d+{1,3}. If shorthand character classes are used (or any other classes that use a \ ) e.g..*\d+\.\d+\.\d+\.\d+.* the rule editor will automatically insert the escaping \ and encapsulate the expression in quotes when the OK button is clicked. Example Search for an IP address in a String Assume event.message = Check for IP in this field Message Matches.*\\d+\\.\\d+\\.\\d+\\.\\d+.* Example Search for the domain in a string Assume event.message = From mark.johnston@accumuli.com to outside Message Matches.*@accumuli.com.* Example Search for usernames matching the pattern 1 character followed by 5 digits Assume event.destinationusername = I12345 Assume event.destinationusername = x12345 Destination User Name Matches [A-Za-z]\\d{5}

Navigation & Messaging User Guide

Navigation & Messaging User Guide for the Garmin nüvi Navigation & Messaging User Guide COPYRIGHT NOTICE This is an unpublished work protected by the United States copyright laws and is proprietary to Teletrac, Inc. and its affiliates.

More information

Teletrac Drive. Navigation & Messaging User Guide _TeletracDrive_UserGuide_Garmin_Nav.Msg-Ryder_r2.1

Teletrac Drive. Navigation & Messaging User Guide _TeletracDrive_UserGuide_Garmin_Nav.Msg-Ryder_r2.1 Teletrac Drive Navigation & Messaging User Guide COPYRIGHT NOTICE This is an unpublished work protected by the United States copyright laws and is proprietary to Teletrac, Inc. and its affiliates. Disclosure,

More information

Release Release 1.95 v.1 03/08/15 Intended Audience: NCP Clients

Release Release 1.95 v.1 03/08/15 Intended Audience: NCP Clients l Release 1.95 Release 1.95 v.1 03/08/15 Intended Audience: NCP Clients Notice This document is covered by any Non-Disclosure Agreement that has been signed with NCP Solutions, LLC and all information

More information

HPE Security ArcSight ESM

HPE Security ArcSight ESM HPE Security ArcSight ESM Software Version: 7.0 Cases Editor UI Customization Tech Note April 20, 2018 Legal Notices Warranty The only warranties for Hewlett Packard Enterprise products and services are

More information

User Guide Infoblox IPAM Driver for Docker. Version 1.0.1

User Guide Infoblox IPAM Driver for Docker. Version 1.0.1 User Guide Infoblox IPAM Driver for Docker Version 1.0.1 Copyright Statements 2017, Infoblox Inc. All rights reserved. The contents of this document may not be copied or duplicated in any form, in whole

More information

Device Status Monitoring Content Pack User Guide v 0.1 Beta Secmon Ltd, trading as EdgeSeven

Device Status Monitoring Content Pack User Guide v 0.1 Beta Secmon Ltd, trading as EdgeSeven Device Status Monitoring Content Pack User Guide v 0.1 Beta 2011 Secmon Ltd, trading as EdgeSeven This document may not be copied, modified, shared or released without prior consent of the author. Permission

More information

Docusnap X User Management. Managing User Access to Docusnap

Docusnap X User Management. Managing User Access to Docusnap Docusnap X User Management Managing User Access to Docusnap TITLE Docusnap X User Management AUTHOR Docusnap Consulting DATE 12/18/2018 VERSION 1.1 valid from September 26, 2018 This document contains

More information

Oracle Alert Documentation Updates

Oracle Alert Documentation Updates Oracle Alert Documentation Updates RELEASE 11.0.1 June 1998 Copyright 1998, Oracle Corporation. All rights reserved. The Programs (which include both the software and documentation) contain proprietary

More information

ADVANCED DATABASE Syllabus Version 2.0

ADVANCED DATABASE Syllabus Version 2.0 ECDL MODULE ADVANCED DATABASE Syllabus Version 2.0 Purpose This document details the syllabus for the Advanced Database module. The syllabus describes, through learning outcomes, the knowledge and skills

More information

Security Console Drop Down Menu Items. Version 2015

Security Console Drop Down Menu Items. Version 2015 Security Console Drop Down Menu Items Version 2015 Contents Overview... 3 Mapping Previous to Current... 4 The Access Group of Menu Items... 5 Access User Role Membership... 5 Access - Zones... 5 Access

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

JD Edwards EnterpriseOne 8.12 Standalone Client Installation Guide. for the Oracle Application Server

JD Edwards EnterpriseOne 8.12 Standalone Client Installation Guide. for the Oracle Application Server JD Edwards EnterpriseOne 8.12 Standalone Client Installation Guide for the Oracle Application Server April 2006 JD Edwards EnterpriseOne 8.12 Standalone Client Installation Guide Copyright 2006, Oracle.

More information

Tivoli Management Solution for Microsoft SQL. Rule Designer. Version 1.1

Tivoli Management Solution for Microsoft SQL. Rule Designer. Version 1.1 Tivoli Management Solution for Microsoft SQL Rule Designer Version 1.1 Tivoli Management Solution for Microsoft SQL Rule Designer Version 1.1 Tivoli Management Solution for Microsoft SQL Copyright Notice

More information

Configuration Guide. SmartConnector for Apache Tomcat File. February 14, 2014

Configuration Guide. SmartConnector for Apache Tomcat File. February 14, 2014 SmartConnector for Apache Tomcat File February 14, 2014 SmartConnector for Apache Tomcat File February 14, 2014 Copyright 2013, 2014 Hewlett-Packard Development Company, L.P.Confidential computer software.

More information

MySQL and PHP - Developing Dynamic Web Applications

MySQL and PHP - Developing Dynamic Web Applications MySQL and PHP - Developing Dynamic Web Applications Student Guide SQL-4405 Rev 2.0 D62048GC10 Edition 1.0 D63883 Copyright 2010, Oracle and/or its affiliates. All rights reserved. Disclaimer This document

More information

FmPro Migrator. FileMaker to FileMaker 7 Quickstart Guide. .com Solutions Inc. Overview. Step 1.

FmPro Migrator. FileMaker to FileMaker 7 Quickstart Guide. .com Solutions Inc.   Overview. Step 1. FmPro Migrator for Windows.com Solutions Inc. Overview This quickstart guide provides step by step instructions for migrating individual FileMaker databases into a FileMaker 7 multi-table database structure.

More information

OpenPlant PowerPID. How to Add Service Key-in that Drives Component Template at Placement and Post Placement. Version 2.0

OpenPlant PowerPID. How to Add Service Key-in that Drives Component Template at Placement and Post Placement. Version 2.0 OpenPlant PowerPID How to Add Service Key-in that Drives Component Template at November 21, 2012 Trademarks Bentley, the B Bentley logo, MicroStation, ProjectWise and AutoPLANT are registered trademarks

More information

Siebel Project and Resource Management Administration Guide. Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013

Siebel Project and Resource Management Administration Guide. Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013 Siebel Project and Resource Management Administration Guide Siebel Innovation Pack 2013 Version 8.1/ September 2013 Copyright 2005, 2013 Oracle and/or its affiliates. All rights reserved. This software

More information

CS Unix Tools & Scripting

CS Unix Tools & Scripting Cornell University, Spring 2014 1 February 7, 2014 1 Slides evolved from previous versions by Hussam Abu-Libdeh and David Slater Regular Expression A new level of mastery over your data. Pattern matching

More information

MicroStrategy Desktop Quick Start Guide

MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop Quick Start Guide Version: 10.4 10.4, June 2017 Copyright 2017 by MicroStrategy Incorporated. All rights reserved. If you have not executed a written or electronic agreement with

More information

CA SiteMinder. Advanced Password Services Release Notes 12.52

CA SiteMinder. Advanced Password Services Release Notes 12.52 CA SiteMinder Advanced Password Services Release Notes 12.52 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA Mobile Device Management Configure Access Control for Using Exchange PowerShell cmdlets

CA Mobile Device Management Configure Access Control for  Using Exchange PowerShell cmdlets CA Mobile Device Management Configure Access Control for Email Using Exchange PowerShell cmdlets This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter

More information

Functional Programming

Functional Programming Functional Programming CS331 Chapter 14 Functional Programming Original functional language is LISP LISt Processing The list is the fundamental data structure Developed by John McCarthy in the 60 s Used

More information

Commission Plan Support for Microsoft Professional Services Tools Library. For Microsoft Dynamics GP versions:

Commission Plan Support for Microsoft Professional Services Tools Library. For Microsoft Dynamics GP versions: Commission Plan Support for Microsoft Professional Services Tools Library For Microsoft Dynamics GP versions: 2018 2016 2015 2013 2010 10 1 Copyright Manual copyright 2011 EthoTech, Inc. All rights reserved.

More information

Synchronise Contacts with MS Outlook. Version 2015

Synchronise Contacts with MS Outlook. Version 2015 Synchronise Contacts with MS Outlook Version 2015 Contents Introduction... 3 Subject Objectives... 3 Synchronise Contacts with Outlook... 3 Synchronising Contacts with Outlook... 4 Synchronisation Options...

More information

TestPartner. Active Object Recognition (AOR) Training Guide

TestPartner. Active Object Recognition (AOR) Training Guide TestPartner Active Object Recognition (AOR) Training Guide Customer support is available from our Customer Support Hotline or via our FrontLine Support Web site. Technology Customer Support Compuware Corporation

More information

Installation guide. WebChick. Installation guide for use on local PC

Installation guide. WebChick. Installation guide for use on local PC WebChick Installation guide for use on local PC Version 1.0 Agrologic Ltd. Author: Valery M. Published: March 2011 1 Table of Contents Copyright Information... 3 Abstract... 4 Overview:... 4 System Requirements

More information

ER/Studio Enterprise Portal 1.1 New Features Guide

ER/Studio Enterprise Portal 1.1 New Features Guide ER/Studio Enterprise Portal 1.1 New Features Guide 2nd Edition, April 16/2009 Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco,

More information

Microsoft Dynamics GP. Extender User s Guide

Microsoft Dynamics GP. Extender User s Guide Microsoft Dynamics GP Extender User s Guide Copyright Copyright 2009 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without

More information

CA SSO. Agent for Oracle PeopleSoft Release Notes. r12.51

CA SSO. Agent for Oracle PeopleSoft Release Notes. r12.51 CA SSO Agent for Oracle PeopleSoft Release Notes r12.51 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation ),

More information

Edition 1.1 PVCS. Dimensions. Content Manager Integration Guide

Edition 1.1 PVCS. Dimensions. Content Manager Integration Guide Edition 1.1 PVCS Dimensions Content Manager Integration Guide Copyright 2001 MERANT. All rights reserved. Printed in the U.S.A. DataDirect, INTERSOLV, Micro Focus, Net Express and PVCS are registered trademarks,

More information

OpenPlant PowerPID. Inline Component Tag from Pipeline Tag. Version 1.0

OpenPlant PowerPID. Inline Component Tag from Pipeline Tag. Version 1.0 OpenPlant PowerPID Inline Component Tag from Pipeline Tag Initial Release April 11, 2014 Trademarks Bentley, the B Bentley logo, MicroStation, ProjectWise and AutoPLANT are registered trademarks of Bentley

More information

Micro Focus. Enterprise View. Dynamic Link Process Guide

Micro Focus. Enterprise View. Dynamic Link Process Guide Micro Focus Enterprise View Dynamic Link Process Guide Copyright 2007 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate,

More information

Operating Instructions

Operating Instructions Read this manual carefully before you use this service and keep it handy for future reference. About This Book Operating Instructions TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW: THE SUPPLIER SHALL

More information

Enterprise Content Management System Monitor 5.2

Enterprise Content Management System Monitor 5.2 Enterprise Content Management System Monitor 5.2 Filtering of events Based on message content Revision 1.0 2017-11-07 CENIT AG Author: Michael Wohland Based on: Documents by J. Poiger and S. Bettighofer

More information

721Start. Oracle Insurance Policy Administration. Release Notes. Version

721Start. Oracle Insurance Policy Administration. Release Notes. Version 721Start Oracle Insurance Policy Administration Release Notes Version 9.5.0.0 Document Part Number: E23638_01 June 2012 Copyright 2009, 2012, Oracle and/or its affiliates. All rights reserved. This software

More information

CCH Marketing. Version Release Notes

CCH  Marketing. Version Release Notes CCH Email Marketing Version 2012.4 Release Notes Legal Notice Disclaimer CCH Software has made every effort to ensure the accuracy and completeness of these Release Notes. However, CCH Software, its staff

More information

Micro Focus. Enterprise View. Installing Enterprise View

Micro Focus. Enterprise View. Installing Enterprise View Micro Focus Enterprise View Installing Enterprise View Copyright 2010 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate,

More information

Installation Guide. Infor HCM Workforce Management - Business Edition and higher

Installation Guide. Infor HCM Workforce Management - Business Edition and higher Installation Guide Infor HCM Workforce Management - Business Edition 5.0.5.0 and higher Copyright 2008 Infor. All rights reserved. The word and design marks set forth herein are trademarks and/or registered

More information

Administrator Guide. Flexible Storage

Administrator Guide. Flexible Storage Administrator Guide Flexible Storage Contents Introduction and Overview Define a plan Create/Change a user Other functionalities Introduction and Overview What is Flexible Storage? Sign in to the administrator

More information

Patch Management for Solaris

Patch Management for Solaris Patch Management for Solaris User s Guide User s Guide i Note: Before using this information and the product it supports, read the information in Notices. Copyright IBM Corporation 2003, 2011. US Government

More information

CA Productivity Accelerator 13.0 SYSTEM REQUIREMENTS. Type: System Requirements Date: CAP13SYR1

CA Productivity Accelerator 13.0 SYSTEM REQUIREMENTS. Type: System Requirements Date: CAP13SYR1 CA Productivity Accelerator 13.0 SYSTEM REQUIREMENTS Type: System Requirements Date: 2017-12-08 CAP13SYR1 Documentation Legal Notice This Documentation, which includes embedded help systems and electronically

More information

Oracle CRM Foundation

Oracle CRM Foundation Oracle CRM Foundation Concepts and Procedures Release 11i August 2000 Part No. A86099-01 Oracle CRM Foundation Concepts and Procedures, Release 11i Part No. A86099-01 Copyright 1996, 2000, Oracle Corporation.

More information

6.096 Introduction to C++ January (IAP) 2009

6.096 Introduction to C++ January (IAP) 2009 MIT OpenCourseWare http://ocw.mit.edu 6.096 Introduction to C++ January (IAP) 2009 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. Welcome to 6.096 Lecture

More information

Copyright

Copyright Displaying P6 EPPM Metrics in Oracle Enterprise Manager Release 8.1 September 2011 Copyright Oracle Primavera Displaying P6 EPPM Metrics in Oracle Enterprise Manager Copyright 2011, Oracle and/or its affiliates.

More information

Specification Change Document

Specification Change Document Specification Change Document WAP-209_102-MMSEncapsulation-20010928-a Version 28-Sep-2001 for Wireless Application Protocol WAP-209-MMSEncapsulation-20010601-a MMS Encapsulation Protocol Version 01-June-2001

More information

RELEASE NOTES. SSP Pure Broking Links to Document Pack Templates. Author: SSP. Version: 1.11

RELEASE NOTES. SSP Pure Broking Links to Document Pack Templates. Author: SSP. Version: 1.11 RELEASE NOTES SSP Pure Broking 1.11 Links to Document Pack Templates Author: SSP Version: 1.11 24 February 2012 Confidentiality Statement SSP Limited has prepared this document in good faith. Many factors

More information

HP Network Node Manager i Software Step-by-Step Guide to Scheduling Reports using Network Performance Server

HP Network Node Manager i Software Step-by-Step Guide to Scheduling Reports using Network Performance Server HP Network Node Manager i Software Step-by-Step Guide to Scheduling Reports using Network Performance Server NNMi 9.1x Patch 2 This document shows an example of building a daily report for the ispi Performance

More information

Government of Ontario IT Standard (GO-ITS) GO-ITS Number 30.7 OPS Backup & Restore Software Suite. Version #: 1.0 Status: Approved

Government of Ontario IT Standard (GO-ITS) GO-ITS Number 30.7 OPS Backup & Restore Software Suite. Version #: 1.0 Status: Approved Government of Ontario IT Standard (GO-ITS) GO-ITS Number 30.7 OPS Backup & Restore Software Suite Version #: 1.0 Status: Approved Prepared for the Information Technology Standards Council (ITSC) under

More information

SSA Baan R & D. User's Guide for PowerDOCS and CyberDOCS

SSA Baan R & D. User's Guide for PowerDOCS and CyberDOCS SSA Baan R & D User's Guide for PowerDOCS and CyberDOCS Copyright 2004 by Baan International B.V., a subsidiary of SSA Global Technologies, Inc. All rights reserved. No part of this publication may be

More information

Ascii Importer - Header Template. Author : Hans Kolind Pedersen Company : EIVA a/s Date: 10/06/ :41:00

Ascii Importer - Header Template. Author : Hans Kolind Pedersen Company : EIVA a/s Date: 10/06/ :41:00 Ascii Importer - Header Template Author : Hans Kolind Pedersen Company : EIVA a/s Date: 10/06/2010 08:41:00 Ascii Importer - Header Template Page 2 Introduction Contents Ascii Importer - Header Template...

More information

Micro Focus. Modernization Workbench. Installing MW Desktop Edition

Micro Focus. Modernization Workbench. Installing MW Desktop Edition Micro Focus Modernization Workbench Installing MW Desktop Edition Copyright 2010 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct

More information

HPE Security ArcSight Connectors

HPE Security ArcSight Connectors HPE Security ArcSight Connectors SmartConnector for Windows Event Log Unified: Microsoft Network Policy Server Supplemental Configuration Guide March 29, 2013 Supplemental Configuration Guide SmartConnector

More information

CA Software Change Manager for Mainframe

CA Software Change Manager for Mainframe CA Software Change Manager for Mainframe Reports Guide r12 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational

More information

BNF, EBNF Regular Expressions. Programming Languages,

BNF, EBNF Regular Expressions. Programming Languages, BNF, EBNF Regular Expressions Programming Languages, 234319 1 Reminder - (E)BNF A notation for describing the grammar of a language The notation consists of: Terminals: the actual legal strings, written

More information

SAP Workforce Performance Builder

SAP Workforce Performance Builder Additional Guides Workforce Performance Builder Document Version: 1.0 2016-07-15 2016 SAP SE or an SAP affiliate company. All rights reserved. CUSTOMER SAP Help Extension ECC Table of Contents 1 Introduction...

More information

EAGLEHAWK PANEL BUS DRIVER

EAGLEHAWK PANEL BUS DRIVER EAGLEHAWK PANEL BUS DRIVER User Guide Copyright 2016 Honeywell GmbH All Rights Reserved EN2Z-1013GE51 R0316 EAGLEHAWK PANEL BUS DRIVER USER GUIDE EN2Z-1013GE51 R0316 USER GUIDE EAGLEHAWK PANEL BUS DRIVER

More information

Infor LN Studio Application Development Guide

Infor LN Studio Application Development Guide Infor LN Studio Application Development Guide Copyright 2016 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential

More information

CA Unified Infrastructure Management

CA Unified Infrastructure Management CA Unified Infrastructure Management clariion Release Notes All series Copyright Notice This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal

More information

APM Import Tool. Product Guide

APM Import Tool. Product Guide APM Import Tool Product Guide This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational purposes only and is

More information

CA SiteMinder Web Access Manager. Configuring SiteMinder Single Sign On for Microsoft SharePoint 2007 Using Forms-based Authentication

CA SiteMinder Web Access Manager. Configuring SiteMinder Single Sign On for Microsoft SharePoint 2007 Using Forms-based Authentication CA SiteMinder Web Access Manager Configuring SiteMinder Single Sign On for Microsoft SharePoint 2007 Using Forms-based Authentication This documentation and any related computer software help programs

More information

Oracle is a registered trademark, and Oracle Rdb, Oracle RMU and Oracle SQL/Services are trademark or registered trademarks of Oracle Corporation.

Oracle is a registered trademark, and Oracle Rdb, Oracle RMU and Oracle SQL/Services are trademark or registered trademarks of Oracle Corporation. Oracle Rdb Data Provider for.net Release Notes V7.3 August 2007 Oracle Rdb Data Provider for.net Release Notes, Release 7.3 Copyright 2007 Oracle Corporation. All rights reserved. The Programs (which include

More information

Oracle Standard Management Pack

Oracle Standard Management Pack Oracle Standard Management Pack Readme Release 2.1.0.0.0 February 2000 Part No. A76911-01 Table Of Contents 1 Introduction 2 Compatibility 3 Documentation and Help 4 Oracle Performance Manager 5 Oracle

More information

Rhythmyx. Implementing Word. Version 5.7

Rhythmyx. Implementing Word. Version 5.7 Rhythmyx Implementing Word Version 5.7 Printed on 13 October, 2004 Copyright and Licensing Statement All intellectual property rights in the SOFTWARE and associated user documentation, implementation documentation,

More information

SAS Data Loader 2.4 for Hadoop

SAS Data Loader 2.4 for Hadoop SAS Data Loader 2.4 for Hadoop vapp Deployment Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2015. SAS Data Loader 2.4 for Hadoop: vapp Deployment

More information

BLUEPRINT REQUIREMENTS CENTER 2010 BLUEPRINT TEAM REPOSITORY VERSION 2. Administrator s Guide

BLUEPRINT REQUIREMENTS CENTER 2010 BLUEPRINT TEAM REPOSITORY VERSION 2. Administrator s Guide BLUEPRINT REQUIREMENTS CENTER 2010 BLUEPRINT TEAM REPOSITORY VERSION 2 September 2010 Contents Introduction... 2 Repository Configuration Files... 3 User Administration... 5 Appendix A. Instructions for

More information

Your First C++ Program. September 1, 2010

Your First C++ Program. September 1, 2010 Your First C++ Program September 1, 2010 Your First C++ Program //*********************************************************** // File name: hello.cpp // Author: Bob Smith // Date: 09/01/2010 // Purpose:

More information

Inventorying Microsoft Azure. Inventorying Microsoft Azure Information with Docusnap X

Inventorying Microsoft Azure. Inventorying Microsoft Azure Information with Docusnap X Inventorying Microsoft Azure Inventorying Microsoft Azure Information with Docusnap X TITLE Inventorying Microsoft Azure AUTHOR Docusnap Consulting DATE 2/7/2018 VERSION 1.0 valid from January 25, 2018

More information

Informatica Cloud Platform Building Connectors with the Toolkit Student Lab: Prerequisite Installations. Version Connectors Toolkit Training

Informatica Cloud Platform Building Connectors with the Toolkit Student Lab: Prerequisite Installations. Version Connectors Toolkit Training Informatica Cloud Platform Building Connectors with the Toolkit Student Lab: Prerequisite Installations Version Connectors Toolkit Training 2015-01 Informatica Cloud Platform Building Connectors with the

More information

How Do I: Find the Highest Elevation within an Area

How Do I: Find the Highest Elevation within an Area GeoMedia Grid: How Do I: Find the Highest Elevation within an Area Topics: Key Words: Tower Location, Site Location, Raster to Vector, and Vector to Raster Digital Elevation Models, Buffer Zone, and Zonal

More information

CSE 303 Lecture 7. Regular expressions, egrep, and sed. read Linux Pocket Guide pp , 73-74, 81

CSE 303 Lecture 7. Regular expressions, egrep, and sed. read Linux Pocket Guide pp , 73-74, 81 CSE 303 Lecture 7 Regular expressions, egrep, and sed read Linux Pocket Guide pp. 66-67, 73-74, 81 slides created by Marty Stepp http://www.cs.washington.edu/303/ 1 discuss reading #2 Lecture summary regular

More information

Oracle Cloud Using the Microsoft SQL Server Adapter. Release 17.3

Oracle Cloud Using the Microsoft SQL Server Adapter. Release 17.3 Oracle Cloud Using the Microsoft SQL Server Adapter Release 17.3 E71394-12 September 2017 Oracle Cloud Using the Microsoft SQL Server Adapter, Release 17.3 E71394-12 Copyright 2016, 2017, Oracle and/or

More information

CA Cloud Service Delivery Platform

CA Cloud Service Delivery Platform CA Cloud Service Delivery Platform Monitor Performance Release 1.1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

User guide H PIPartAligner for Renishaw OMV and Renishaw OMV Pro

User guide H PIPartAligner for Renishaw OMV and Renishaw OMV Pro User guide H-5369-8504 PIPartAligner for Renishaw OMV and Renishaw OMV Pro 2 PIPartAligner for Renishaw OMV and Renishaw OMV Pro 2013 Renishaw plc. All rights reserved. This document may not be copied

More information

KIWIRE 2.0 API Documentation. Version (February 2017)

KIWIRE 2.0 API Documentation. Version (February 2017) KIWIRE 2.0 API Documentation Version 1.0.0 (February 2017) 1 Proprietary Information Notice This document is proprietary to Synchroweb (M) Sdn Bhd. By utilizing this document, the recipient agrees to avoid

More information

Deltek Touch CRM for Vision. User Guide

Deltek Touch CRM for Vision. User Guide Deltek Touch CRM for Vision User Guide September 2017 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical or technical errors may exist.

More information

MiVoice Office Call Reporter Quick Reference Guide SEPTEMBER 2018 DOCUMENT RELEASE 5.1 QUICK REFERENCE GUIDE

MiVoice Office Call Reporter Quick Reference Guide SEPTEMBER 2018 DOCUMENT RELEASE 5.1 QUICK REFERENCE GUIDE MiVoice Office Call Reporter SEPTEMBER 2018 DOCUMENT RELEASE 5.1 QUICK REFERENCE GUIDE NOTICE The information contained in this document is believed to be accurate in all respects but is not warranted

More information

Trustwave SEG Cloud Customer Guide

Trustwave SEG Cloud Customer Guide Trustwave SEG Cloud Customer Guide Legal Notice Copyright 2017 Trustwave Holdings, Inc. All rights reserved. This document is protected by copyright and any distribution, reproduction, copying, or decompilation

More information

Oracle Data Profiling and Oracle Data Quality for Data Integrator Sample Tutorial 11g Release 1 ( )

Oracle Data Profiling and Oracle Data Quality for Data Integrator Sample Tutorial 11g Release 1 ( ) Oracle Data Profiling and Oracle Data Quality for Data Integrator Sample Tutorial 11g Release 1 (11.1.1.3) January 2011 1 Oracle Data Profiling and Oracle Data Quality for Data Integrator Sample Tutorial,

More information

SAS Data Loader 2.4 for Hadoop: User s Guide

SAS Data Loader 2.4 for Hadoop: User s Guide SAS Data Loader 2.4 for Hadoop: User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2016. SAS Data Loader 2.4 for Hadoop: User s Guide. Cary,

More information

Deltek Maconomy. Installation Guide For Standard and PSO Installations

Deltek Maconomy. Installation Guide For Standard and PSO Installations Deltek Maconomy Installation Guide For Standard and PSO Installations March 10, 2016 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical

More information

EASY TIME & ATTENDANCE POWERED BY THE CLOUD USER MANUAL. English Nederlands Deutsch Français Español Italiano

EASY TIME & ATTENDANCE POWERED BY THE CLOUD USER MANUAL. English Nederlands Deutsch Français Español Italiano EASY TIME & ATTENDANCE POWERED BY THE CLOUD USER MANUAL English Nederlands Deutsch Français Español Italiano TABLE OF CONTENTS 01 Connecting a Safescan TA terminal to TimeMoto page xx 02 Creating new users

More information

CA Workload Automation Agent for Micro Focus

CA Workload Automation Agent for Micro Focus CA Workload Automation Agent for Micro Focus Release Notes r11.3.3 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Deltek Touch CRM for GovWin Capture Management. User Guide

Deltek Touch CRM for GovWin Capture Management. User Guide Deltek Touch CRM for GovWin Capture Management User Guide September 2017 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical or technical

More information

Oracle Cloud Oracle Machine Learning User s Guide

Oracle Cloud Oracle Machine Learning User s Guide Oracle Cloud Oracle Machine Learning User s Guide E78525-07 May 2018 Oracle Cloud Oracle Machine Learning User s Guide, E78525-07 Copyright 2017, 2018, Oracle and/or its affiliates. All rights reserved.

More information

An Oracle White Paper September Security and the Oracle Database Cloud Service

An Oracle White Paper September Security and the Oracle Database Cloud Service An Oracle White Paper September 2012 Security and the Oracle Database Cloud Service 1 Table of Contents Overview... 3 Security architecture... 4 User areas... 4 Accounts... 4 Identity Domains... 4 Database

More information

Cover Page. Content Server User Guide 10g Release 3 ( )

Cover Page. Content Server User Guide 10g Release 3 ( ) Cover Page Content Server User Guide 10g Release 3 (10.1.3.3.0) March 2007 Content Server User Guide, 10g Release 3 (10.1.3.3.0) Copyright 2007, Oracle. All rights reserved. Contributing Authors: Bruce

More information

Electronic Invoicing 6.0 Final Invoice Packaging Reference. January 2018

Electronic Invoicing 6.0 Final Invoice Packaging Reference. January 2018 Electronic Invoicing 6.0 Final Invoice Packaging Reference January 2018 Copyright Information While EleVia Software has attempted to make the information in this document accurate and complete, some typographical

More information

Vi & Shell Scripting

Vi & Shell Scripting Vi & Shell Scripting Comp-206 : Introduction to Week 3 Joseph Vybihal Computer Science McGill University Announcements Sina Meraji's office hours Trottier 3rd floor open area Tuesday 1:30 2:30 PM Thursday

More information

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need. Installing and Updating Local Software Packages 12c Release

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need. Installing and Updating Local Software Packages 12c Release Oracle Enterprise Manager Ops Center Installing and Updating Local Software Packages 12c Release 12.1.2.0.0 E37233-01 November 2012 This guide provides an end-to-end example for how to use Oracle Enterprise

More information

TECHILA DISTRIBUTED COMPUTING ENGINE BUNDLE GUIDE

TECHILA DISTRIBUTED COMPUTING ENGINE BUNDLE GUIDE ENGINE BUNDLE GUIDE 28 NOVEMBER 2016 2/82 28 NOVEMBER 2016 Disclaimer Techila Technologies Ltd. disclaims any and all warranties, express, implied or statutory regarding this document or the use of thereof

More information

Grep and Shell Programming

Grep and Shell Programming Grep and Shell Programming Comp-206 : Introduction to Software Systems Lecture 7 Alexandre Denault Computer Science McGill University Fall 2006 Teacher's Assistants Michael Hawker Monday, 14h30 to 16h30

More information

Oracle Health Sciences WebSDM and Empirica Study

Oracle Health Sciences WebSDM and Empirica Study Oracle Health Sciences WebSDM and Empirica Study Upgrade Instructions Release 3.1.2.1 for Windows 2003/2008 Server E40536-01 October 2014 Upgrade Instructions, Release 3.1.2.1 for Windows 2003/2008 Server

More information

Oracle Cloud Using the Microsoft SQL Server Adapter with Oracle Autonomous Integration Cloud

Oracle Cloud Using the Microsoft SQL Server Adapter with Oracle Autonomous Integration Cloud Oracle Cloud Using the Microsoft SQL Server Adapter with Oracle Autonomous Integration Cloud E85522-03 May 2018 Oracle Cloud Using the Microsoft SQL Server Adapter with Oracle Autonomous Integration Cloud,

More information

Regular Expressions. Computer Science and Engineering College of Engineering The Ohio State University. Lecture 9

Regular Expressions. Computer Science and Engineering College of Engineering The Ohio State University. Lecture 9 Regular Expressions Computer Science and Engineering College of Engineering The Ohio State University Lecture 9 Language Definition: a set of strings Examples Activity: For each above, find (the cardinality

More information

Micro Focus. Enterprise View. MVS Custom Agent - API

Micro Focus. Enterprise View. MVS Custom Agent - API Micro Focus Enterprise View MVS Custom Agent - API Copyright 2008 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate,

More information

How To...Use a Debugging Script to Easily Create a Test Environment for a SQL-Script Planning Function in PAK

How To...Use a Debugging Script to Easily Create a Test Environment for a SQL-Script Planning Function in PAK SAP NetWeaver SAP How-To NetWeaver Guide How-To Guide How To...Use a Debugging Script to Easily Create a Test Environment for a SQL-Script Planning Function in PAK Applicable Releases: SAP NetWeaver BW

More information

CA PMA Chargeback. Release Notes. Release

CA PMA Chargeback. Release Notes. Release CA PMA Chargeback Release Notes Release 12.6.00 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for

More information

DeskAlerts SSO Configuration Guide

DeskAlerts SSO Configuration Guide DeskAlerts SSO Configuration Guide Reproduction of this guide in whole or in part, by any means whatsoever, is prohibited without the prior written consent of the publisher. DeskAlerts SSO (Single Sign

More information

Infoblox Installation Guide vnios for Xen. Page 1

Infoblox Installation Guide vnios for Xen. Page 1 Infoblox Installation Guide vnios for Xen Page 1 1. Infoblox Installation Guide vnios for Xen................................................................ 3 1.1 About vnios Virtual Appliance for XenServer..........................................................

More information