Unica Web Analytics Data Conduit for Vignette

Size: px
Start display at page:

Download "Unica Web Analytics Data Conduit for Vignette"

Transcription

1 Unica Web Analytics Data Conduit for Vignette

2 Copyright Copyright, Unica Corporation All rights reserved. Unica Corporation Reservoir Place North 170 Tracer Lane Waltham, MA s and Data All software and related documentation is subject to restrictions on use and disclosure as set forth in the applicable Unica Software License and Services Agreement or End User License Agreement, with restricted rights for U.S. government users and applicable export regulations. Companies, names, and data used in examples herein are fictitious unless otherwise noted. Trademarks and Patents Unica, the Unica logo, Affinium, and NetTracker are registered trademarks of Unica Corporation with the U.S. Patent and Trademark Office. Affinium Campaign, Affinium Campaign Collaborate, Affinium Campaign emessage, Affinium Campaign Interact, Affinium Campaign Optimize, Affinium Detect, Affinium NetInsight, Affinium Leads, Affinium Leads Referral, Affinium Leads Contact, Affinium Model, Affinium Plan, Affinium Mart, Universal Dynamic Interconnect, Interconnect Modules, Marketic, Powering Marketing Success, Customer Value Maximization, MAP, One-to-One Optimization, and Right-time Marketing are trademarks of Unica Corporation. All other trademarks are the property of their respective owners. Portions of the software described in this document are covered by U.S. Patent Numbers: 6,317,752, 6,269,32, 6,542,894, and 6,782,390. NOTICE: This document contains confidential and proprietary information of Unica Corporation ( Unica ). Use, duplication, or disclosure without the express written consent of Unica Corporation is prohibited. 2

3 Introduction The Vignette Content Management Server generates Custom URLs (CURLs) with the following format: /templatepath/cacheval,templateid,objectid,variation.ext?querystring The following table explains the different parts of the CURL. Placeholder cacheval templateid objectid variation Description Indicates whether a cached or freshly generated version of the requested page should be delivered to the client. A value of 0 indicates that a cached version should be sent, while a value of 1 indicates that the page should be regenerated before delivery. ID of the requested page s user-defined template. The user can define any number of templates to allow for delivery of pages similar in structure but with variable content. ID of the requested page s content. The content identified by this portion of the CURL is formatted using the template defined in the templateid portion of the CURL. Identifier of the variation of the given template to be used when generating the requested page. For example, different variations of the same template can be built to take advantage of the varying functionality offered by different Web browsers. The default value of 00 indicates that the standard variation should be used. The resulting CURL will look similar to this: /products/netinsight/0,1234,5678,00.html Log-file analysis applications can encounter three difficulties with Vignette CURLs: Page duplication CURLs pose problems from a log analysis point of view because multiple distinct CURLs may in fact all generate the same page. For example, consider the following four CURLs: /products/netinsight/0,1234,5678,00.html /products/netinsight/1,1234,5678,00.html /products/netinsight/0,1234,5678,0.html /products/netinsight/0,1234,5678,cc.html Each of these four CURLs generates a page providing the user with the same content (because they all have the same templateid and objectid), and from a log analysis point of view, should therefore be considered a single page. 1

4 Base64-encoded objectids In some situations, the value in the objectid field is base64-encoded, obscuring the true value of the field. For example, consider the following CURL: /products/netinsight/0,1234,zw5nbglzafy0,00.html The value of the objectid field in the CURL above is useless, even to those who may be familiar with the values in the other portions of the CURL. When decoded, however, the value of this field can be meaningful. For example, the above CURL, after base64-decoding the objectid field, is: /products/netinsight/0,1234,englishv4,00.html Multi-part objectids In addition to base64-encoded objectids, it is also possible to have objectid values that are comprised of multiple values joined with a delimiter character (often a dash). In these situations, understanding the true value of the objectid value requires knowledge about all the individual pieces of the objectid. You can use the NetInsight URL Search and Replace feature to address some of the problems posed by CURLs. In particular, URL Search and Replace can be used to eliminate differences in the CURL due to the cacheval and variation fields. For example, to modify a CURL such that all requests have a cacheval of 0, the following URL Search and Replace rule could be defined: Description: Remove cacheval Search rule: \/(\d),\s+?,\s*?,\s+?\.\s* Replacement value: 0 Replacement scope: Only first match Type of rule: Page Similarly, the following URL Search and Replace rule could be used to modify CURLs so that all requests have a variation of 00: Description: Remove variation Search rule: \/\d,\s+?,\s*?,(\s+?)\.\s* Replacement value: 00 Replacement scope: Only first match Type of rule: Page These rules allow NetInsight to identify CURLs based strictly on their templateid and objectid values, allowing for more accurate and meaningful statistics. However, even after the application of these URL Search and Replace rules, the pages displayed in the NetInsight reports remain cryptic and uninformative. The Unica Web Analytics Data Conduit for Vignette will allow assignment of a descriptive title to, or further modification of, a CURL during the NetInsight import process, making the reports generated by NetInsight more meaningful and easier to understand. 2

5 To use the Unica Web Analytics Data Conduit for Vignette, you must complete the following: 1. Edit the data conduit's configuration file to indicate which CURLs should be modified and how they should be modified. 2. Test the configuration. 3. Tell NetInsight to use the data conduit. Note: The Unica Web Analytics Data Conduit for Vignette currently supports only Microsoft SQL Server and Oracle databases. Installing the Unica Web Analytics Data Conduit for Vignette To install the data conduit on a Windows system: 1. Double-click ntdivign-{release Number}.exe. 2. Click Next. 3. Specify the temporary directory in which you want to place the data conduit files. Make note of this directory, as you will need to move the files. Click Next. 4. Open the directory that contains the data conduit files. 5. Copy vigntest.exe, ntdivign.conf, and ntdivign.dll to the NetInsight program directory. The default directory is C:\Program Files\NetInsight. To install the data conduit on a UNIX system: 1. Unpack the archive into a temporary directory. gunzip ntdivign-{release Number}.tar.gz tar xvf ntdivign-{release Number}.tar 2. Change directories into the unpacked directory. The configuration file is in that directory, but vigntest and ntdivign.so are in a subdirectory specific for your platform. 3. Copy vigntest, ntdivign.conf, and ntdivign.so to the NetInsight program directory. The default directory is /usr/local/netinsight. Note: On HP-UX, make sure ntdivign.so is executable by the NetInsight user. Editing the Data Conduit s Configuration File The data conduit has a configuration file that tells it which CURLs to modify. The configuration file also contains the information that the data conduit needs to connect to the Vignette database. The configuration file, which is written in XML, is located in the same directory in which you installed the data conduit above. (The default directory is the NetInsight program directory, which by default is C:\Program Files\NetInsight for Windows and /usr/local/netinsight for UNIX.) The first element is <ntdivignette>. This is an overall container element. All other entries in the file must be after <ntdivignette> and before </ntdivignette>. This 3

