Conversion Agent COM API Reference. SAP Conversion Agent by Informatica (Version 8.5)

Size: px
Start display at page:

Download "Conversion Agent COM API Reference. SAP Conversion Agent by Informatica (Version 8.5)"

Transcription

1 Conversion Agent COM API Reference SAP Conversion Agent by Informatica (Version 8.5)

2 SAP Conversion Agent COM API Reference Version 8.5 June 2008 Copyright (c) Informatica Corporation. All rights reserved. This software and documentation contain proprietary information of Informatica Corporation and are provided under a license agreement containing restrictions on use and disclosure and are also protected by copyright law. Reverse engineering of the software is prohibited. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise) without prior consent of Informatica Corporation. This Software is protected by U.S. Patent Numbers and other Patents Pending. Use, duplication, or disclosure of the Software by the U.S. Government is subject to the restrictions set forth in the applicable software license agreement and as provided in DFARS (a) and (a) (1995), DFARS (c)(1)(ii) (OCT 1988), FAR (a) (1995), FAR , or FAR (ALT III), as applicable. The information in this software and documentation is subject to change without notice. Informatica Corporation does not warrant that this software or documentation is error free. Informatica, PowerCenter, PowerCenterRT, PowerCenter Connect, PowerCenter Data Analyzer, PowerExchange, PowerMart, Metadata Manager, Informatica Data Quality, Informatica Data Explorer, Informatica Complex Data Exchange, Informatica On Demand Data Replicator, and Informatica B2B Data Exchange are trademarks or registered trademarks of Informatica Corporation in the United States and in jurisdictions throughout the world. All other company and product names may be trade names or trademarks of their respective owners. Portions of this software and/or documentation are subject to copyright held by third parties, including without limitation: Copyright Sun Microsystems. All rights reserved. Copyright Adobe Systems Inc. All rights reserved. Copyright Glyph & Cog, LLC. All rights reserved. This product includes software developed by Boost ( Permissions and limitations regarding this software are subject to terms available at LICENSE_1_0.txt. This product includes software developed by Mozilla ( Your right to use such materials is set forth in the GNU Lesser General Public License Agreement, which may be found at The Mozilla materials are provided free of charge by Informatica, as-is, without warranty of any kind, either express or implied, including but not limited to the implied warranties of merchantability and fitness for a particular purpose. This product includes software developed by the Apache Software Foundation ( which is licensed under the Apache License, Version 2.0 (the License ). You may obtain a copy of the License at Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. This product includes software developed by SourceForge ( Your right to use such materials is set forth in the GNU Lesser General Public License Agreement, which may be found at The SourceForge materials are provided free of charge by Informatica, as-is, without warranty of any kind, either express or implied, including but not limited to the implied warranties of merchantability and fitness for a particular purpose. This product includes Curl software which is Copyright , Daniel Stenberg, <daniel@haxx.se>. All Rights Reserved. Permissions and limitations regarding this software are subject to terms available at Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. This product includes ICU software which is Copyright (c) International Business Machines Corporation and others. All rights reserved. Permissions and limitations regarding this software are subject to terms available at This product includes OSSP UUID software which is Copyright (c) 2002 Ralf S. Engelschall, Copyright (c) 2002 The OSSP Project Copyright (c) 2002 Cable & Wireless Deutschland. Permissions and limitations regarding this software are subject to terms available at This product includes Eclipse software which is Copyright (c) 2007 The Eclipse Foundation. All Rights Reserved. Permissions and limitations regarding this software are subject to terms available at libstdc++ is distributed with this product subject to the terms related to the code set forth at DISCLAIMER: Informatica Corporation provides this documentation as is without warranty of any kind, either express or implied, including, but not limited to, the implied warranties of noninfringement, merchantability, or use for a particular purpose. The information provided in this documentation may include technical inaccuracies or typographical errors. Informatica could make improvements and/or changes in the products described in this documentation at any time without notice. Part Number: DT-COM

3 Table of Contents Preface v Obtaining Conversion Agent Documentation v Chapter 1: Overview Description of the COM API Platform Support Programming Language Support Getting Started Procedure for Using the API Sample Application RunCMService Function Main Program Chapter 2: Object Model Reference Overview CMDS Object GetServiceList Method CMRequest Object Input Methods Output Methods Request Generation Method CMEngine Object InitEngine Method Exec Method CMStatus Object IsGood Method GetDescription Method GetSeverity Method GetLogFile Method GetLogDirectory Method Chapter 3: Deprecated COM API Versions Overview CM_COM Implementation CMParsingEngine Object CM_COM2 Implementation Index iii

4 iv Table of Contents

5 Preface The Conversion Agent COM API Reference is written for developers who want to run transformations in a Microsoft COM programming environment. The book documents the COM object model for activating Conversion Agent services within a COM application. Obtaining Conversion Agent Documentation On Windows platforms, the Conversion Agent documentation is supplied as online help with the software. You can download PDF copies of the Conversion Agent manuals from: v

6 vi Preface

7 C HAPTER 1 Overview This chapter includes the following topics: Description of the COM API, 1 Sample Application, 2 Description of the COM API An application can run a Conversion Agent service by calling the Conversion Agent COM API. The API is multithreaded and re-entrant, supporting high throughput applications. The API activates Conversion Agent Engine. It enables you to: Retrieve the names of deployed Conversion Agent services. Define the service to run. Define the input location or type, such as a file path, URL, string, stream, or buffer. Define the output location or type, such as a file path, string, or stream. Run the service. Retrieve the execution status. Note: The COM API does not support streamers, service parameters, multiple inputs and outputs, or running Conversion Agent Engine out-of-process. To use those features, use one of the other Conversion Agent APIs. Platform Support The COM API runs on Microsoft Windows platforms. Programming Language Support The examples and syntax in this book are presented in Microsoft Visual Basic 6.0. You can program in any language that offers COM (ActiveX) support, such as Visual Basic.NET or Visual C++. 1

8 Getting Started For a hands-on lesson on using the COM API, see Getting Started with Conversion Agent. The lesson uses the COM API to program an application that runs a Conversion Agent service. The complete source code is provided. Procedure for Using the API The following is a typical procedure for using the COM API: 1. In Conversion Agent Studio, configure a transformation. 2. Deploy the transformation as a Conversion Agent service. For more information on steps 1 and 2, see the Conversion Agent Studio User Guide. 3. Program an application that calls the COM API to run the service. The application should perform the following operations: Optionally, use the CMDS object to retrieve the names of deployed Conversion Agent services. Use the CMRequest object to construct an execution request. The request specifies the service name and input/output locations or types. Use the CMEngine object to execute the request. Use the CMStatus object to retrieve the execution status, such as the return code and any error information. 4. Compile the application. 5. Install and run the application on a Windows host where Conversion Agent Engine is installed. Sample Application The following is a Visual Basic 6.0 application, which uses the COM API to run a Conversion Agent service. The Visual Basic project references the Conversion Agent COM API library, which is called CM_COM3 1.0 Type Library (CM_COM3.dll). RunCMService Function The application contains a RunCMService function, which calls the COM API. The function accepts a buffer storing the input of a transformation. It generates the output as a string. The parameters are: strservice String In The name of the Conversion Agent service. varbufin Variant In An input buffer containing the source document of the transformation.the buffer can contain either text or binary input. lngbufinlength Long In The length of the input buffer in bytes. stroutput String Out A string containing the output of the transformation. In case of an error, the string contains an error message. Return value Integer Out 1 if the service ran successfully. Source Code Function RunCMService( _ 2 Chapter 1: Overview

9 strservice As String, _ varbufin As Variant, _ lngbufinlength As Long, _ stroutput As String) _ As Boolean Dim objcmengine As CM_COM3Lib.CMEngine Dim objcmrequest As CM_COM3Lib.CMRequest Dim objcmstatus As CM_COM3Lib.CMStatus Dim strrequest As String Dim strstatus As String 'Generate a request string Set objcmrequest = New CM_COM3Lib.CMRequest strrequest = objcmrequest.generate( _ strservice, _ objcmrequest.bufferinput(lngbufinlength), _ objcmrequest.textoutput, _ "", "", "") 'Initialize Conversion Agent Engine Set objcmengine = New CM_COM3Lib.CMEngine strstatus = objcmengine.initengine() 'If the initialization failed, return the status string to the caller Set objcmstatus = New CM_COM3Lib.CMStatus If objcmstatus.isgood(strstatus) <> 1 Then stroutput = strstatus RunCMService = False Exit Function End If 'Execute the request strstatus = objcmengine.exec( _ strrequest, varbufin, "", stroutput) 'Return 1 for success or 0 for failure If objcmstatus.isgood(strstatus) = 1 Then RunCMService = True Else 'If the service failed, return the status string to the caller stroutput = strstatus RunCMService = False End If 'Termination Set objcmrequest = Nothing Set objcmengine = Nothing Set objcmstatus = Nothing End Function Main Program The main program prepares the input, calls the RunCMService function, and displays the output. The program assumes that the Conversion Agent service accepts input that is encoded in the system code page. The code perform the following operations: 1. It sets the input to the string "abcdef120". 2. It stores the input in a buffer. 3. By default, Visual Basic stores strings in the Unicode encoding. The code converts the input to the system code page. 4. The code calls RunCMService., requesting that Conversion Agent run a service called Parser1 on the input. 5. If RunCMService succeeds, the code displays the XML output that Parser1 generated. If RunCMService fails, the code displays an error message. Source Code Dim stroutput As String Dim lngbufinlength As Long Dim inp As String Dim BufIn As String 'Assign the input inp = "abcdef120" Sample Application 3

10 lngbufinlength = Len(inp) 'Convert the input from a Unicode representation to the system code page BufIn = StrConv(inp, vbfromunicode) 'Run the Conversion Agent service If RunCMService("Parser1", BufIn, lngbufinlength, stroutput) Then 'If the service succeeded, display its output MsgBox "Returned: " & stroutput Else 'If the service failed, display the error message MsgBox "Error: " & stroutput End If 4 Chapter 1: Overview

11 C HAPTER 2 Object Model Reference This chapter includes the following topics: Overview, 5 CMDS Object, 5 CMRequest Object, 6 CMEngine Object, 9 CMStatus Object, 10 Overview The COM API is defined in the file CM_COM3.dll, which is located in the Conversion Agent program folder. By default, the location is c:\program Files\SAP\ConversionAgent\bin. In the Visual Basic project references, the file is called the CM_COM3 1.0 Type Library. The library provides four COM objects: Object CMDS CMRequest CMEngine CMStatus Description Retrieves the names of Conversion Agent services. For more information, see CMDS Object on page 5. Generates a request string, which contains instructions for Conversion Agent Engine such as the service to run and the input/output locations. For more information, see CMRequest Object on page 6. Executes the request in Conversion Agent Engine. For more information, see CMEngine Object on page 9. Retrieves information about the status of Conversion Agent Engine operations, such as the return code and error descriptions. For more information, see CMStatus Object on page 10. CMDS Object This object lets you access the Conversion Agent repository. The object exposes the ICMDS interface. 5

12 GetServiceList Method Function GetServiceList() As String This method returns all deployed service names. Return value String Out A Unicode string containing all deployed service names. The names are separated by semicolons. CMRequest Object This object constructs request strings, which contain instructions for Conversion Agent Engine. A request string specifies: The Conversion Agent service to run The input location or format The output location or format Optionally, a user name and password that the service can use to access an HTTP server requiring authentication The object exposes the ICMRequest interface. To use the CMRequest object: 1. Call one of the input methods to define the input location. 2. Call one of the output methods to define the output location. 3. Pass the results of the input and output methods, along with other parameters such as the service name, to the request generation method. This generates the request string. 4. Pass the request specification to the CMEngine object, which executes the request. Input Methods The COM API supports input from a file, URL, string, buffer, or stream. For example, if you want the Conversion Agent service to parse a source document that is stored in a file, call the FileInput method. If the source document is available from a COM object that exposes the IStream interface, call the IStreamInput method. The return value of the methods is a Unicode string containing an input specification. FileInput Method Function FileInput(fileName As String) As String This method defines a file, where a service should obtain its input. filename String In A Unicode string containing the input file path and name. Return value String Out The input specification. TextInput Method Function TextInput(text As String) As String 6 Chapter 2: Object Model Reference

13 This method defines a Unicode string of up to 2 kb, which is the input of a service. The COM API translates the Unicode to ANSI according to the system code page. If you call TextInput, the input encoding of the Conversion Agent service must be the system code page. For better performance, use the BufferInput method rather than TextInput. text String In The input Unicode string. Return value String Out The input specification. UrlInput Method Function UrlInput(url As String) As String This method defines a URL, where a service should obtain its input. url String In A Unicode string containing the URL. Return value String Out The input specification. BufferInput Method Function BufferInput(size As Long) As String This method specifies that a service should obtain its input from a buffer. size Long In The buffer size, in bytes. Return value String Out The input specification. IStreamInput Method Function IStreamInput() As String This method specifies that a service should obtain its input from a stream, which is any object that exposes the Microsoft IStream interface. Return value String Out The input specification. Output Methods The COM API supports output to a file, string, or stream. For example, if you want the Conversion Agent service to write its output to a file, call the FileOutput method to define the filename. You can include an absolute path in the filename, or you can call one of the OutputLocation... methods to define the path. The return value of the methods is a Unicode string containing an output specification. FileOutput Method Function FileOutput(fileName As String) As String CMRequest Object 7

14 This method defines a file, where a service should write its output. filename String In A Unicode string containing the output filename. Optionally, the name can contain an absolute or relative path. A relative path is resolved relative to a folder that you specify in an OutputLocation... method. Return value String Out The output specification. OutputLocation... Methods If you called the FileOutput method without specifying an absolute path, call one of the following methods to define the folder location of the output. Function OutputLocationCurrrentFolder() As String Function OutputLocationResultFolder() As String Function OutputLocationSpecifyPath(Path as String) As String Function OutputLocationGUIDFolder(Path as String) As String The methods have the following explanations: Method OutputLocationCurrrentFolder OutputLocationResultFolder OutputLocationSpecifyPath OutputLocationGUIDFolder Description Specifies that Conversion Agent should store the output in the current folder. Specifies that Conversion Agent should store the output in the project Results folder. Specifies that Conversion Agent should store the output at a given absolute path. This method is the same as OutputLocationSpecifyPath, except that the output is stored in a system-generated subfolder of the path. The name of the subfolder is the service name followed by a GUID. The output of each request is stored in a separate subfolder. For example, if you call OutputLocationSpecifyPath("c:\temp"), Conversion Agent stores the output file in c:\temp. The methods have the following parameters: Path String In In the methods OutputLocationSpecifyPath and OutputLocationGUIDFolder, the output path. Return value String Out The output location specification. TextOutput Method Function TextOutput() As String This method specifies that a service should write its output to a string. Return value String Out The output specification. IStreamOutput Method Function IStreamOutput() As String 8 Chapter 2: Object Model Reference

15 This method specifies that a service should write its output to a stream, which is any object that exposes the Microsoft IStream interface. Return value String Out The output specification. Request Generation Method After you call the input and output methods, call the Generate method, which generates a request for processing in Conversion Agent Engine. Generate Method Function Generate( _ service As String, _ input As String, _ output As String, _ outputlocation As String, _ username As String, _ password As String) _ As String This method combines the results of the input and output methods with other parameters. It returns a Unicode request string, in the format required by the Exec method of the CMEngine object. The service and output parameters are required for all requests. The input parameter is recommended for all requests. If you omit it, the service runs on the input that is defined in the example_source property of the service. If the example_source of the service defines a document processor, the service applies it to the input. The username and password parameters are useful if the service accesses a web server that requires HTTP authentication. If they are non-empty, they override the user name and password that are defined in the project properties. service String In A Unicode string, containing the name of a service that Conversion Agent Engine should run. input String In The input specification, which is the return value of an input method. output String In The output specification, which is the return value of an output method. outputlocation String In For file output, the path specification, which is the return value of an OutputLocation... method. username String In A Unicode string, which contains a user name that the service should use for HTTP authentication. password String In A Unicode string, which contains a password that the service should use for HTTP authentication. Return value String Out The request string. CMEngine Object The CMEngine object executes a request in Conversion Agent Engine. The object exposes the ICMEngine interface. CMEngine Object 9

16 InitEngine Method Function InitEngine() As String This method initializes an instance of the Conversion Agent Engine. Call InitEngine when you first create a CMEngine object, before you call Exec. The code should confirm that InitEngine returns a success status. Otherwise, the output of Exec is unpredictable. Return value String Out A Unicode string containing a status report. For more information about interpreting the status report, see CMStatus Object on page 10. Exec Method Function Exec( _ request As String, _ input As Variant, _ output As Variant, _ outputstr As String) _ As String This method executes the service request. request String In The request string, which is the return value of the CMRequest.Generate method. For more information, see Request Generation Method on page 9. input Variant In An object containing the source document of the transformation: - For buffer input: the buffer object. In C++, it is a pointer to the buffer. - For stream input: the IStream object. In C++, it is a pointer to the IStream object. - For other input types: ignored. output Variant Out An object where the transformation writes its output: - For stream output: the IStream object. In C++, it is a pointer to the IStream object. - For other output types: ignored. outputstr String Out A string where Conversion Agent Engine writes output: - For text output: the output of the transformation. - For other output types: a status string. Return value String Out A Unicode string containing a status report. For more information about interpreting the status report, see CMStatus Object on page 10. CMStatus Object The CMStatus object retrieves status information about Conversion Agent Engine operations. The input of each CMStatus method is the status report returned by a CMEngine method. For more information about generating the status report, see CMEngine Object on page 9. The output of each CMStatus method is the requested status information. The object exposes the ICMStatus interface. IsGood Method Function IsGood(statusStr As String) As Long 10 Chapter 2: Object Model Reference

17 This method returns 1 (true) if the Conversion Agent Engine operation was successful, or 0 (false) if it was unsuccessful. statusstr String In A CMEngine status report. Return value Long Out 1 if successful. GetDescription Method Function GetDescription(statusStr As String) As String If the Conversion Agent Engine operation was unsuccessful, this method return an error description. statusstr String In A CMEngine status report. Return value String Out A Unicode string containing the description. GetSeverity Method Function GetSeverity(statusStr As String) As Long This method returns the severity level of an error. statusstr String In A CMEngine status report. Return value Long Out The severity level: - 1 if the execution completed with information events only - 2 if there were warning events - 3 if there were failure events - 4 if there were fatal-error events - 5 if there were internal-error events GetLogFile Method Function GetLogFile(statusStr As String) As String If the Conversion Agent Engine operation was unsuccessful, this method returns the name of the log file. Conversion Agent Engine generates a log file if an error or a failure occurred during the service execution. It does not generate a log if the service ran successfully. statusstr String In A CMEngine status report. Return value String Out The log file name. GetLogDirectory Method Function GetLogDirectory(statusStr As String) As String If the Conversion Agent Engine operation was unsuccessful, this method returns the name of the log directory. statusstr String In A CMEngine status report. Return value String Out The log file directory. CMStatus Object 11

18 12 Chapter 2: Object Model Reference

19 C HAPTER 3 Deprecated COM API Versions This chapter includes the following topics: Overview, 13 CM_COM Implementation, 13 CM_COM2 Implementation, 15 Overview The preceding sections of this document describe the current version of the Conversion Agent COM API, CM_COM3 1.0 Type Library, which is implemented in the file CM_COM3.dll. The CM_COM3 implementation offers enhanced capabilities and much better performance than previous COM API implementations. There are two previous versions of the COM API, which continue to be supported for backwards compatibility with existing applications. This chapter briefly describes the earlier COM API versions and provides upgrade recommendations. You cannot mix the COM API implementations. For example, do not attempt to prepare a service request by calling methods of the CM_COM3 implementation, and then run the request by calling the CM_COM implementation. CM_COM Implementation Conversion Agent 3.1 and earlier offered an implementation of the COM API that was called the CM_COM 1.0 Type Library. The implementation was defined in the file CM_COM.dll. Because the implementation was not multithreaded, it did not perform as well as the CM_COM3 implementation. For the best performance, you should upgrade CM_COM applications to CM_COM3. If this is not feasible, you can continue running the CM_COM applications. CMParsingEngine Object The CM_COM implementation has a single object, which is called CMParsingEngine. The object runs services in Conversion Agent Engine. The object exposes the ICMParsingEngine interface. 13

20 To use the object: 1. Assign one of the Input properties, which identifies the input location. 2. Call one of the methods, which runs a Conversion Agent service that processes the input. Properties CMParsingEngine has the following properties. Property Type Description InputFile String The path and name of the input file. InputText String A text string, which contains the input. InputURL String The URL of an input file. AuthUserName String A user name for HTTP authentication. AuthPassword String A password for HTTP authentication. ParseToFile Method Function ParseToFile( _ service_name As String, _ output_file As String, _ error As Long) _ As String This method runs a parser service and writes the XML output to a file. service_name String In The name of the Conversion Agent service. output_file String In Path of the output file. error Long Out The execution status: - 1 if the execution completed with information events only - 2 if there were warning events - 3 if there were failure events - 4 if there were fatal-error events Return value String Out A status string. ParseToText Method Function ParseToText( _ service_name As String, _ error As Long) _ As String This method runs a parser service and writes the XML output to a string. service_name String In The name of the Conversion Agent service. error Long Out The execution status: - 1 if the execution completed with information events only - 2 if there were warning events - 3 if there were failure events - 4 if there were fatal-error events Return value String Out The output string. 14 Chapter 3: Deprecated COM API Versions

21 SerializeToFile Method Function SerializeToFile( _ service_name As String, _ output_file As String, _ error As Long) _ As String This method runs a serializer service and writes the output to a file. The parameters are identical to those of ParseToFile. SerializeToText Method Function SerializeToText( _ service_name As String, _ error As Long) _ As String This method runs a serializer service and writes the output to a string. The parameters are identical to those of ParseToText. CM_COM2 Implementation Conversion Agent 3.1 offered the CM_COM2 1.0 Type Library, which was defined in the file CM_COM2.dll. The implementation was an early version of CM_COM3. The object model is similar to that of CM_COM3, with some minor differences. You should upgrade all existing CM_COM2 applications to CM_COM3. CM_COM2 Implementation 15

22 I NDEX A API COM 1 B BufferInput method COM API 7 C CM_COM version of COM API 13 CM_COM2 version of COM API 15 CM_COM3 version of COM API 13 CMDS object COM API 5 CMEngine object COM API 9 CMParsingEngine object deprecated COM API 13 CMRequest object COM API 6 CMStatus object COM API 10 COM API 1 COM API deprecated versions 13 object model 5 programming procedure 2 unsupported features 1 Visual Basic sample 2 E Exec method COM API 10 F FileInput method COM API 6 FileOutput method COM API 7 G Generate method COM API 9 GetDescription method COM API 11 GetLogDirectory method COM API 11 GetLogFile method COM API 11 GetServiceList Method COM API 6 GetSeverity method COM API 11 I InitEngine method COM API 10 IsGood method COM API 10 IStreamInput method COM API 7 IStreamOutput Method COM Api 8 O object model COM API 5 OutputLocationCurrrentFolder method COM API 8 OutputLocationGUIDFolder method COM API 8 OutputLocationResultFolder method COM API 8 OutputLocationSpecifyPath method COM API 8 T TextInput method COM API 6 TextOutput method COM API 8 17

23 U UrlInput method COM API 7 V Visual Basic COM API sample 2 18 Index

24 NOTICES This Informatica product (the Software ) includes certain drivers (the DataDirect Drivers ) from DataDirect Technologies, an operating company of Progress Software Corporation ( DataDirect ) which are subject to the following terms and conditions: 1. THE DATADIRECT DRIVERS ARE PROVIDED AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. 2. IN NO EVENT WILL DATADIRECT OR ITS THIRD PARTY SUPPLIERS BE LIABLE TO THE END-USER CUSTOMER FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR OTHER DAMAGES ARISING OUT OF THE USE OF THE ODBC DRIVERS, WHETHER OR NOT INFORMED OF THE POSSIBILITIES OF DAMAGES IN ADVANCE. THESE LIMITATIONS APPLY TO ALL CAUSES OF ACTION, INCLUDING, WITHOUT LIMITATION, BREACH OF CONTRACT, BREACH OF WARRANTY, NEGLIGENCE, STRICT LIABILITY, MISREPRESENTATION AND OTHER TORTS.

Informatica PowerExchange for MSMQ (Version 9.0.1) User Guide

Informatica PowerExchange for MSMQ (Version 9.0.1) User Guide Informatica PowerExchange for MSMQ (Version 9.0.1) User Guide Informatica PowerExchange for MSMQ User Guide Version 9.0.1 June 2010 Copyright (c) 2004-2010 Informatica. All rights reserved. This software

More information

Informatica (Version 9.1.0) Data Quality Installation and Configuration Quick Start

Informatica (Version 9.1.0) Data Quality Installation and Configuration Quick Start Informatica (Version 9.1.0) Data Quality Installation and Configuration Quick Start Informatica Data Quality Installation and Configuration Quick Start Version 9.1.0 March 2011 Copyright (c) 1998-2011

More information

What s New in Conversion Agent. SAP Conversion Agent by Informatica (Version 8.5)

What s New in Conversion Agent. SAP Conversion Agent by Informatica (Version 8.5) What s New in Conversion Agent SAP Conversion Agent by Informatica (Version 8.5) What s New in Conversion Agent Version 8.5 June 2008 Copyright (c) 2001 2008 Informatica Corporation. All rights reserved.

More information

Informatica Cloud Spring REST API Connector Guide

Informatica Cloud Spring REST API Connector Guide Informatica Cloud Spring 2017 REST API Connector Guide Informatica Cloud REST API Connector Guide Spring 2017 December 2017 Copyright Informatica LLC 2016, 2018 This software and documentation are provided

More information

Informatica Cloud Spring Data Integration Hub Connector Guide

Informatica Cloud Spring Data Integration Hub Connector Guide Informatica Cloud Spring 2017 Data Integration Hub Connector Guide Informatica Cloud Data Integration Hub Connector Guide Spring 2017 December 2017 Copyright Informatica LLC 1993, 2017 This software and

More information

Informatica Cloud Spring Microsoft Azure Blob Storage V2 Connector Guide

Informatica Cloud Spring Microsoft Azure Blob Storage V2 Connector Guide Informatica Cloud Spring 2017 Microsoft Azure Blob Storage V2 Connector Guide Informatica Cloud Microsoft Azure Blob Storage V2 Connector Guide Spring 2017 October 2017 Copyright Informatica LLC 2017 This

More information

Informatica Cloud Spring Complex File Connector Guide

Informatica Cloud Spring Complex File Connector Guide Informatica Cloud Spring 2017 Complex File Connector Guide Informatica Cloud Complex File Connector Guide Spring 2017 October 2017 Copyright Informatica LLC 2016, 2017 This software and documentation are

More information

Informatica Cloud Platform Building Connectors with the Toolkit Student Lab 6: Working with Lookups. Version Connectors Toolkit Training

Informatica Cloud Platform Building Connectors with the Toolkit Student Lab 6: Working with Lookups. Version Connectors Toolkit Training Informatica Cloud Platform Building Connectors with the Toolkit Student Lab 6: Working with Lookups Version Connectors Toolkit Training 2015-01 Informatica Cloud Platform Building Connectors with the Toolkit

More information

Informatica Data Services (Version 9.5.0) User Guide

Informatica Data Services (Version 9.5.0) User Guide Informatica Data Services (Version 9.5.0) User Guide Informatica Data Services User Guide Version 9.5.0 June 2012 Copyright (c) 1998-2012 Informatica. All rights reserved. This software and documentation

More information

Data Federation Guide

Data Federation Guide Data Federation Guide Informatica PowerCenter (Version 8.6.1) Informatica PowerCenter Data Federation Guide Version 8.6.1 December 2008 Copyright (c) 1998 2008 Informatica Corporation. All rights reserved.

More information

Informatica Cloud Spring Microsoft SharePoint Connector Guide

Informatica Cloud Spring Microsoft SharePoint Connector Guide Informatica Cloud Spring 2017 Microsoft SharePoint Connector Guide Informatica Cloud Microsoft SharePoint Connector Guide Spring 2017 January 2018 Copyright Informatica LLC 2015, 2018 This software and

More information

Informatica PowerCenter (Version HotFix 1) Metadata Manager Business Glossary Guide

Informatica PowerCenter (Version HotFix 1) Metadata Manager Business Glossary Guide Informatica PowerCenter (Version 9.0.1 HotFix 1) Metadata Manager Business Glossary Guide Informatica PowerCenter Metadata Manager Business Glossary Guide Version 9.0.1 HotFix 1 September 2010 Copyright

More information

User Guide. Informatica PowerCenter Connect for MSMQ. (Version 8.1.1)

User Guide. Informatica PowerCenter Connect for MSMQ. (Version 8.1.1) User Guide Informatica PowerCenter Connect for MSMQ (Version 8.1.1) Informatica PowerCenter Connect for MSMQ User Guide Version 8.1.1 September 2006 Copyright (c) 2004-2006 Informatica Corporation. All

More information

Informatica Cloud Platform Building Connectors with the Toolkit Student Lab: Informatica Cloud Connector Toolkit Architecture

Informatica Cloud Platform Building Connectors with the Toolkit Student Lab: Informatica Cloud Connector Toolkit Architecture Informatica Cloud Platform Building Connectors with the Toolkit Student Lab: Informatica Cloud Connector Toolkit Architecture Version Connectors Toolkit Training 2015-01 Informatica Cloud Platform Building

More information

Informatica PowerCenter (Version 9.1.0) Mapping Architect for Visio Guide

Informatica PowerCenter (Version 9.1.0) Mapping Architect for Visio Guide Informatica PowerCenter (Version 9.1.0) Mapping Architect for Visio Guide Informatica PowerCenter Mapping Architect for Visio Guide Version 9.1.0 March 2011 Copyright (c) 1998-2011 Informatica. All rights

More information

Informatica Proactive Monitoring for Data Quality (Version 1.0) Solutions Guide

Informatica Proactive Monitoring for Data Quality (Version 1.0) Solutions Guide Informatica Proactive Monitoring for Data Quality (Version 1.0) Solutions Guide Informatica Proactive Monitoring for Data Quality Solutions Guide Version 1.0 June 2012 Copyright (c) 2003-2012 Informatica.

More information

Informatica (Version 9.1.0) Data Explorer User Guide

Informatica (Version 9.1.0) Data Explorer User Guide Informatica (Version 9.1.0) Data Explorer User Guide Informatica Data Explorer User Guide Version 9.1.0 March 2011 Copyright (c) 1998-2011 Informatica. All rights reserved. This software and documentation

More information

Informatica B2B Data Transformation (Version 9.5.1) Administrator Guide

Informatica B2B Data Transformation (Version 9.5.1) Administrator Guide Informatica B2B Data Transformation (Version 9.5.1) Administrator Guide Informatica B2B Data Transformation Administrator Guide Version 9.5.1 June 2012 Copyright (c) 2001-2012 Informatica. All rights reserved.

More information

Informatica Cloud Spring Workday V2 Connector Guide

Informatica Cloud Spring Workday V2 Connector Guide Informatica Cloud Spring 2017 Workday V2 Connector Guide Informatica Cloud Workday V2 Connector Guide Spring 2017 March 2018 Copyright Informatica LLC 2015, 2018 This software and documentation are provided

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

Informatica PowerCenter (Version HotFix 3) Metadata Manager User Guide

Informatica PowerCenter (Version HotFix 3) Metadata Manager User Guide Informatica PowerCenter (Version 9.1.0 HotFix 3) Metadata Manager User Guide Informatica PowerCenter Metadata Manager User Guide Version 9.1.0 HotFix 3 December 2011 Copyright (c) 1998-2011 Informatica.

More information

Informatica Cloud Spring Microsoft Dynamics 365 for Sales Connector Guide

Informatica Cloud Spring Microsoft Dynamics 365 for Sales Connector Guide Informatica Cloud Spring 2017 Microsoft Dynamics 365 for Sales Connector Guide Informatica Cloud Microsoft Dynamics 365 for Sales Connector Guide Spring 2017 August 2018 Copyright Informatica LLC 2017,

More information

Informatica PowerCenter Express (Version 9.5.1) User Guide

Informatica PowerCenter Express (Version 9.5.1) User Guide Informatica PowerCenter Express (Version 9.5.1) User Guide Informatica PowerCenter Express User Guide Version 9.5.1 April 2013 Copyright (c) 1998-2013 Informatica Corporation. All rights reserved. This

More information

Informatica Cloud Spring Google BigQuery Connector Guide

Informatica Cloud Spring Google BigQuery Connector Guide Informatica Cloud Spring 2017 Google BigQuery Connector Guide Informatica Cloud Google BigQuery Connector Guide Spring 2017 October 2017 Copyright Informatica LLC 2016, 2017 This software and documentation

More information

Informatica PowerExchange for SAP NetWeaver (Version 10.2)

Informatica PowerExchange for SAP NetWeaver (Version 10.2) Informatica PowerExchange for SAP NetWeaver (Version 10.2) SAP BW Metadata Creation Solution Informatica PowerExchange for SAP NetWeaver BW Metadata Creation Solution Version 10.2 September 2017 Copyright

More information

Migration Tool. Migration Tool (Beta) Technical Note

Migration Tool. Migration Tool (Beta) Technical Note Migration Tool (Beta) Technical Note VERSION: 6.0 UPDATED: MARCH 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies logo

More information

Informatica B2B Data Transformation (Version 9.5.1) Studio Editing Guide

Informatica B2B Data Transformation (Version 9.5.1) Studio Editing Guide Informatica B2B Data Transformation (Version 9.5.1) Studio Editing Guide Informatica B2B Data Transformation Studio Editing Guide Version 9.5.1 June 2012 Copyright (c) 2001-2012 Informatica Corporation.

More information

Informatica B2B Data Exchange (Version 9.1.0) Developer Guide

Informatica B2B Data Exchange (Version 9.1.0) Developer Guide Informatica B2B Data Exchange (Version 9.1.0) Developer Guide Informatica B2B Data Exchange Developer Guide Version 9.1.0 June 2011 Copyright (c) 2001-2011 Informatica. All rights reserved. This software

More information

Informatica Development Platform (Version 9.1.0) Relational Data Adapter Guide

Informatica Development Platform (Version 9.1.0) Relational Data Adapter Guide Informatica Development Platform (Version 9.1.0) Relational Data Adapter Guide Informatica Development Platform Relational Data Adapter Guide Version 9.1.0 March 2011 Copyright (c) 2010-2011 Informatica.

More information

PRODUCT SPECIFIC LICENSE TERMS Sybase Enterprise Portal Version 5 Enterprise Edition ( Program )

PRODUCT SPECIFIC LICENSE TERMS Sybase Enterprise Portal Version 5 Enterprise Edition ( Program ) PRODUCT SPECIFIC LICENSE TERMS Sybase Enterprise Portal Version 5 Enterprise Edition ( Program ) IN ADDITION TO THE LICENSE TERMS SET OUT IN THE SYBASE LICENSE AGREEMENT, THE FOLLOWING ADDITIONAL OR DIFFERENT

More information

Informatica Data Integration Analyst (Version 9.5.1) User Guide

Informatica Data Integration Analyst (Version 9.5.1) User Guide Informatica Data Integration Analyst (Version 9.5.1) User Guide Informatica Data Integration Analyst User Guide Version 9.5.1 August 2012 Copyright (c) 1998-2012 Informatica. All rights reserved. This

More information

Informatica PowerCenter (Version 9.0.1) Getting Started

Informatica PowerCenter (Version 9.0.1) Getting Started Informatica PowerCenter (Version 9.0.1) Getting Started Informatica PowerCenter Getting Started Version 9.0.1 June 2010 Copyright (c) 1998-2010 Informatica. All rights reserved. This software and documentation

More information

Informatica Development Platform (Version HotFix 4) Developer Guide

Informatica Development Platform (Version HotFix 4) Developer Guide Informatica Development Platform (Version 9.1.0 HotFix 4) Developer Guide Informatica Development Platform Developer Guide Version 9.1.0 HotFix 4 March 2012 Copyright (c) 1998-2012 Informatica. All rights

More information

Informatica PowerCenter (Version HotFix 1) Metadata Manager Administrator Guide

Informatica PowerCenter (Version HotFix 1) Metadata Manager Administrator Guide Informatica PowerCenter (Version 9.0.1 HotFix 1) Metadata Manager Administrator Guide Informatica PowerCenter Metadata Manager Administrator Guide Version 9.0.1 HotFix 1 September 2010 Copyright (c) 1998-2010

More information

Informatica (Version HotFix 1) PowerCenter Installation and Configuration Guide

Informatica (Version HotFix 1) PowerCenter Installation and Configuration Guide Informatica (Version 9.0.1 HotFix 1) PowerCenter Installation and Configuration Guide Informatica PowerCenter Installation and Configuration Guide Version 9.0.1 HotFix 1 September 2010 Copyright (c) 1998-2010

More information

Informatica Cloud Spring Hadoop Connector Guide

Informatica Cloud Spring Hadoop Connector Guide Informatica Cloud Spring 2017 Hadoop Connector Guide Informatica Cloud Hadoop Connector Guide Spring 2017 December 2017 Copyright Informatica LLC 2015, 2017 This software and documentation are provided

More information

Informatica PowerExchange for Server (Version 9.1.0) User Guide

Informatica PowerExchange for  Server (Version 9.1.0) User Guide Informatica PowerExchange for Email Server (Version 9.1.0) User Guide Informatica PowerExchange for Email Server User Guide Version 9.1.0 March 2011 Copyright (c) 2005-2011 Informatica. All rights reserved.

More information

Informatica Cloud Spring Teradata Connector Guide

Informatica Cloud Spring Teradata Connector Guide Informatica Cloud Spring 2017 Teradata Connector Guide Informatica Cloud Teradata Connector Guide Spring 2017 October 2017 Copyright Informatica LLC 2015, 2017 This software and documentation are provided

More information

PRODUCT SPECIFIC LICENSE TERMS Sybase Enterprise Portal Version 5 Application Edition ( Program )

PRODUCT SPECIFIC LICENSE TERMS Sybase Enterprise Portal Version 5 Application Edition ( Program ) PRODUCT SPECIFIC LICENSE TERMS Sybase Enterprise Portal Version 5 Application Edition ( Program ) IN ADDITION TO THE LICENSE TERMS SET OUT IN THE SYBASE LICENSE AGREEMENT, THE FOLLOWING ADDITIONAL OR DIFFERENT

More information

Informatica Proactive Monitoring for PowerCenter Operations (Version 2.1) Solutions Guide

Informatica Proactive Monitoring for PowerCenter Operations (Version 2.1) Solutions Guide Informatica Proactive Monitoring for PowerCenter Operations (Version 2.1) Solutions Guide Informatica Proactive Monitoring for PowerCenter Operations Solutions Guide Version 2.1 June 2012 Copyright (c)

More information

StorageGRID Webscale NAS Bridge Management API Guide

StorageGRID Webscale NAS Bridge Management API Guide StorageGRID Webscale NAS Bridge 2.0.3 Management API Guide January 2018 215-12414_B0 doccomments@netapp.com Table of Contents 3 Contents Understanding the NAS Bridge management API... 4 RESTful web services

More information

Informatica Proactive Monitoring for PowerCenter Governance (Version 2.5) Solutions Guide

Informatica Proactive Monitoring for PowerCenter Governance (Version 2.5) Solutions Guide Informatica Proactive Monitoring for PowerCenter Governance (Version 2.5) Solutions Guide Informatica Proactive Monitoring for PowerCenter Governance Solutions Guide Version 2.5 November 2012 Copyright

More information

Informatica Data Quality (Version 9.5.1) User Guide

Informatica Data Quality (Version 9.5.1) User Guide Informatica Data Quality (Version 9.5.1) User Guide Informatica Data Quality User Guide Version 9.5.1 December 2012 Copyright (c) 2009-2012 Informatica. All rights reserved. This software and documentation

More information

Informatica PowerExchange for Hive (Version HotFix 1) User Guide

Informatica PowerExchange for Hive (Version HotFix 1) User Guide Informatica PowerExchange for Hive (Version 9.5.1 HotFix 1) User Guide Informatica PowerExchange for Hive User Guide Version 9.5.1 HotFix 1 December 2012 Copyright (c) 2012-2013 Informatica Corporation.

More information

JD Edwards World User Reserved Information. Version A9.2

JD Edwards World User Reserved Information. Version A9.2 JD Edwards World User Reserved Information Version A9.2 Revised June 30, 2009 Copyright Notice Copyright 2009, Oracle. All rights reserved. Trademark Notice Oracle is a registered trademark of Oracle Corporation

More information

Advanced Workflow Guide

Advanced Workflow Guide Advanced Workflow Guide Informatica PowerCenter (Version 8.6.1) PowerCenter Advanced Workflow Guide Version 8.6.1 July 2009 Copyright (c) 1998 2009 Informatica Corporation. All rights reserved. This software

More information

Informatica PowerExchange for Tableau User Guide

Informatica PowerExchange for Tableau User Guide Informatica PowerExchange for Tableau 10.2.1 User Guide Informatica PowerExchange for Tableau User Guide 10.2.1 May 2018 Copyright Informatica LLC 2015, 2018 This software and documentation are provided

More information

Workflow Basics Guide

Workflow Basics Guide Workflow Basics Guide Informatica PowerCenter (Version 8.6.1) PowerCenter Workflow Basics Guide Version 8.6.1 January 2009 Copyright (c) 1998 2009 Informatica Corporation. All rights reserved. This software

More information

Informatica PowerCenter (Version 9.1.0) Web Services Provider Guide

Informatica PowerCenter (Version 9.1.0) Web Services Provider Guide Informatica PowerCenter (Version 9.1.0) Web Services Provider Guide Informatica PowerCenter Web Services Provider Guide Version 9.1.0 March 2011 Copyright (c) Informatica. All rights reserved. This software

More information

Informatica Cloud Spring LDAP Connector Guide

Informatica Cloud Spring LDAP Connector Guide Informatica Cloud Spring 2017 LDAP Connector Guide Informatica Cloud LDAP Connector Guide Spring 2017 January 2018 Copyright Informatica LLC 2015, 2018 This software and documentation are provided only

More information

Informatica PowerExchange for Microsoft Azure Blob Storage 10.2 HotFix 1. User Guide

Informatica PowerExchange for Microsoft Azure Blob Storage 10.2 HotFix 1. User Guide Informatica PowerExchange for Microsoft Azure Blob Storage 10.2 HotFix 1 User Guide Informatica PowerExchange for Microsoft Azure Blob Storage User Guide 10.2 HotFix 1 July 2018 Copyright Informatica LLC

More information

Informatica Data Director for Data Quality (Version HotFix 4) User Guide

Informatica Data Director for Data Quality (Version HotFix 4) User Guide Informatica Data Director for Data Quality (Version 9.5.1 HotFix 4) User Guide Informatica Data Director for Data Quality User Guide Version 9.5.1 HotFix 4 February 2014 Copyright (c) 1998-2014 Informatica

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

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

Informatica PowerCenter (Version HotFix 1) Advanced Workflow Guide

Informatica PowerCenter (Version HotFix 1) Advanced Workflow Guide Informatica PowerCenter (Version 9.0.1 HotFix 1) Advanced Workflow Guide Informatica PowerCenter Advanced Workflow Guide Version 9.0.1 HotFix 1 September 2010 Copyright (c) 1998-2010 Informatica. All rights

More information

Informatica PowerCenter Express (Version 9.6.1) Mapping Guide

Informatica PowerCenter Express (Version 9.6.1) Mapping Guide Informatica PowerCenter Express (Version 9.6.1) Mapping Guide Informatica PowerCenter Express Mapping Guide Version 9.6.1 June 2014 Copyright (c) 1998-2014 Informatica Corporation. All rights reserved.

More information

KEMP Driver for Red Hat OpenStack. KEMP LBaaS Red Hat OpenStack Driver. Installation Guide

KEMP Driver for Red Hat OpenStack. KEMP LBaaS Red Hat OpenStack Driver. Installation Guide KEMP LBaaS Red Hat OpenStack Driver Installation Guide VERSION: 2.0 UPDATED: AUGUST 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP

More information

Informatica PowerExchange for JD Edwards World (Version 9.1.0) User Guide

Informatica PowerExchange for JD Edwards World (Version 9.1.0) User Guide Informatica PowerExchange for JD Edwards World (Version 9.1.0) User Guide Informatica PowerExchange for JD Edwards World User Guide Version 9.1.0 March 2011 Copyright (c) 2006-2011 Informatica. All rights

More information

Informatica B2B Data Transformation (Version 10.0) Agent for WebSphere Message Broker User Guide

Informatica B2B Data Transformation (Version 10.0) Agent for WebSphere Message Broker User Guide Informatica B2B Data Transformation (Version 10.0) Agent for WebSphere Message Broker User Guide Informatica B2B Data Transformation Agent for WebSphere Message Broker User Guide Version 10.0 October 2015

More information

Informatica (Version 9.6.1) Mapping Guide

Informatica (Version 9.6.1) Mapping Guide Informatica (Version 9.6.1) Mapping Guide Informatica Mapping Guide Version 9.6.1 June 2014 Copyright (c) 1998-2014 Informatica Corporation. All rights reserved. This software and documentation contain

More information

Informatica PowerExchange for Microsoft Azure SQL Data Warehouse (Version ) User Guide for PowerCenter

Informatica PowerExchange for Microsoft Azure SQL Data Warehouse (Version ) User Guide for PowerCenter Informatica PowerExchange for Microsoft Azure SQL Data Warehouse (Version 10.1.1) User Guide for PowerCenter Informatica PowerExchange for Microsoft Azure SQL Data Warehouse User Guide for PowerCenter

More information

Informatica Persistent Data Masking and Data Subset (Version 9.5.0) User Guide

Informatica Persistent Data Masking and Data Subset (Version 9.5.0) User Guide Informatica Persistent Data Masking and Data Subset (Version 9.5.0) User Guide Informatica Persistent Data Masking and Data Subset User Guide Version 9.5.0 December 2012 Copyright (c) 2003-2012 Informatica.

More information

Getting Started. Informatica PowerCenter. (Version 8.6)

Getting Started. Informatica PowerCenter. (Version 8.6) Getting Started Informatica PowerCenter (Version 8.6) Informatica PowerCenter Getting Started Version 8.6 June 2008 Copyright (c) 1998 2008 Informatica Corporation. All rights reserved. This software and

More information

CA File Master Plus. Release Notes. Version

CA File Master Plus. Release Notes. Version CA File Master Plus Release Notes Version 9.0.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for

More information

Informatica Cloud Spring File Processor Connector Guide

Informatica Cloud Spring File Processor Connector Guide Informatica Cloud Spring 2017 File Processor Connector Guide Informatica Cloud File Processor Connector Guide Spring 2017 October 2017 Copyright Informatica LLC 2016, 2017 This software and documentation

More information

LoadMaster VMware Horizon (with View) 6. Deployment Guide

LoadMaster VMware Horizon (with View) 6. Deployment Guide LoadMaster VMware Horizon (with View) 6 Deployment Guide VERSION: 6.0 UPDATED: MARCH 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the

More information

iwrite technical manual iwrite authors and contributors Revision: 0.00 (Draft/WIP)

iwrite technical manual iwrite authors and contributors Revision: 0.00 (Draft/WIP) iwrite technical manual iwrite authors and contributors Revision: 0.00 (Draft/WIP) June 11, 2015 Chapter 1 Files This section describes the files iwrite utilizes. 1.1 report files An iwrite report consists

More information

RSA Two Factor Authentication

RSA Two Factor Authentication RSA Two Factor Authentication Feature Description VERSION: 6.0 UPDATED: JULY 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies

More information

Performance Characterization of ONTAP Cloud in Azure with Application Workloads

Performance Characterization of ONTAP Cloud in Azure with Application Workloads Technical Report Performance Characterization of ONTAP Cloud in NetApp Data Fabric Group, NetApp March 2018 TR-4671 Abstract This technical report examines the performance and fit of application workloads

More information

SafeNet Authentication Service Token Validator Proxy Agent. Installation and Configuration Guide

SafeNet Authentication Service Token Validator Proxy Agent. Installation and Configuration Guide SafeNet Authentication Service Token Validator Proxy Agent Installation and Configuration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV.

More information

SafeNet Authentication Service

SafeNet Authentication Service SafeNet Authentication Service Integration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV. and/or its subsidiaries who shall have and keep

More information

Upgrade Express Guide

Upgrade Express Guide ONTAP 9 Upgrade Express Guide December 2017 215-11234_G0 doccomments@netapp.com Updated for ONTAP 9.3 Table of Contents 3 Contents Deciding whether to use this guide... 4 Cluster software update workflow...

More information

JD Edwards EnterpriseOne Date Utility

JD Edwards EnterpriseOne Date Utility JD Edwards EnterpriseOne Date Utility June 2010 JD Edwards EnterpriseOne Date Utility Releases Xe thru 9.0 Copyright Notice Copyright 2010, Oracle and/or its affiliates. All rights reserved. Trademark

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

Informatica Test Data Management (Version 9.6.0) User Guide

Informatica Test Data Management (Version 9.6.0) User Guide Informatica Test Data Management (Version 9.6.0) User Guide Informatica Test Data Management User Guide Version 9.6.0 April 2014 Copyright (c) 2003-2014 Informatica Corporation. All rights reserved. This

More information

JD Edwards World EDI Error Notification. Version A9.2

JD Edwards World EDI Error Notification. Version A9.2 JD Edwards World EDI Error Notification Version A9.2 Revised June 8, 2009 Copyright Notice Copyright 2009, Oracle. All rights reserved. Trademark Notice Oracle is a registered trademark of Oracle Corporation

More information

Informatica Enterprise Data Catalog REST API Reference

Informatica Enterprise Data Catalog REST API Reference Informatica 10.2.1 Enterprise Data Catalog REST API Reference Informatica Enterprise Data Catalog REST API Reference 10.2.1 May 2018 Copyright Informatica LLC 2017, 2018 This software and documentation

More information

Informatica Data Archive (Version HotFix 1) Amdocs Accelerator Reference

Informatica Data Archive (Version HotFix 1) Amdocs Accelerator Reference Informatica Data Archive (Version 6.4.3 HotFix 1) Amdocs Accelerator Reference Informatica Data Archive Amdocs Accelerator Reference Version 6.4.3 HotFix 1 June 2017 Copyright Informatica LLC 2003, 2017

More information

SafeNet Authentication Service

SafeNet Authentication Service SafeNet Authentication Service Integration Guide Using SafeNet Authentication Service as an Identity Provider for Tableau Server All information herein is either public information or is the property of

More information

NTLM NTLM. Feature Description

NTLM NTLM. Feature Description Feature Description VERSION: 6.0 UPDATED: JULY 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies logo are registered

More information

Informatica (Version HotFix 4) Metadata Manager Repository Reports Reference

Informatica (Version HotFix 4) Metadata Manager Repository Reports Reference Informatica (Version 9.6.1 HotFix 4) Metadata Manager Repository Reports Reference Informatica Metadata Manager Repository Reports Reference Version 9.6.1 HotFix 4 April 2016 Copyright (c) 1993-2016 Informatica

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

SafeNet Authentication Service

SafeNet Authentication Service SafeNet Authentication Service Integration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV. and/or its subsidiaries who shall have and keep

More information

Informatica Data Services (Version 9.6.0) Web Services Guide

Informatica Data Services (Version 9.6.0) Web Services Guide Informatica Data Services (Version 9.6.0) Web Services Guide Informatica Data Services Web Services Guide Version 9.6.0 January 2014 Copyright (c) 1998-2014 Informatica Corporation. All rights reserved.

More information

NetApp SolidFire Element OS. Setup Guide. Version March _A0

NetApp SolidFire Element OS. Setup Guide. Version March _A0 NetApp SolidFire Element OS Setup Guide Version 10.2 March 2018 215-12911_A0 doccomments@netapp.com Table of Contents 3 Contents SolidFire system overview... 4 Configuring a storage node... 5 Configuring

More information

VMware vcenter Log Insight Manager. Deployment Guide

VMware vcenter Log Insight Manager. Deployment Guide VMware vcenter Log Insight Manager Deployment Guide VERSION: 6.0 UPDATED: JULY 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies

More information

Bar Code Discovery. Administrator's Guide

Bar Code Discovery. Administrator's Guide Bar Code Discovery Administrator's Guide November 2012 www.lexmark.com Contents 2 Contents Overview...3 Configuring the application...4 Configuring the application...4 Configuring Bar Code Discovery...4

More information

Informatica PowerCenter Express (Version 9.6.0) Administrator Guide

Informatica PowerCenter Express (Version 9.6.0) Administrator Guide Informatica PowerCenter Express (Version 9.6.0) Administrator Guide Informatica PowerCenter Express Administrator Guide Version 9.6.0 January 2014 Copyright (c) 1998-2014 Informatica Corporation. All rights

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

Informatica PowerCenter Express (Version 9.6.1) Getting Started Guide

Informatica PowerCenter Express (Version 9.6.1) Getting Started Guide Informatica PowerCenter Express (Version 9.6.1) Getting Started Guide Informatica PowerCenter Express Getting Started Guide Version 9.6.1 June 2014 Copyright (c) 2013-2014 Informatica Corporation. All

More information

Informatica Proactive Monitoring for PowerCenter Governance (Version 2.0) Solutions Guide

Informatica Proactive Monitoring for PowerCenter Governance (Version 2.0) Solutions Guide Informatica Proactive Monitoring for PowerCenter Governance (Version 2.0) Solutions Guide Informatica Proactive Monitoring for PowerCenter Governance Solutions Guide Version 2.0 June 2012 Copyright (c)

More information

SafeNet Authentication Client

SafeNet Authentication Client SafeNet Authentication Client Compatibility Guide All information herein is either public information or is the property of and owned solely by Gemalto. and/or its subsidiaries who shall have and keep

More information

One Identity Starling Two-Factor HTTP Module 2.1. Administration Guide

One Identity Starling Two-Factor HTTP Module 2.1. Administration Guide One Identity Starling Two-Factor HTTP Module 2.1 Administration Guide Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

Moodle. Moodle. Deployment Guide

Moodle. Moodle. Deployment Guide Moodle Deployment Guide VERSION: 6.0 UPDATED: MARCH 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies logo are registered

More information

MERIDIANSOUNDINGBOARD.COM TERMS AND CONDITIONS

MERIDIANSOUNDINGBOARD.COM TERMS AND CONDITIONS MERIDIANSOUNDINGBOARD.COM TERMS AND CONDITIONS Introduction This document sets forth the terms and conditions ("Terms and Conditions") governing your use of the MeridianHealth.com Web site ("Web Site")

More information

GemStone/S Release Notes

GemStone/S Release Notes GemStone GemStone/S Release Notes Version 6.7.1 October 2018 SYSTEMS INTELLECTUAL PROPERTY OWNERSHIP This documentation is furnished for informational use only and is subject to change without notice.

More information

Informatica Data Quality for SAP Point of Entry (Version 9.5.1) Installation and Configuration Guide

Informatica Data Quality for SAP Point of Entry (Version 9.5.1) Installation and Configuration Guide Informatica Data Quality for SAP Point of Entry (Version 9.5.1) Installation and Configuration Guide Informatica Data Quality for SAP Point of Entry Installation and Configuration Guide Version 9.5.1 October

More information

Informatica Data Quality for Siebel (Version HotFix 2) User Guide

Informatica Data Quality for Siebel (Version HotFix 2) User Guide Informatica Data Quality for Siebel (Version 9.1.0 HotFix 2) User Guide Informatica Data Quality for Siebel User Guide Version 9.1.0 HotFix 2 August 2011 Copyright (c) 1998-2011 Informatica. All rights

More information

Informatica PowerCenter (Version 9.0.1) Performance Tuning Guide

Informatica PowerCenter (Version 9.0.1) Performance Tuning Guide Informatica PowerCenter (Version 9.0.1) Performance Tuning Guide Informatica PowerCenter Performance Tuning Guide Version 9.0.1 June 2010 Copyright (c) 1998-2010 Informatica. All rights reserved. This

More information

Informatica PowerExchange for SAP NetWeaver (Version 9.5.0) User Guide for PowerCenter

Informatica PowerExchange for SAP NetWeaver (Version 9.5.0) User Guide for PowerCenter Informatica PowerExchange for SAP NetWeaver (Version 9.5.0) User Guide for PowerCenter Informatica PowerExchange for SAP NetWeaver User Guide for PowerCenter Version 9.5.0 June 2012 Copyright (c) 1998-2012

More information