6 element tells you that this is the configuration file for the Unica Web Analytics Data Conduit for Vignette. The following two lists contain all the elements in the configuration file. The first list contains the elements needed for creating action definitions. The second list contains miscellaneous elements. Action Definition Elements actions The <actions> element contains a list of action definitions. This element has no attributes and no value. Use the child element <action> to specify each action definition. The <action> element has four attributes and no value. Attribute Description Possible values Default decodeobjectids Base64 decode object IDs before processing true/false (inherited from global <decodeobjectids> fallbacktohttp splitchar* templates NetInsight should resolve page titles via HTTP for this template if the action fails Character to be used as a delimiter to split object IDs associated with this action A comma-delimited list of template IDs for which to perform this action true/false Any commadelimited list Or default+ element) (inherited from global <fallbacktohttp> element * If this attribute is not specified, object IDs associated with this action will not be split into multiple parts. + If default is used, the action will be performed for any template ID that has no action explicitly defined for it. <actions> <action templates= 1234,5678 > <query> SELECT Title, ISBN FROM BookTitles WHERE AuthorID = %TEMPLATEID% AND BookID = %OBJECTID% </query> <format>book: %VALUE1% (%VALUE2%)</format> <searchrules> <searchrule column= 2 replacewith= >^(ISBN:)</searchrule> </searchrules> 4

7 </action> </actions> format The <format> element contains strings to be used by the data conduit to format the value retrieved from the database. Within the value specified for this element, the following tokens will be recognized and replaced with the given value. Token Value %EXTENSION% File extension parsed from the CURL %OBJECTID% Object ID parsed from the CURL %OBJECTIDn% Part n of the object ID parsed from the CURL (n >=1). Use only if using the splitchar attribute of the <action> element %TEMPLATEID% Template ID parsed from the CURL %VALUEn% The nth value returned from the database by the query specified in the query element (n >=1) %VARIATION% Variation value parsed from the CURL The <format> element has no attributes and no child elements. It must be contained within the <action> element. <format>book: %VALUE1% (%VALUE2%)</format> query The <query> element contains the SQL query to be executed by the data conduit to retrieve information for this action from the database. Within the value specified for this element, the following tokens will be recognized and replaced with the given value. Token Value %EXTENSION% File extension parsed from the CURL %OBJECTID% Object ID parsed from the CURL %OBJECTIDn% Part n of the object ID parsed from the CURL (n >=1). Use only if using the splitchar attribute of the <action> element %TEMPLATEID% Template ID parsed from the CURL %VARIATION% Variation value parsed from the CURL The <query> element has no attributes and no child elements. It must be contained within the <action> element. 5

8 <query> SELECT Title, ISBN FROM BookTitles WHERE AuthorID = %TEMPLATEID% AND BookID = %OBJECTID% </query> searchrules The <searchrules> element contains a list of search rules. The <searchrules> element has no attributes and no value. Use the child element <searchrule> to define each search rule. The <searchrule> element has two attributes. Attribute Description Possible Values Default column Number of the column returned by Any number >=1 the query executed for this action to which this search rule should be applied replacewith String to be substituted for the portion of the value matching the regular expression specified in the searchrule element that is contained in parenthesis* Any string * If this attribute is blank or not specified, the portion of the value matching the regular expression that is contained in parenthesis will be removed. The <searchrule> element has no child elements. The <searchrules> element must be contained within the <action> element. <searchrules> <searchrule column= 2 replacewith= >^(ISBN:)</searchrule> </searchrules> Miscellaneous Elements curlregex The <curlregex> element specifies the regular expressions used to determine if a page is a CURL. The expression must contain four parenthesized subexpressions. The values inside the parentheses should be the four fields extracted from a CURL. The four values are extracted from the CURL in the following order: templateid, objectid, variation, extension. The <curlregex> element has no attributes and no child elements. For a brief tutorial on using regular expressions, see the NetInsight manual. <curlregex>\/\d,(\s+?),(\s*?),(\s+?)\.(\s*)</curlregex> 6

9 dbconnect The <dbconnect> element specifies the database connection string. For SQL Server databases, this should be a complete ODBC connect string. For Oracle databases, this should be a semi-colon-delimited string containing the username, password, and service name of the database to which to connect. This element has no attributes and no child elements. For Oracle: <dbconnect>vignuser;vignpw;vigndb</dbconnect> For SQL Server (all one line): <dbconnect>driver={sql Server};UID=vignuser;PWD=vignpwd; SERVER=vignserver;DATABASE=vigndb</dbconnect> decodeobjectids The <decodeobjectids/> element indicates that the data conduit should base64- decode all object IDs before attempting database lookups. This element can be overridden for individual actions. If the element is not present, the IDs will not be decoded. This element has no attributes, no child elements, and no value. <decodeobjectids/> fallbacktohttp The <fallbacktohttp/> element indicates that the data conduit should instruct NetInsight to resolve page titles via HTTP if the page titles cannot be resolved by the data conduit. This element can be overridden for individual actions. If the element is not present, NetInsight will not resolve page titles that cannot be resolved by the data conduit. This element has no attributes, no child elements, and no value. <fallbacktohttp/> logging The <logging> element specifies the full path and filename of the file to which performance and debug logging should be written. This element has one attribute. Attribute Description level The type of logging to be performed by the data conduit Possible Values Value Description No logging Performance logging only Debug logging only Performance and debug logging Default 0 The <logging> element has no child elements. 7

10 <logging level= 1 >c:\temp\ntdivign.log</logging> maxcached The <maxcached> element specifies the maximum number of lookups to be cached in memory. The minimum acceptable value for this element is 2. The default value is This element has no attributes and no child elements. <maxcached>15013</maxcached> nettrackerdir The <nettrackerdir> element specifies the location of the NetInsight installation that is using the data conduit. The default value is the current directory. This element has no attributes and no child elements. For Windows: <nettrackerdir>c:\program Files\NetInsight</nettrackerdir> For UNIX: <nettrackerdir>/usr/local/netinsight</nettrackerdir> unloadlibrary The <unloadlibrary/> element indicates that the data conduit should instruct NetInsight to manually unload it after processing is complete. If the element is missing, NetInsight will not manually unload the data conduit. This element has no value, no attributes, and no child elements. <unloadlibrary/> Testing the Configuration The Unica Web Analytics Data Conduit for Vignette Test Application enables you to ensure that you have the data conduit properly installed and configured before you use it on your NetInsight data. Since the data conduit can modify the NetInsight database, it is essential that you test the configuration before you use it with your data. The test application is a command-line program that loads the data conduit, calls the operation within the data conduit, displays any results or error messages, and unloads the data conduit. The test application is vigntest.exe (for Windows) or vigntest (for UNIX). Command-line Arguments -config <filename> 8

11 Specifies the filename of the configuration file to be passed to the data conduit. If this argument is not used, the test application uses the default value, which is ntdivign.conf. -input <filename> Specifies the name of the input file to be used by the test application. If this argument is not used, the test application uses the default value, which is ntdivign.in. -lib <filename> Specifies the full path and filename of the data conduit. If this argument is not specified, the test application uses the default value, which is./ntdivign.so (UNIX) or ntdivign.dll (Windows). -op <rewrite [title]> Indicates the function in the data conduit to be called by the test application. A value of rewrite will instruct the test application to rewrite pages. A value of title will instruct the test application to look up page titles. If this argument is not specified, the test app uses the default value, which is title. -output <filename> Specifies the name of the output file to which the test application will write the results returned by the data conduit. If this argument is not used, the test application will write all output to standard out. Input File Format The input file provided to the test application must contain a single page or CURL on each line. All lines in the input file will be read sequentially and individually passed to the data conduit as input. The page or CURL contained on each line should appear as it would in the request portion of a Web server log file, i.e. /path/to/file.html or /path/to/curl/0,12,34,00.html. Output File Format The output produced by the test application will contain the following three values per line, in a comma-quote delimited format: 1. The input page or CURL, as read from the input file 2. The output page or page title, as returned by the data conduit 3. The status code returned by the data conduit for the given page or CURL In addition to producing the output described above, the test application will write any errors returned by the data conduit to standard error. Telling NetInsight to Use the Data Conduit You tell NetInsight to use the data conduit by setting the Data Conduits option in the profile options for the profile with which you want to use the data conduit. 9

12 To tell NetInsight to use the data conduit: 1. View the profile with which you want to use the data conduit. 2. Click the Options tab. 3. In the left-hand panel, click Data Conduits under Dynamic Content. 4. Click Add. 5. In the Name of data conduit box, enter the name you want used for the data conduit in the list of data conduits. 6. In the Full path to conduit box, enter the full path (including the filename) to ntdivign.dll (Windows) or ntdivign.so (UNIX). 7. In the Full path to conduit config box, enter the full path (including the filename) to ntdivign.conf. 8. In the Conduit tasks box, select the task for which you are using the data conduit. Select Page Rewrite to modify the value of the CURL that is stored in the NetInsight database. Select Page Title Lookup to store a page title in the NetInsight database in addition to the CURL. The page title will be displayed in NetInsight reports instead of the CURL. 9. Click Save Options and then click Continue. If Vignette is using an Oracle database, you may need to tell NetInsight to set the required environment variables. You do this by specifying environment variable options in the administrative options in NetInsight. The options define the environment variables that should be set when NetInsight is started. If you are not using the Oracle Instant Client, you may need to set ORACLE_HOME and NLS_LANG. Note that if you are using the Unica Web Analytics Data Conduit for Vignette with NetInsight for Oracle, the ORACLE_HOME and NLS_LANG variables are already set for you. If you are using the Oracle Instant Client, you need to set the environment variable that applies to your operating system. Operating system Solaris HP/UX Linux AIX 5 Environment variable LD_LIBRARY_PATH SHLIB_PATH LD_LIBRARY_PATH LIBPATH On Windows systems, ensure that the Oracle Instant Client is in your path. To specify an environment variable: 1. In NetInsight, display the Profile Manager. 2. Click the Options tab. 3. In the left-hand panel, click Main and then click Environment Variables. 4. Click Add. 10

13 5. In the Name of variable box, enter the name of the environment variable you want to set. 6. In the Value of variable box, enter the value to which the environment variable should be set. 7. Click Save Options. Name of variable ORACLE_HOME NLS_LANG Value of variable /home/oracle/u01/app/oracle/product/ AMERICAN_AMERICA.WE8ISO8859P1 Sample Configuration For example, suppose your Vignette Content Management Server generates the following Custom URLs (CURLs): /samplesite/0,1000,1111,00.html /samplesite/0,1000,2222,00.html /samplesite/0,2000,mtexmq%3d%3d,00.html /samplesite/0,2000,mjiymg%3d%3d,00.html /samplesite/0,3000, ,00.html /samplesite/0,3000, ,00.html /samplesite/0,4000,mtiznc01njc4,00.html /samplesite/0,4000,mtexms0ymjiy,00.html /samplesite/0,13,2,00.html /samplesite/0,1111,12,00.html Suppose you also have a database table that stores the titles and ISBNs of books: 11

14 Books Title ISBN AuthorID Category1 Category2 Small Things ISBN: Butterfly Stories ISBN: Willows ISBN: Wild Flowers ISBN: Animal Kingdom ISBN: Wild Animals ISBN: Beautiful Skies ISBN: Little Worries ISBN: Sea Creatures ISBN: Scorpions ISBN: To store the book titles and ISBNs in the NetInsight database in addition to the CURLs, the configuration file for the Unica Web Analytics Data Conduit for Vignette should look like the following: <?xml version="1.0" encoding="iso "?> <ntdivignette> <dbconnect>user;pass;service</dbconnect> <curlregex>\/\d,(\s*?),(\s*?),(\s+?)\.(\s*)</curlregex> <logging level="3">ntdivign.log</logging> <maxcached>15013</maxcached> <nettrackerdir>.</nettrackerdir> <actions> <action templates="1000" decodeobjectids="false"> <query> SELECT Title, ISBN FROM Books WHERE AuthorID = %TEMPLATEID% AND Category1 = %OBJECTID% </query> <format>book: %VALUE1% (%VALUE2%)</format> <searchrules> <searchrule column="2" replacewith="">^(isbn: )</searchrule> </searchrules> </action> <action templates="2000" decodeobjectids="true"> <query> SELECT Title, ISBN FROM Books WHERE AuthorID = %TEMPLATEID% AND Category1 = %OBJECTID% </query> <format>book: %VALUE1% (%VALUE2%)</format> </action> <action templates="3000" splitchar="-" decodeobjectids="false"> <query> SELECT Title, ISBN FROM Books WHERE 12

15 AuthorID = %TEMPLATEID% AND Category1 = %OBJECTID1% AND Category2 = %OBJECTID2% </query> <format>book: %VALUE1% (%VALUE2%)</format> </action> <action templates="4000" splitchar="-" decodeobjectids="true"> <query> SELECT Title, ISBN FROM Books WHERE AuthorID = %TEMPLATEID% AND Category1 = %OBJECTID1% AND Category2 = %OBJECTID2% </query> <format>book: %VALUE1% (%VALUE2%)</format> </action> <action templates="default" fallbacktohttp="true"> <query> SELECT Title FROM Books WHERE AuthorID = %TEMPLATEID% </query> <format>first Book: %VALUE1%</format> </action> </actions> </ntdivignette> You would then add the following data conduit in the Data Conduits option for the NetInsight profile to tell NetInsight to use the data conduit to store page titles: Name of data conduit: Vignette Page Titles Full path to data conduit: C:\Program Files\NetInsight\ntdivign.dll Full path to conduit config: C:\Program Files\NetInsight\ntdivign.conf Conduit tasks: Page Title Lookup This would result in the following output from the test application: "/samplesite/0,1000,1111,00.html","book: Small Things (ISBN: )","MATCH" "/samplesite/0,1000,2222,00.html","book: Butterfly Stories (ISBN: )","MATCH" "/samplesite/0,2000,mtexmq%3d%3d,00.html","book: Willows (ISBN: )","MATCH" "/samplesite/0,2000,mjiymg%3d%3d,00.html","book: Wild Flowers (ISBN: )","MATCH" "/samplesite/0,3000, ,00.html","book: Animal Kingdom (ISBN: )","MATCH" "/samplesite/0,3000, ,00.html","book: Wild Animals (ISBN: )","MATCH" "/samplesite/0,4000,mtiznc01njc4,00.html","book: Beautiful Skies (ISBN: ISBN: )","MATCH" "/samplesite/0,4000,mtexms0ymjiy,00.html","book: Little Worries (ISBN: ISBN: )","MATCH" "/samplesite/0,13,2,00.html","first Book: Sea Creatures","MATCH" "/samplesite/0,1111,12,00.html","first Book: Scorpions","MATCH" The actual NetInsight reports would list the following in the Page column: 13

16 Book: Small Things (ISBN: ) Book: Butterfly Stories (ISBN: ) Book: Willows (ISBN: ) Book: Wild Flowers (ISBN: ) Book: Animal Kingdom (ISBN: ) Book: Wild Animals (ISBN: ) Book: Beautiful Skies (ISBN: ) Book: Little Worries (ISBN: ) First Book: Sea Creatures First Book: Scorpions 14

Affinium NetInsight. Installation Guide. Version 7.4.x

Affinium NetInsight. Installation Guide. Version 7.4.x Affinium NetInsight Installation Guide Version 7.4.x Copyright Copyright Unica Corporation 1996-2008. All rights reserved. Unica Corporation Reservoir Place North 170 Tracer Lane Waltham, MA 02451-1379

More information

IBM Unica Campaign Family Version Publication Date: June 7, Recommended Software Environments and Minimum System Requirements

IBM Unica Campaign Family Version Publication Date: June 7, Recommended Software Environments and Minimum System Requirements IBM Unica Campaign Family Version 8.5.0 Publication Date: June 7, 2011 Recommended Software Environments and Minimum System Requirements Copyright Copyright IBM 2011 IBM Corporation Reservoir Place North

More information

IBM Unica Marketing Operations Version Publication Date: June 7, Recommended Software Environments and Minimum System Requirements

IBM Unica Marketing Operations Version Publication Date: June 7, Recommended Software Environments and Minimum System Requirements IBM Unica Marketing Operations Version 8.5.0 Publication Date: June 7, 2011 Recommended Software Environments and Minimum System Requirements Copyright Copyright IBM 2011 IBM Corporation Reservoir Place

More information

IBM Unica NetInsight Version Publication Date: June 7, Installation Guide

IBM Unica NetInsight Version Publication Date: June 7, Installation Guide IBM Unica NetInsight Version 8.5.0 Publication Date: June 7, 2011 Installation Guide Copyright Copyright IBM 2011 IBM Corporation Reservoir Place North 170 Tracer Lane Waltham, MA 02451-1379 All software

More information

IBM Unica NetInsight Version 8 Release 6.0 May 25, Installation Guide

IBM Unica NetInsight Version 8 Release 6.0 May 25, Installation Guide IBM Unica NetInsight Version 8 Release 6.0 May 25, 2012 Installation Guide Note Before using this information and the product it supports, read the information in Notices on page 27. This edition applies

More information

Creating Domain Templates Using the Domain Template Builder 11g Release 1 (10.3.6)

Creating Domain Templates Using the Domain Template Builder 11g Release 1 (10.3.6) [1]Oracle Fusion Middleware Creating Domain Templates Using the Domain Template Builder 11g Release 1 (10.3.6) E14139-06 April 2015 This document describes how to use the Domain Template Builder to create

More information

1 Installing the Address Verification Server

1 Installing the Address Verification Server Oracle Enterprise Data Quality Installing and Upgrading Oracle Enterprise Data Quality Address Verification Server Release 14.x, 15.x, 16.x E62411-03 March 2016 Oracle Enterprise Data Quality (EDQ) Address

More information

IBM Unica Distributed Marketing Version Publication Date: June 7, Administrator's Guide

IBM Unica Distributed Marketing Version Publication Date: June 7, Administrator's Guide IBM Unica Distributed Marketing Version 8.5.0 Publication Date: June 7, 2011 Administrator's Guide Copyright Copyright IBM 2011 IBM Corporation Reservoir Place North 170 Tracer Lane Waltham, MA 02451-1379

More information

Informatica 9.0 PowerCenter Installation Quick Start Guide

Informatica 9.0 PowerCenter Installation Quick Start Guide Informatica 9.0 PowerCenter Installation Quick Start Guide This quick start includes the following topics: Step 1. Complete the Pre-Installation Tasks, 1 Step 2. Install Informatica Services, 3 Step 3.

More information

Oracle SQL Developer. Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E

Oracle SQL Developer. Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E Oracle SQL Developer Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E39882-02 December 2013 Oracle SQL Developer Oracle TimesTen In-Memory Database Support User's Guide, Release 4.0

More information

Oracle Utilities Customer Care and Billing

Oracle Utilities Customer Care and Billing Oracle Utilities Customer Care and Billing Quick Install Guide Release 2.4.0 Service Pack 3 E37713-04 June 2015 Oracle Utilities Customer Care and Billing Installation Guide E37713-04 Copyright 2015 Oracle

More information

IBM Unica emessage Version Publication Date: June 7, Release Notes

IBM Unica emessage Version Publication Date: June 7, Release Notes IBM Unica emessage Version 8.5.0 Publication Date: June 7, 2011 Release Notes Copyright Copyright IBM 2011 IBM Corporation Reservoir Place North 170 Tracer Lane Waltham, MA 02451-1379 All software and

More information

Oracle Cloud. Using the Google Calendar Adapter Release 16.3 E

Oracle Cloud. Using the Google Calendar Adapter Release 16.3 E Oracle Cloud Using the Google Calendar Adapter Release 16.3 E68599-05 September 2016 Oracle Cloud Using the Google Calendar Adapter, Release 16.3 E68599-05 Copyright 2015, 2016, Oracle and/or its affiliates.

More information

Oracle. Applications Cloud Using Functional Setup Manager. Release 13 (update 18A)

Oracle. Applications Cloud Using Functional Setup Manager. Release 13 (update 18A) Oracle Applications Cloud Release 13 (update 18A) Release 13 (update 18A) Part Number E92071-02 Copyright 2011-2018, Oracle and/or its affiliates. All rights reserved. Authors: Sandesh Posa, Mary Kalway

More information

IBM Unica Interact Version Publication Date: July 14, Installation Guide

IBM Unica Interact Version Publication Date: July 14, Installation Guide IBM Unica Interact Version 8.5.0 Publication Date: July 14, 2011 Installation Guide Copyright Copyright IBM 2011 IBM Corporation Reservoir Place North 170 Tracer Lane Waltham, MA 02451-1379 All software

More information

Oracle Cloud Using the MailChimp Adapter. Release 17.3

Oracle Cloud Using the MailChimp Adapter. Release 17.3 Oracle Cloud Using the MailChimp Adapter Release 17.3 E70293-07 September 2017 Oracle Cloud Using the MailChimp Adapter, Release 17.3 E70293-07 Copyright 2016, 2017, Oracle and/or its affiliates. All rights

More information

Oracle Cloud Using the Google Calendar Adapter. Release 17.3

Oracle Cloud Using the Google Calendar Adapter. Release 17.3 Oracle Cloud Using the Google Calendar Adapter Release 17.3 E68599-09 October 2017 Oracle Cloud Using the Google Calendar Adapter, Release 17.3 E68599-09 Copyright 2015, 2017, Oracle and/or its affiliates.

More information

Affinium Campaign Optimize

Affinium Campaign Optimize Affinium Campaign Optimize User's Guide Version 7.5.x Copyright Copyright Unica Corporation 2003-2008. All rights reserved. Unica Corporation Reservoir Place North 170 Tracer Lane Waltham, MA 02451-1379

More information

IBM Unica Optimize Version Publication Date: June 7, Installation Guide

IBM Unica Optimize Version Publication Date: June 7, Installation Guide IBM Unica Optimize Version 8.5.0 Publication Date: June 7, 2011 Installation Guide Copyright Copyright IBM 2011 IBM Corporation Reservoir Place North 170 Tracer Lane Waltham, MA 02451-1379 All software

More information

About these Release Notes

About these Release Notes Pro*C/C++ Release Notes 18c E84346-01 February 2018 Release Notes About these Release Notes This document contains important information about Pro*C/C++ release 18c, version 18.1. It contains the following

More information

Creating WebLogic Domains Using the Configuration Wizard 12c (12.1.3)

Creating WebLogic Domains Using the Configuration Wizard 12c (12.1.3) [1]Oracle Fusion Middleware Creating WebLogic 12.1.3 Domains Using the Configuration Wizard 12c (12.1.3) E41890-02 August 2015 This document describes how to use the Configuration Wizard to create, update,

More information

Business Processes and Rules: Siebel Enterprise Application Integration. Siebel Innovation Pack 2013 Version 8.1/8.

Business Processes and Rules: Siebel Enterprise Application Integration. Siebel Innovation Pack 2013 Version 8.1/8. Business Processes and Rules: Siebel Enterprise Application Integration Siebel Innovation Pack 2013 September 2013 Copyright 2005, 2013 Oracle and/or its affiliates. All rights reserved. This software

More information

IBM Rational Synergy DCM-GUI

IBM Rational Synergy DCM-GUI IBM Rational Synergy DCM-GUI Release 7.2.1.1 IBM Rational Synergy - 1 - This edition applies to IBM Rational Synergy version 7.2.1.1, and to all subsequent releases and modifications until otherwise indicated

More information

Oracle Cloud Using the Google Calendar Adapter with Oracle Integration

Oracle Cloud Using the Google Calendar Adapter with Oracle Integration Oracle Cloud Using the Google Calendar Adapter with Oracle Integration E85501-05 January 2019 Oracle Cloud Using the Google Calendar Adapter with Oracle Integration, E85501-05 Copyright 2017, 2019, Oracle

More information

TIBCO iprocess Objects (Java) Installation. Software Release 10.4 May 2010

TIBCO iprocess Objects (Java) Installation. Software Release 10.4 May 2010 TIBCO iprocess Objects (Java) Installation Software Release 10.4 May 2010 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE

More information

Oracle Retail Category Management Release Notes Release April 2007

Oracle Retail Category Management Release Notes Release April 2007 Oracle Retail Category Management Release Notes Release 12.0.4.2 April 2007 Oracle Category Management Release Notes, Release 12.0.4.2 Copyright 2007, Oracle. All rights reserved. Primary Author: Gary

More information

Installation Instructions

Installation Instructions Installation Instructions Oracle Health Sciences Argus Mart Data and Argus Signal Management for Use with Empirica Signal 8.1 Part number: E70267-01 Copyright 2002, 2016, Oracle and/or its affiliates.

More information

CGI Web Server e*way Intelligent Adapter User s Guide

CGI Web Server e*way Intelligent Adapter User s Guide CGI Web Server e*way Intelligent Adapter User s Guide Release 5.0.5 for Schema Run-time Environment (SRE) Monk Version Copyright 2005, 2010, Oracle and/or its affiliates. All rights reserved. This software

More information

Affinium Campaign. Installation Guide. Version 7.0.1

Affinium Campaign. Installation Guide. Version 7.0.1 Affinium Campaign Installation Guide Version 7.0.1 Copyright Copyright, Unica Corporation 1998-2006. All rights reserved. Unica Corporation Reservoir Place North 170 Tracer Lane Waltham, MA 02451-1379

More information

Version 11 Release 0 May 31, IBM Interact - GDPR IBM

Version 11 Release 0 May 31, IBM Interact - GDPR IBM Version 11 Release 0 May 31, 2018 IBM Interact - GDPR IBM This edition applies to version 11.0 of IBM Interact and to all subsequent releases and modifications until otherwise indicated in new editions.

More information

COGNOS (R) ENTERPRISE PLANNING SERIES

COGNOS (R) ENTERPRISE PLANNING SERIES COGNOS (R) ENTERPRISE PLANNING SERIES COGNOS PLANNING CONTRIBUTOR CLIENT LOADER INSTALLATION GUIDE Contributor Client Loader User Guide DD-MM-YYYY Contributor Client Loader please update with product version

More information

IBM Kenexa LCMS Premier on Cloud. Release Notes. Version 9.3

IBM Kenexa LCMS Premier on Cloud. Release Notes. Version 9.3 IBM Kenexa LCMS Premier on Cloud Release Notes Version 9.3 IBM Kenexa LCMS Premier on Cloud Release Notes Version 9.3 Note Before using this information and the product it supports, read the information

More information

Speaker Notes. IBM Software Group Rational software. Exporting records from ClearQuest

Speaker Notes. IBM Software Group Rational software. Exporting records from ClearQuest Speaker Notes IBM Software Group Rational software IBM Rational ClearQuest Exporting records from ClearQuest Updated October 23, 2007 This presentation will cover exporting records from IBM Rational ClearQuest.

More information

Nimsoft Service Desk. Single Sign-On Configuration Guide. [assign the version number for your book]

Nimsoft Service Desk. Single Sign-On Configuration Guide. [assign the version number for your book] Nimsoft Service Desk Single Sign-On Configuration Guide [assign the version number for your book] Legal Notices Copyright 2012, CA. All rights reserved. Warranty The material contained in this document

More information

Tivoli Management Solution for Microsoft SQL. Statistics Builder. Version 1.1

Tivoli Management Solution for Microsoft SQL. Statistics Builder. Version 1.1 Tivoli Management Solution for Microsoft SQL Statistics Builder Version 1.1 Tivoli Management Solution for Microsoft SQL Statistics Builder Version 1.1 Tivoli Management Solution for Microsoft SQL Copyright

More information

Oracle Fusion Middleware Creating Domain Templates Using the Domain Template Builder. 12c ( )

Oracle Fusion Middleware Creating Domain Templates Using the Domain Template Builder. 12c ( ) Oracle Fusion Middleware Creating Domain Templates Using the Domain Template Builder 12c (12.2.1.3) E95527-01 May 2018 Oracle Fusion Middleware Creating Domain Templates Using the Domain Template Builder,

More information

Agile Customer Needs Management

Agile Customer Needs Management Agile Customer Needs Management Implementation Guide Version 1.0 E17325-02 May 2010 Oracle Copyright Copyright 1995, 2010, Oracle and/or its affiliates. All rights reserved. This software and related documentation

More information

Oracle Financial Services Behavior Detection Platform: Administration Tools User Guide. Release May 2012

Oracle Financial Services Behavior Detection Platform: Administration Tools User Guide. Release May 2012 Oracle Financial Services Behavior Detection Platform: Administration Tools User Guide Release 6.1.1 May 2012 Oracle Financial Services Behavior Detection Platform: Administration Tools User Guide Release

More information

Spend less on file attachment storage space Reliably back up your data or file attachments Use your OpenAir data in your reporting tools

Spend less on file attachment storage space Reliably back up your data or file attachments Use your OpenAir data in your reporting tools Spend less on file attachment storage space Reliably back up your data or file attachments Use your OpenAir data in your reporting tools With OpenAir s Automatic Backup System (ABS) and Workspace downloads,

More information

BEAWebLogic. Portal. MobileAware Interaction Server Installation Guide

BEAWebLogic. Portal. MobileAware Interaction Server Installation Guide BEAWebLogic Portal MobileAware Interaction Server Installation Guide Version 8.1 with Service Pack 3 (MobileAware Version 1.0) Document Revised: September 2004 Copyright Copyright 2004 BEA Systems, Inc.

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Administering Web Services 12c (12.1.2) E28131-01 June 2013 Documentation for developers and administrators that describes how to administer Web services. Oracle Fusion Middleware

More information

SIEBEL ANALYTICS INSTALLATION AND CONFIGURATION GUIDE

SIEBEL ANALYTICS INSTALLATION AND CONFIGURATION GUIDE SIEBEL ANALYTICS INSTALLATION AND CONFIGURATION GUIDE VERSION 7.7, REV. A MARCH 2004 Siebel Systems, Inc., 2207 Bridgepointe Parkway, San Mateo, CA 94404 Copyright 2004 Siebel Systems, Inc. All rights

More information

SAS Scalable Performance Data Server 4.45

SAS Scalable Performance Data Server 4.45 SAS Scalable Performance Data Server 4.45 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2008. SAS Scalable Performance Data Server

More information

Oracle Test Manager. Test Manager User s Guide Release E

Oracle Test Manager. Test Manager User s Guide Release E Oracle Test Manager Test Manager User s Guide Release 12.3.0.1 E15486-10 July 2013 Oracle Test Manager Test Manager User's Guide, Release 12.3.0.1 E15486-10 Copyright 1997, 2013, Oracle and/or its affiliates.

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Creating Domains Using the Configuration Wizard 11g Release 1 (10.3.4) E14140-04 January 2011 This document describes how to use the Configuration Wizard to create, update, and

More information

CRM On Demand. Oracle CRM On Demand Report Services API Developer s Guide

CRM On Demand. Oracle CRM On Demand Report Services API Developer s Guide CRM On Demand Oracle CRM On Demand Report Services API Developer s Guide Release 31 February 2016 Copyright 2005, 2016 Oracle. All rights reserved. This software and related documentation are provided

More information

Cover Page. Oracle Report Parser System Administration Guide 10g Release 3 ( ) March 2007

Cover Page. Oracle Report Parser System Administration Guide 10g Release 3 ( ) March 2007 Cover Page Oracle Report Parser System Administration Guide 10g Release 3 (10.1.3.3.0) March 2007 Oracle Report Parser System Administration Guide, 10g Release 3 (10.1.3.3.0) Copyright 2007, Oracle. All

More information

Advanced ARC Reporting

Advanced ARC Reporting COPYRIGHT & TRADEMARKS Copyright 1998, 2009, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks

More information

Installing Data Sync Version 2.3

Installing Data Sync Version 2.3 Oracle Cloud Data Sync Readme Release 2.3 DSRM-230 May 2017 Readme for Data Sync This Read Me describes changes, updates, and upgrade instructions for Data Sync Version 2.3. Topics: Installing Data Sync

More information

AvePoint Governance Automation 2. Release Notes

AvePoint Governance Automation 2. Release Notes AvePoint Governance Automation 2 Release Notes Service Pack 2, Cumulative Update 1 Release Date: June 2018 New Features and Improvements In the Create Office 365 Group/Team service > Governance Automation

More information

Oracle Hospitality Materials Control Mobile Solutions. Installation and Configuration Guide

Oracle Hospitality Materials Control Mobile Solutions. Installation and Configuration Guide Oracle Hospitality Materials Control Mobile Solutions Installation and Configuration Guide Release 18.1 E99521-03 October 2018 Oracle Hospitality Materials Control Mobile Solutions Installation and Configuration

More information

Batch Versions Guide Release 9.2

Batch Versions Guide Release 9.2 [1]JD Edwards EnterpriseOne Tools Batch Versions Guide Release 9.2 E53572-01 October 2015 Describes how to create and process versions of report templates. JD Edwards EnterpriseOne Tools Batch Versions

More information

Oracle Cloud Using the Microsoft Adapter. Release 17.3

Oracle Cloud Using the Microsoft  Adapter. Release 17.3 Oracle Cloud Using the Microsoft Email Adapter Release 17.3 E70297-10 December 2017 Oracle Cloud Using the Microsoft Email Adapter, Release 17.3 E70297-10 Copyright 2016, 2017, Oracle and/or its affiliates.

More information

TaskCentre v4.5 SalesLogix Connector Tool White Paper

TaskCentre v4.5 SalesLogix Connector Tool White Paper TaskCentre v4.5 SalesLogix Connector Tool White Paper Document Number: WP010-04 Issue: 01 Orbis Software Limited 2008 Table of Contents ABOUT SALESLOGIX CONNECTOR TOOL... 1 INTRODUCTION... 3 SalesLogix

More information

Configuration Instructions. SAS Service Pack. Overview. SAS/ACCESS Interface to ODBC

Configuration Instructions. SAS Service Pack. Overview. SAS/ACCESS Interface to ODBC Configuration Instructions SAS 9.1.3 Service Pack Overview Certain SAS products require configuration after they have been updated by the SAS 9.1.3 Service Pack. If your original installation included

More information

Oracle NoSQL Database Integration with SQL Developer. Release 18.1

Oracle NoSQL Database Integration with SQL Developer. Release 18.1 Oracle NoSQL Database Integration with SQL Developer Release 18.1 E88121-03 April 2018 Oracle NoSQL Database Integration with SQL Developer, Release 18.1 E88121-03 Copyright 2017, 2018, Oracle and/or its

More information

Siebel Analytics Platform Installation and Configuration Guide. Version 7.8.4, Rev. A February 2006

Siebel Analytics Platform Installation and Configuration Guide. Version 7.8.4, Rev. A February 2006 Siebel Analytics Platform Installation and Configuration Guide Version February 2006 Siebel Systems, Inc., 2207 Bridgepointe Parkway, San Mateo, CA 94404 Copyright 2006 Siebel Systems, Inc. All rights

More information

Oracle Cloud Using the Evernote Adapter. Release 17.3

Oracle Cloud Using the Evernote Adapter. Release 17.3 Oracle Cloud Using the Evernote Adapter Release 17.3 E69234-07 September 2017 Oracle Cloud Using the Evernote Adapter, Release 17.3 E69234-07 Copyright 2016, 2017, Oracle and/or its affiliates. All rights

More information

Governance, Risk, and Compliance Controls Suite. Preventive Controls Governor Audit Rules User s Guide. Software Version

Governance, Risk, and Compliance Controls Suite. Preventive Controls Governor Audit Rules User s Guide. Software Version Governance, Risk, and Compliance Controls Suite Preventive Controls Governor Audit Rules User s Guide Software Version 7.2.2.1 Preventive Conrols Governor: Audit Rules User s Guide Part No. AR002-7221A

More information

Oracle Hospitality OPERA Exchange Interface Cloud Authentication. October 2017

Oracle Hospitality OPERA Exchange Interface Cloud Authentication. October 2017 Oracle Hospitality OPERA Exchange Interface Cloud Authentication October 2017 Copyright 2016, 2017, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided

More information

Contents About This Guide... 5 Installing P6 Professional API... 7 Authentication Modes... 9 Legal Notices... 14

Contents About This Guide... 5 Installing P6 Professional API... 7 Authentication Modes... 9 Legal Notices... 14 P6 Professional Integration API Configuration Guide for On-Premises Version 17 July 2017 Contents About This Guide... 5 Installing P6 Professional API... 7 What is the P6 Professional API?... 7 System

More information

Oracle WebLogic Server

Oracle WebLogic Server Oracle WebLogic Server Creating WebLogic Domains Using the Configuration Wizard 10g Release 3 (10.1.3) August 2008 Oracle WebLogic Server Creating WebLogic Domains Using the Configuration Wizard, 10g Release

More information

Oracle. Field Service Cloud Using Android and ios Mobile Applications 18B

Oracle. Field Service Cloud Using Android and ios Mobile Applications 18B Oracle Field Service Cloud Using Android and ios Mobile Applications 18B Part Number: E94755-02 Copyright 2018, Oracle and/or its affiliates. All rights reserved Authors: The Field Service Cloud Information

More information

Oracle iplanet Web Server Integration Guide

Oracle iplanet Web Server Integration Guide Oracle iplanet Web Server Integration Guide Document Information Document Part Number 007-012078-001 (Rev C) Release Date November 2015 Trademarks All intellectual property is protected by copyright. All

More information

SAS Event Stream Processing 5.2: Visualizing Event Streams with Streamviewer

SAS Event Stream Processing 5.2: Visualizing Event Streams with Streamviewer SAS Event Stream Processing 5.2: Visualizing Event Streams with Streamviewer Overview Streamviewer is a graphical user interface that visualizes events streaming through event stream processing models.

More information

HP OpenView Service Desk

HP OpenView Service Desk HP OpenView Service Desk OpenView Operations Integration Administrator s Guide Software Version: 5.10 For the Windows and UNIX Operating Systems Manufacturing Part Number: None Document Release Date: August

More information

IBM Security QRadar Version Customizing the Right-Click Menu Technical Note

IBM Security QRadar Version Customizing the Right-Click Menu Technical Note IBM Security QRadar Version 7.2.0 Technical Note Note: Before using this information and the product that it supports, read the information in Notices and Trademarks on page 3. Copyright IBM Corp. 2012,

More information

Introduction to Administration

Introduction to Administration Oracle Enterprise Manager Ops Center Administer Your Environment Using Oracle Enterprise Manager Ops Center 12c Release 3 (12.3.0.0.0) E59991-01 June 2015 This guide provides an end-to-end example for

More information

DocAve. Release Notes. Governance Automation Service Pack 5 Cumulative Update 2. For Microsoft SharePoint

DocAve. Release Notes. Governance Automation Service Pack 5 Cumulative Update 2. For Microsoft SharePoint DocAve Governance Automation Service Pack 5 Cumulative Update 2 Release Notes For Microsoft SharePoint Released March 10, 2015 Governance Automation SP5 CU2 Update Details Refer to the Updating Governance

More information

Oracle Utilities Customer Care and Billing

Oracle Utilities Customer Care and Billing Oracle Utilities Customer Care and Billing Quick Install Guide Release 2.5.0 E61796-01 May 2015 Oracle Utilities Customer Care and Billing Quick Install Guide E61796-01 Copyright 2000, 2015, Oracle and/or

More information

SAS Data Integration Studio 3.3. User s Guide

SAS Data Integration Studio 3.3. User s Guide SAS Data Integration Studio 3.3 User s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS Data Integration Studio 3.3: User s Guide. Cary, NC: SAS Institute

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

HYPERION SYSTEM 9 BI+ ANALYTIC SERVICES RELEASE 9.2 ANALYTIC SQL INTERFACE GUIDE

HYPERION SYSTEM 9 BI+ ANALYTIC SERVICES RELEASE 9.2 ANALYTIC SQL INTERFACE GUIDE HYPERION SYSTEM 9 BI+ ANALYTIC SERVICES RELEASE 9.2 ANALYTIC SQL INTERFACE GUIDE Copyright 1998 2006 Hyperion Solutions Corporation. All rights reserved. Hyperion, the Hyperion H logo, and Hyperion s product

More information

Routing EDIFACT Documents in Productions

Routing EDIFACT Documents in Productions Routing EDIFACT Documents in Productions Version 2018.1 2018-01-31 InterSystems Corporation 1 Memorial Drive Cambridge MA 02142 www.intersystems.com Routing EDIFACT Documents in Productions InterSystems

More information

Centrify Infrastructure Services

Centrify Infrastructure Services Centrify Infrastructure Services Evaluation Guide for Windows November 2017 (release 2017.2) Centrify Corporation Legal notice This document and the software described in this document are furnished under

More information

Release for Microsoft Windows

Release for Microsoft Windows [1]Oracle Fail Safe Tutorial Release 4.1.1 for Microsoft Windows E57061-02 April 2015 Oracle Fail Safe Tutorial, Release 4.1.1 for Microsoft Windows E57061-02 Copyright 1999, 2015, Oracle and/or its affiliates.

More information

CA Clarity Project & Portfolio Manager

CA Clarity Project & Portfolio Manager CA Clarity Project & Portfolio Manager CA Clarity PPM Connector for Microsoft SharePoint Product Guide v1.1.0 Second Edition This documentation and any related computer software help programs (hereinafter

More information

GRCC Reporting Framework BIP for GRCC Admin/Implementation Guide

GRCC Reporting Framework BIP for GRCC Admin/Implementation Guide GRCC Reporting Framework BIP for GRCC Admin/Implementation Guide GRCC Reporting Framework BIP for GRCC Admin/Implementation Guide Copyright 2009 Oracle Corporation and/or its affiliates. All rights reserved.

More information

Location Intelligence Infrastructure Asset Management. Confirm. Confirm Task Processor - Street Works Transfer Version v17.20a.am

Location Intelligence Infrastructure Asset Management. Confirm. Confirm Task Processor - Street Works Transfer Version v17.20a.am Location Intelligence Infrastructure Asset Management Confirm Confirm Task Processor - Street Works Transfer Version v17.20a.am Information in this document is subject to change without notice and does

More information

Oracle Utilities Mobile Workforce Management

Oracle Utilities Mobile Workforce Management Oracle Utilities Mobile Workforce Management Quick Install Guide Release 2.0.1 E17821-02 July 2010 Oracle Utilities Mobile Workforce Management Quick Install Guide E17821-02 Copyright 2000, 2010, Oracle

More information

INTERNET DEVELOPERS TOOLKIT FOR G

INTERNET DEVELOPERS TOOLKIT FOR G INSTALLATION AND RELEASE NOTES INTERNET DEVELOPERS TOOLKIT FOR G Version 5.0 Contents These installation and release notes contain information about the Internet Developers Toolkit for G, which you can

More information

PTC Windchill Quality Solutions Extension for ThingWorx Guide

PTC Windchill Quality Solutions Extension for ThingWorx Guide PTC Windchill Quality Solutions Extension for ThingWorx Guide Copyright 2016 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. User and training guides and related documentation from PTC Inc.

More information

SIEBEL ANALYTICS USER GUIDE

SIEBEL ANALYTICS USER GUIDE SIEBEL ANALYTICS USER GUIDE VERSION 7.5, REV. C 12-F26S73 MARCH 2003 Siebel Systems, Inc., 2207 Bridgepointe Parkway, San Mateo, CA 94404 Copyright 2003 Siebel Systems, Inc. All rights reserved. Printed

More information

Oracle. Risk Management Cloud Creating Analytics and Reports. Release 13 (update 17D)

Oracle. Risk Management Cloud Creating Analytics and Reports. Release 13 (update 17D) Oracle Risk Management Cloud Release 13 (update 17D) Release 13 (update 17D) Part Number E89287-01 Copyright 2011-2017, Oracle and/or its affiliates. All rights reserved. Author: David Christie This software

More information

Administration Tools User Guide. Release April 2015

Administration Tools User Guide. Release April 2015 Administration Tools User Guide Release 6.2.5 April 2015 Administration Tools User Guide Release 6.2.5 April 2015 Part Number: E62969_05 Oracle Financial Services Software, Inc. 1900 Oracle Way Reston,

More information

Liant Software Corporation. Relativity. UNIX Data Client Installation Guide. First Edition

Liant Software Corporation. Relativity. UNIX Data Client Installation Guide. First Edition Liant Software Corporation Relativity UNIX Data Client Installation Guide First Edition Copyright 1994-2005 by Liant Software Corporation. All rights reserved. Printed in U.S.A. No part of this publication

More information

Oracle Hospitality Suite8 XML Export of Invoice Data for Hungarian Tax Authority Release and Higher E November 2016

Oracle Hospitality Suite8 XML Export of Invoice Data for Hungarian Tax Authority Release and Higher E November 2016 Oracle Hospitality Suite8 XML Export of Invoice Data for Hungarian Tax Authority Release 8.7.4 and Higher E81378-01 November 2016 Copyright 2002, 2016, Oracle and/or its affiliates. All rights reserved.

More information

Agile e Installation Manual for Agile e6.0.4 on UNIX Server. Part Number: INSUNIX-604B

Agile e Installation Manual for Agile e6.0.4 on UNIX Server. Part Number: INSUNIX-604B Agile e6.0.4 Installation Manual for Agile e6.0.4 on UNIX Server Part Number: INSUNIX-604B Copyrights and Trademarks Copyright 1992, 2007 Oracle and/or its affiliates. All rights reserved. The Programs

More information

COGNOS (R) ENTERPRISE BI SERIES COGNOS REPORTNET (TM)

COGNOS (R) ENTERPRISE BI SERIES COGNOS REPORTNET (TM) COGNOS (R) ENTERPRISE BI SERIES COGNOS REPORTNET (TM) GETTING STARTED Cognos ReportNet Getting Started 07-05-2004 Cognos ReportNet 1.1MR1 Type the text for the HTML TOC entry Type the text for the HTML

More information

Notification Template Limitations. Bridge Limitations

Notification Template Limitations. Bridge Limitations Oracle Cloud Known Issues for Oracle Identity Cloud Service Release 18.1.2 E55915-17 February 2018 Notification Template Limitations Note the following limitations with Oracle Identity Cloud Service notification

More information

Oracle Database Express Edition

Oracle Database Express Edition Oracle Database Express Edition Getting Started Guide 11g Release 2 (11.2) E18585-04 July 2011 Welcome to Oracle Database Express Edition (Oracle Database XE). This guide gets you quickly up and running

More information

Oracle WebCenter WSRP Consumer

Oracle WebCenter WSRP Consumer Oracle WebCenter WSRP Consumer Installation Guide Release 10g Release 3 (10.3) October 2008 Installation Guide for Oracle WebCenter WSRP Consumer, Release 10g Release 3 (10.3) Copyright 2007, 2008, Oracle

More information

Agile e Installation Manual for Agile e6.0.2 on UNIX Server. Part Number: INSUNIX-602A

Agile e Installation Manual for Agile e6.0.2 on UNIX Server. Part Number: INSUNIX-602A Agile e6.0.2 Installation Manual for Agile e6.0.2 on UNIX Server Part Number: INSUNIX-602A Copyrights and Trademarks Copyright 1992-2006 Agile Software Corporation. All rights reserved. You shall not create

More information

Oracle SQL Developer TimesTen In-Memory Database Support. Changes for Release 3.0 from Release 2.1.1

Oracle SQL Developer TimesTen In-Memory Database Support. Changes for Release 3.0 from Release 2.1.1 Oracle SQL Developer TimesTen In-Memory Database Support Release Notes Release 3.0 Early Adopter 1 E18439-01 September 2010 This document provides late-breaking information as well as information that

More information

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

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

More information

HP Network Node Manager i-series Software

HP Network Node Manager i-series Software HP Network Node Manager i-series Software For the Windows, HP-UX, Linux, and Solaris operating systems Software Version: NNMi 8.1x patch 4 (8.12) Online Help: Document Release Date: June 2009 Software

More information

About these Release Notes

About these Release Notes Pro*COBOL Release Notes 18c E84345-01 February 2018 Release Notes About these Release Notes This document contains important information about Pro*COBOL release 18c, version 18.1. It contains the following

More information

CA Workload Automation Agent for Oracle E-Business Suite

CA Workload Automation Agent for Oracle E-Business Suite CA Workload Automation Agent for Oracle E-Business Suite Implementation Guide r11.3, Second Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter

More information

DataFlux Web Studio 2.5. Installation and Configuration Guide

DataFlux Web Studio 2.5. Installation and Configuration Guide DataFlux Web Studio 2.5 Installation and Configuration Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2014. DataFlux Web Studio 2.5: Installation and Configuration

More information

Oracle Transportation Mobile. Guide Release 1.3 Part No. E

Oracle Transportation Mobile. Guide Release 1.3 Part No. E Oracle Transportation Mobile Guide Release 1.3 Part No. E92144-02 March 2018 Copyright Notice Oracle Transportation Mobile Guide, Release 1.3 Part No. E92144-02 Copyright 2016, 2018, Oracle and/or its

More information