EnterpriseOne Release 8.9 Installing and Running the Convert CCSID Tool PeopleBook

Size: px
Start display at page:

Download "EnterpriseOne Release 8.9 Installing and Running the Convert CCSID Tool PeopleBook"

Transcription

1 EnterpriseOne Release 8.9 Installing and Running the Convert CCSID Tool PeopleBook September 2003

2

3 Copyright 2003 PeopleSoft, Inc. All rights reserved. All material contained in this documentation is proprietary and confidential to PeopleSoft, Inc. ("PeopleSoft"), protected by copyright laws and subject to the nondisclosure provisions of the applicable PeopleSoft agreement. No part of this documentation may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, including, but not limited to, electronic, graphic, mechanical, photocopying, recording, or otherwise without the prior written permission of PeopleSoft. This documentation is subject to change without notice, and PeopleSoft does not warrant that the material contained in this documentation is free of errors. Any errors found in this document should be reported to PeopleSoft in writing. The copyrighted software that accompanies this document is licensed for use only in strict accordance with the applicable license agreement which should be read carefully as it governs the terms of use of the software and this document, including the disclosure thereof. PeopleSoft, PeopleTools, PS/nVision, PeopleCode, PeopleBooks, PeopleTalk, and Vantive are registered trademarks, and Pure Internet Architecture, Intelligent Context Manager, and The Real-Time Enterprise are trademarks of PeopleSoft, Inc. All other company and product names may be trademarks of their respective owners. The information contained herein is subject to change without notice. Open Source Disclosure This product includes software developed by the Apache Software Foundation ( Copyright (c) The Apache Software Foundation. All rights reserved. THIS SOFTWARE IS PROVIDED AS IS AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PeopleSoft takes no responsibility for its use or distribution of any open source or shareware software or documentation and disclaims any and all liability or damages resulting from use of said software or documentation.

4

5 Introduction Table of Contents INTRODUCTION...6 BEFORE YOU BEGIN...7 INSTALLATION...8 Installing the CCSID Conversion Tool...8 ALTER TABLE OPTION...10 Changing the target CCSID values...10 To convert CCSID using Alter Tables...11 COPY TABLE OPTION...12 To convert CCSID using Copy Table...12 AUDIT A LIBRARY...16 Page 5

6 Introduction When tables were created through the World software, half of the alpha columns in the table were flagged with CCSID Prior to Release 8.9, OneWorld handled these columns with the Translate and Do Not Translate ODBC data sources. Tables in a Translate ODBC data source used IBM Client Access translation algorithms to translate data from EBCDIC to ASCII when reading from a server, and translate from ASCII to EBCDIC when writing to the server. Processes running on the server (CallObj Kernel; UBEs) did not need to do translations, as they were running in EBCDIC and the data was stored in EBCDIC. In Release 8.9, we are using algorithms similar to the Client Access algorithms, provided by IBM as part of SQL on the server, to translate from the country specific codepage (for example, 37 for USA English) to Unicode. The OneWorld code base in Release 8.9 is Unicode, and all strings and characters must be translated to Unicode before passing them into the Release 8.9 code base. The IBM algorithms will NOT translate any columns flagged with CCSID 65535, therefore the CallObj Kernels and UBEs would not be able to read alpha data from these tables. Page 6

7 Before You Begin Before You Begin The following procedures and considerations must be done before running this tool: Must be at V5R1 or later Back up all libraries that are to be converted Page 7

8 Installation Installing the CCSID Conversion tool is the first process to converting the data. Installing the CCSID Conversion Tool 1. Sign onto your AS/400 as QSECOFR. 2. Create a temporary library in which to place the software from the download by entering the following command: CRTLIB JDETEMP 3. Create a save file (SAVF) for the software in preparation for the transfer by entering the following command: CRTSAVF JDETEMP/CCSIDCONV 4. On the machine you have downloaded the one-off to, open a DOS window, then open a file transfer protocol (FTP) session connecting to the AS/400 machine you are using for your enterprise server, and enter the following commands: c:\>ftp youras400name User <youras400name:<none>>: qsecofr [Enter password.] Password: 5. Change directory to the JDETEMP library on the AS/400 by entering the following command: ftp:> cd jdetemp [ jdetemp is current library.] 6. Change the local directory to the directory containing the AS/400 SAVFs using the lcd command, as shown below: ftp> lcd c:\oneworld Fixes\CCSIDCONV [Your local directory is now c:\oneworld Fixes\CCSIDCONV.] 7. Change the mode of transfer to binary by entering the following command: ftp> binary 8. Upload the CCSIDCONV SAVF to the AS/400 by entering the following command: Page 8

9 Installation ftp> put CCSIDCONV 9. Close FTP by entering the following command: ftp> quit 10. Restore the library containing the tool by entering the following commands: RSTLIB SAVLIB(CCSIDCONV) DEV(*SAVF) SAVF(JDETEMP/CCSIDCONV) 11. Before running the tool, rebuild the system SQL cross-reference tables by entering the following commands. Note: These commands can only be executed when the system is restricted. As a result, the system should first be brought to a restricted state with the ENDSYS or ENDSBS commands. ENDSBS *ALL *IMMED Monitor the QSYSOPR message queue, wait for the message System in restricted state then enter: RCLSTG *DBXREF (This command will take from 15 minutes to several hours, depending on the number of data libraries.) 12. To make sure the cross-reference tables are okay after the rebuild, go into STRSQL and enter the following commands: SELECT * FROM SYSTABLES SELECT * FROM SYSCOLUMNS 13. Make sure there are entries in both of these. If there are no entries, contact IBM. 14. The user profile that is use to run any of these tools must be defined with CCSID 37. For example, if you are going to run as QSECOFR, enter the following: DSPUSRPRF QSECOFR 15. If necessary, change the CCSID that QSECOFR is currently using: CHGUSRPRF QSECOFR CCSID(37) 16. Sign off and sign back on again with the following commands: ADDLIBLE CCSIDCONV GO G96CCSID Do not try to run the tools while deleting, restoring or renaming data libraries. After deleting, restoring, or renaming libraries, wait for the QDBSRVXR QDBSRVXR2 jobs to show 0 CPU utilization before proceeding. Page 9

10 Alter Table Option This command changes the definition of the alpha columns in the tables from CCSID to the CCSID you choose. It does not touch the data in the tables. You must have *ALLOBJ or *OBJALTER rights to all the tables in the library in order to run this option. Back up the libraries before you start. Changing the target CCSID values The commands J96ALTER and J96ALTERS have a list of allowed values for the target CCSID. If your target CCSID is not in this list, you will need to change the commands using the following steps: 1. STRPDM option 3 library CCSIDCONV, file QCMDSRC. 2. Key in the source type CMD in the Type column. 3. Take option 2 against the J96ALTER and J96ALTERS members. 4. Prompt (P in the line number or position within the text and press F4) the CCSID keyword. Add your target CCSID to the list of allowed CCSIDs. 5. Press F3, and then Y to save your changes. 6. Type in option 14 next to both commands, and press enter. The double byte CCSIDs have special coding in the tool to assign the corresponding single byte CCSID to columns too short to have the double byte CCSID assigned to them. If your double byte CCSID is not in the list of allowed CCSIDs in the command that was shipped, you are not able to use this tool against your database. Run the Alter Table process against your OneWorld Data Dictionary library as well. Note: The Alter Table process causes updates and COMMITs to the system SQL cross reference tables. A lot of concurrent update activity against the system cross reference tables sometimes causes corruption of these tables. Try not to restore, delete or rename data libraries on your AS/400 while running the Alter Table process. If you need to restore your data library and re-run the Alter Table process, wait for the QDBSRVXR2 process to quiesce before proceeding. On WRKACTJOB toward the Page 10

11 Alter Table Option bottom of the display, you can see the amount of CPU this process is using. Wait for it to fall to 0%. To convert CCSID using Alter Tables 1. On the AS/400, determine your target CCSID. For Western European, this usually will be 37. If you are not sure, look at the Client Access data source jobs (QZDASOINIT in subsystem QSERVER), and see what CCSID they are running with. 2. The Alter Table process adds an entry to your System Reply List: 943 CPA32B2 C This prevents the job from issuing an Inquiry message for each table that it cannot alter (see errors below). 3. Take option to run Alter Table against a library. It will take approximately ½ - 1½ hours for Business Data (2,800 tables in Business Data much faster for less tables depends on the speed of your AS/400). The default is to submit the alter process to batch. Repeat this step for each library that needs converting. It changes the logging level of that job to (4 10 *SECLVL). 4. Examine the report. The tables that failed are at the top of the report (status 50). The tables that completed with warnings are next at status 40. Failures and warnings ask you to examine the joblog. Display the joblog, and search for the table name that failed. Look at the tables that failed. Most usual cause of errors is that the table is not a co-existence table (OneWorld doesn t know about it), and its format is not compatible with SQL. Check whether the table is a OneWorld table. If it is, you may need to use the Copy Table method to convert it. Typical errors: Status 50: Alter table may cause a loss of data in column xxx Status 40: CHGPF MAXMBRS(1) cannot complete because there is more than one member in the file Page 11

12 Copy Table Option To convert CCSID using Copy Table 1. Sign onto the Deployment Server in the JDEPLAN environment. 2. Create new data sources for Business Data, Control tables and Common library pointing to new (empty) libraries you created on the AS/400 (for example, CRPDTAN, CRPCTLN). 3. Copy the source environment (for example, PD7333). Change the default table mapping for new environment to your new Business Data xxx data source. 4. Filter on OCM rows for the new environment for Control Tables, and change to your new Control Tables data source. Change the Common mappings to point to your new Common data source. 5. In the new environment, inactivate the old mappings for these data source, and activate the new OCM mappings that you just added. 6. Go into OMW and create F0004 and F0005 in the new Common or Control Table data sources wherever you have them mapped to, (this is to prevent R98403 from unnecessarily copying all the UDCs into your new version of F0004 and F0005). 7. Create a new version of R98403 (copy XJDE0001 and change it) with the following options: Page 12

13 Copy Table Option Change the record selection as follows: 8. Run the new version of R98403 to create a set of skeleton data sources with empty ERP tables in them. Those tables, which are usually shipped with predefined data in them (for example, F0002), will have the J.D. Edwards data in them. If you have the corresponding table in your input data source, your data overrides the J.D. Edwards data. Page 13

14 9. On the AS/400, sign on as a user who has *ALLOBJ or at least *OBJMGT rights to the tables in the target library. Then ADDLIBLE CCSIDCONV. Go to menu G96CCSID. 10. Determine whether your Client Access datasource jobs (QZDASOINIT jobs) are running with the default ERP CCSID CCSID 37 for Western European; CCSID 937 for Traditional Chinese, CCSID 935 for Simplified Chinese. If you are running with something other than the default (for example, running with German CCSID 273), you need to run the ALTER TABLE to alter your CCSID columns to the CCSID you are using (for example, 273 for German) before doing the Copy Table process. 11. Set up your JOBQ to multi-process (CHGJOBQE QBATCH QBATCH MAXACT(?)). This should at least be set to the number of CPUs that you have in your AS/ Take the menu option to Copy tables, supplying source and target library names for each set of data sources for example, CRPDTA CRPDTAN. You can override the queue to which the jobs are submitted. You can run the command just for one table, or for all tables (all tables is the default). This menu option ties up your green screen while it finds all the tables in the source library, does some basic checking, and then submits a CPYF job for each table. You will get back control while all the submitted jobs are running, and you must monitor to see when they have all completed (WRKSBMJOB *JOB). 13. Once all the copy table jobs have finished for a particular pair of libraries (use WRKJOBQ QBATCH or WRKSBSJOB QBATCH), take the menu option to report on Copy Table. 14. Print out the report. It is sorted in descending order of error severity: A. Run status 50 severe error. i. For authority errors, check the interactive joblog of the job where you ran the Copy Table option (the Copy Table option puts the joblog into a spool file, so it will still be there even if you signed off). ii. For CPYF failures, look at the joblog of the submitted job for that table. The job has the same name as the table. Most usual problem is that the source and target tables have a data item defined differently for example, the data item is defined as character in the source, and as Packed in the target. This would happen if your co-existent database did not match the Xe/ERP 8.0 spec.s. Sometimes this is caused by a table conversion failing during the application of the co-existence PTF. Usually this would indicate that you are not using this table. B. Run status 40 Warning Record Count mismatch. This is usually caused by duplicate records in the table. Look at the joblog of the submitted job for that table it will say which records in the source table could not be copied because they are duplicates. This is caused by the OneWorld definition of the table having different unique keys than the co-existence definition. Make sure that you have the correct version of each of the duplicate rows in your target table. Page 14

15 Copy Table Option C. Run status 30 - CPYF succeeded D. Run status 20 any text. This status indicates that the CPYF is still running. Usually you would only see this if you ran the Copy report while the submitted jobs are still running. Check to see if there is a joblog for this table (job name = table name). E. Run status 15 - CPYF warning - input empty, output not empty. This is most likely normal. R98403 copies J.D. Edwards supplied data into certain tables (for example, F3009, F4009). Check each of these tables in the source library to make sure that the source table really is empty. (You would also see this message if you don t have authority to read the source table.) F. Run status 10 i. No action - input table empty. This is normal. If both source and target tables exist and both are empty, the process does nothing. ii. No action source file. This is normal. There are no source files defined in Xe/ERP 8.0 as tables. G. Run status 05 - Table not in target library. This is normal. Any tables, which are World, only (for example, F93100) will not exist in the ERP - only target library. If your R98403 failed, or if you have a mismatch between your source and target libraries (for example, you are trying to copy tables from Common into Control Tables), you would see this error and would need to correct it. Page 15

16 Audit a Library On the AS/400, take the option to audit a library off the G96CCSID menu. It produces a report of tables in a library which have CCSID columns. This option provides confirmation just before the B9 upgrade that your clean up process has not been inadvertently undone by a restore. This report shows the following statuses: 80 Table still has CCSID columns. Run the J96ALTERS process. 70 Table has CCSID columns, but the J96ALTERS process will not fix them. (This could be because the table is an AS/400 source file or because ether table was created through SQL. This process only works on tables created through DDS.) If there are other statuses in the audit table from a previous run of the ALTER or the COPY TABLE process, and you choose the option to print all tables (not just the ones found to still contain CCSID 65535), you may see other statuses in the report. These relate to the previous ALTER or COPY attempt against this library. Only status 70 and 80 are relevant to the audit process. Page 16

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

JD Edwards World Electronic Burst and Bind Guide. Version A9.1

JD Edwards World Electronic Burst and Bind Guide. Version A9.1 JD Edwards World Electronic Burst and Bind Guide Version A9.1 Revised - December 15, 2007 JD Edwards World Electronic Burst and Bind Guide Copyright 2006, Oracle. All rights reserved. The Programs (which

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

EnterpriseOne JDE5 Portal PeopleBook

EnterpriseOne JDE5 Portal PeopleBook EnterpriseOne JDE5 Portal PeopleBook May 2002 EnterpriseOne JDE5 Portal PeopleBook SKU JDE5EPR0502 Copyright 2003 PeopleSoft, Inc. All rights reserved. All material contained in this documentation is

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

JD Edwards World Quick Installation Guide. Version A9.2 Update 1

JD Edwards World Quick Installation Guide. Version A9.2 Update 1 JD Edwards World Quick Installation Guide Version A9.2 Update 1 Revised August 11, 2010 Copyright Notice Copyright 2009, Oracle. All rights reserved. Trademark Notice Oracle is a registered trademark of

More information

EnterpriseOne Web Client 8.9 PeopleBook

EnterpriseOne Web Client 8.9 PeopleBook EnterpriseOne Web Client 8.9 PeopleBook September 2003 EnterpriseOne Web Client 8.9 SKU REL9EDW0309 Copyright 2003 PeopleSoft, Inc. All rights reserved. Printed in the United States. All material contained

More information

CA 2E. Installation Guide. Release 8.7

CA 2E. Installation Guide. Release 8.7 CA 2E Installation Guide Release 8.7 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

JD Edwards World A9.2 Update 1 Upgrade Guide. Version A9.2 Update 1

JD Edwards World A9.2 Update 1 Upgrade Guide. Version A9.2 Update 1 JD Edwards World A9.2 Update 1 Upgrade Guide Version A9.2 Update 1 Revised August 11, 2010 Copyright Notice Copyright 2009, Oracle. All rights reserved. Trademark Notice Oracle is a registered trademark

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

SkyPilot OS Installation: Fedora Core 5

SkyPilot OS Installation: Fedora Core 5 SkyPilot OS Installation: Fedora Core 5 PN 671-00024-01 2006 SkyPilot Networks, Inc. All rights reserved This publication, or parts thereof, may not be reproduced in any form, by any method, for any purpose.

More information

US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.

US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Service Data Objects (SDO) DFED Sample Application README Copyright IBM Corporation, 2012, 2013 US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract

More information

Delta Process Guide Release 9.2

Delta Process Guide Release 9.2 [1]JD Edwards EnterpriseOne Tools Delta Process Guide Release 9.2 E53576-01 October 2015 Describes how to determine the changes that have occurred in translation tables. JD Edwards EnterpriseOne Tools

More information

Direct Migration from JD Edwards World A9.2 Update 1 to JD Edwards EnterpriseOne 9.1

Direct Migration from JD Edwards World A9.2 Update 1 to JD Edwards EnterpriseOne 9.1 Direct Migration from JD Edwards World A9.2 Update 1 to JD Edwards EnterpriseOne 9.1 March 2012 Copyright 2012, Oracle. All rights reserved. GA.Rev0 i Direct Migration from JD Edwards World A9.2 to JD

More information

Nokia Client Release Notes. Version 2.0

Nokia  Client Release Notes. Version 2.0 Nokia Email Client Release Notes Version 2.0 Published June 9, 2008 COPYRIGHT Copyright 1997-2008 Nokia Corporation. All rights reserved. Nokia, Nokia Connecting People, Intellisync, and Intellisync logo

More information

One Identity Quick Connect Express

One Identity Quick Connect Express One Identity Quick Connect Express for Active Directory 5.6.0 October 2017 These release notes provide information about the One Identity Quick Connect Express for Active Directory release. About New features

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

PeopleSoft Enterprise Components for CRM 8.9 PeopleBook

PeopleSoft Enterprise Components for CRM 8.9 PeopleBook PeopleSoft Enterprise Components for CRM 8.9 PeopleBook June 2004 PeopleSoft Enterprise Components for CRM 8.9 PeopleBook SKU CRM89ECP-B 0604 Copyright 2001-2004 PeopleSoft, Inc. All rights reserved. All

More information

Installing AudioLinux (Alternative way with GUI)

Installing AudioLinux (Alternative way with GUI) Installing AudioLinux (Alternative way with GUI) By Maarten van Druten Version 1.0 6 September 2017 Disclaimer: THIS SOFTWARE INSTALLATION MANUAL IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,

More information

PDF SHARE FORMS. Online, Offline, OnDemand. PDF forms and SharePoint are better together. PDF Share Forms Enterprise 3.0.

PDF SHARE FORMS. Online, Offline, OnDemand. PDF forms and SharePoint are better together. PDF Share Forms Enterprise 3.0. PDF SHARE FORMS Online, Offline, OnDemand PDF forms and SharePoint are better together PDF Share Forms Enterprise 3.0 Install Guide SharePoint 2013 Contents Disclaimer...3 Copyright...3 About this guide...3

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

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

SUPPORT MATRIX. HYCU OMi Management Pack for Citrix

SUPPORT MATRIX. HYCU OMi Management Pack for Citrix HYCU OMi Management Pack for Citrix : 2.0 Product release date: October 2017 Document release data: April 2018 Legal notices Copyright notice 2014-2018 HYCU. All rights reserved. This document contains

More information

SUPPORT MATRIX. Comtrade OMi Management Pack for Citrix

SUPPORT MATRIX. Comtrade OMi Management Pack for Citrix Comtrade OMi Management Pack for Citrix : 2.0 Product release date: December 2016 Document release date: July 2017 Legal notices Copyright notice 2017 Comtrade Software. All rights reserved. This document

More information

JD Edwards EnterpriseOne Licensing

JD Edwards EnterpriseOne Licensing JD Edwards EnterpriseOne Licensing Disabling Client Licensing for Various Tools Releases O R A C L E W H I T E P A P E R O C T O B E R 2 0 1 5 Disclaimer The following is intended to outline our general

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

PeopleSoft Advisor 8.8 SP1 PeopleBook

PeopleSoft Advisor 8.8 SP1 PeopleBook PeopleSoft Advisor 8.8 SP1 PeopleBook September 2003 PeopleSoft Advisor 8.8 SP1 PeopleBook SKU CRM88SP1ADV-B 0903 PeopleBooks Contributors: Teams from PeopleSoft Product Documentation and Development.

More information

GoldSim License Portal A User s Guide for Managing Your GoldSim Licenses

GoldSim License Portal A User s Guide for Managing Your GoldSim Licenses GoldSim License Portal A User s Guide for Managing Your GoldSim Licenses Copyright GoldSim Technology Group LLC, 1998-2016. All rights reserved. GoldSim is a registered trademark of GoldSim Technology

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

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

HYCU SCOM Management Pack for F5 BIG-IP

HYCU SCOM Management Pack for F5 BIG-IP HYCU SCOM Management Pack for F5 BIG-IP Product version: 5.3 Product release date: March 2018 Document edition: Second Legal notices Copyright notice 2015-2018 HYCU. All rights reserved. This document

More information

PeopleTools 8.44 PeopleBook: PeopleSoft Tree Manager

PeopleTools 8.44 PeopleBook: PeopleSoft Tree Manager PeopleTools 8.44 PeopleBook: PeopleSoft Tree Manager December 2003 PeopleTools 8.44 PeopleBook: PeopleSoft Tree Manager SKU PT844TRM-B 1203 Copyright 1988-2003 PeopleSoft, Inc. All rights reserved. All

More information

Primavera. Contract Manager Installation Guide

Primavera. Contract Manager Installation Guide Primavera Contract Manager Installation Guide Copyright 1996, 2009, Oracle and/or its affiliates. All rights reserved.. The Programs (which include both the software and documentation) contain proprietary

More information

Aellius LynX Office Lookup Enhancements

Aellius LynX Office Lookup Enhancements Aellius LynX Office Lookup Enhancements August 2013 COPYRIGHT LynX Office Enhancements Copyright 2013, Aellius Professional Research & Consulting, LLC. All rights reserved. LynX Business Integrator (the

More information

Preface. Audience. Cisco IOS Software Documentation. Organization

Preface. Audience. Cisco IOS Software Documentation. Organization This preface describes the audience, organization, and conventions of this publication, and provides information on how to obtain related documentation. Cisco documentation and additional literature are

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

Replacing drives for SolidFire storage nodes

Replacing drives for SolidFire storage nodes NetApp Replacing drives for SolidFire storage nodes You can hot-swap a failed solid-state disk (SSD) drive with a replacement drive. Before you begin You have a replacement drive. You have an electrostatic

More information

GemStone/S 64 Bit Release Notes

GemStone/S 64 Bit Release Notes GemStone/S 64 Bit Release Notes Version 3.3.8 August 2018 SYSTEMS INTELLECTUAL PROPERTY OWNERSHIP This documentation is furnished for informational use only and is subject to change without notice. GemTalk

More information

GemBuilder for Java Release Notes

GemBuilder for Java Release Notes GemStone GemBuilder for Java Release Notes Version 3.1.3 November 2016 SYSTEMS INTELLECTUAL PROPERTY OWNERSHIP This documentation is furnished for informational use only and is subject to change without

More information

Nokia Intrusion Prevention with Sourcefire. Appliance Quick Setup Guide

Nokia Intrusion Prevention with Sourcefire. Appliance Quick Setup Guide Nokia Intrusion Prevention with Sourcefire Appliance Quick Setup Guide Part Number N450000567 Rev 001 Published September 2007 COPYRIGHT 2007 Nokia. All rights reserved. Rights reserved under the copyright

More information

Watch 4 Size v1.0 User Guide By LeeLu Soft 2013

Watch 4 Size v1.0 User Guide By LeeLu Soft 2013 Watch 4 Size v1.0 User Guide By LeeLu Soft 2013 Introduction Installation Start using W4S Selecting a folder to monitor Setting the threshold Setting actions Starting the monitor Live Log Using monitor

More information

Enterprise PeopleTools 8.45 PeopleBook: PeopleSoft Mobile Agent

Enterprise PeopleTools 8.45 PeopleBook: PeopleSoft Mobile Agent Enterprise PeopleTools 8.45 PeopleBook: PeopleSoft Mobile Agent June 2004 Enterprise PeopleTools 8.45 PeopleBook: PeopleSoft Mobile Agent SKU PT845MOB-B 0604 Copyright 1988-2004 PeopleSoft, Inc. All rights

More information

Packet Trace Guide. Packet Trace Guide. Technical Note

Packet Trace Guide. Packet Trace Guide. Technical Note Packet Trace Guide Technical Note VERSION: 2.0 UPDATED: JANUARY 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies logo

More information

EnterpriseOne JDE5 Development Standards Application Design PeopleBook

EnterpriseOne JDE5 Development Standards Application Design PeopleBook EnterpriseOne JDE5 Development Standards Application Design PeopleBook May 2002 EnterpriseOne Development Standards Application Design PeopleBook SKU Copyright 2003 PeopleSoft, Inc. All rights reserved.

More information

One Identity Active Roles Diagnostic Tools 1.2.0

One Identity Active Roles Diagnostic Tools 1.2.0 1 One Identity Active Roles Diagnostic Tools 1.2.0 Release Notes October 2017 These release notes provide information about the One Identity Active Roles Diagnostic Tools release. About One Identity Active

More information

EView/400i IBM i (iseries-as/400) Discovery for Micro Focus Universal Discovery (UD) for UCMDB

EView/400i IBM i (iseries-as/400) Discovery for Micro Focus Universal Discovery (UD) for UCMDB EView/400i IBM i (iseries-as/400) Discovery for Micro Focus Universal Discovery (UD) for UCMDB Installation Guide Software Version: 6.3 January 2018 Legal Notices Warranty EView Technology, Inc. makes

More information

ANZ TRANSACTIVE MOBILE for ipad

ANZ TRANSACTIVE MOBILE for ipad ANZ TRANSACTIVE MOBILE for ipad CORPORATE CASH AND TRADE MANAGEMENT ON THE GO QUICK REFERENCE GUIDE April 2016 HOME SCREEN The home screen provides immediate visibility of your favourite accounts and transactions

More information

Carbonite Server Backup Portal 8.6. Administration Guide

Carbonite Server Backup Portal 8.6. Administration Guide Carbonite Server Backup Portal 8.6 Administration Guide 2018 Carbonite, Inc. All rights reserved. Carbonite makes no representations or warranties with respect to the contents hereof and specifically disclaims

More information

Upgrade Guide Release A9.4

Upgrade Guide Release A9.4 [1]JD Edwards World Upgrade Guide Release A9.4 E58799-01 April 2015 Describes how to upgrade JD Edwards World software to JD Edwards World A9.4 Release. JD Edwards World Upgrade Guide, Release A9.4 E58799-01

More information

GoldSim License Server Activation Utility Installation and Basic Use

GoldSim License Server Activation Utility Installation and Basic Use GoldSim License Server Activation Utility Installation and Basic Use Copyright GoldSim Technology Group LLC, 1998-2019. All rights reserved. GoldSim is a registered trademark of GoldSim Technology Group

More information

Compatibility Matrix. BlackBerry UEM. March 26, 2018

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

More information

IETF TRUST. Legal Provisions Relating to IETF Documents. Approved November 6, Effective Date: November 10, 2008

IETF TRUST. Legal Provisions Relating to IETF Documents. Approved November 6, Effective Date: November 10, 2008 IETF TRUST Legal Provisions Relating to IETF Documents Approved November 6, 2008 Effective Date: November 10, 2008 1. Background The IETF Trust was formed on December 15, 2005, for, among other things,

More information

Carbonite Server Backup Portal 8.5. Administration Guide

Carbonite Server Backup Portal 8.5. Administration Guide Carbonite Server Backup Portal 8.5 Administration Guide 2018 Carbonite, Inc. All rights reserved. Carbonite makes no representations or warranties with respect to the contents hereof and specifically disclaims

More information

PageScope Box Operator Ver. 3.2 User s Guide

PageScope Box Operator Ver. 3.2 User s Guide PageScope Box Operator Ver. 3.2 User s Guide Box Operator Contents 1 Introduction 1.1 System requirements...1-1 1.2 Restrictions...1-1 2 Installing Box Operator 2.1 Installation procedure...2-1 To install

More information

Copyright PFU LIMITED 2016

Copyright PFU LIMITED 2016 -------------------------------------------------------- PaperStream Capture Lite 1.0.1 README File -------------------------------------------------------- Copyright PFU LIMITED 2016 This file contains

More information

Open Source Used In TSP

Open Source Used In TSP Open Source Used In TSP 3.5.11 Cisco Systems, Inc. www.cisco.com Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed on the Cisco website at www.cisco.com/go/offices.

More information

EView/400i IBM i (iseries-as/400) Management for Micro Focus Operations Manager i (OMi)

EView/400i IBM i (iseries-as/400) Management for Micro Focus Operations Manager i (OMi) EView/400i IBM i (iseries-as/400) Management for Micro Focus Operations Manager i (OMi) Installation Guide Software Version: 7. 0 April 2018 Legal Notices Warranty EView Technology makes no warranty of

More information

SharePoint Farm Reporter Installation Guide

SharePoint Farm Reporter Installation Guide Table of Contents SharePoint Farm Reporter Installation Guide I. PRODUCT DESCRIPTION II. SYSTEM REQUIREMENTS AND RECOMMENDATIONS III. INSTALLATION STEPS IV. CONFIGURING APPLICATION V. UPGRADE SHAREPOINT

More information

EnterpriseOne 8.10 Kanban Management PeopleBook

EnterpriseOne 8.10 Kanban Management PeopleBook EnterpriseOne 8.10 Kanban Management PeopleBook May 2004 EnterpriseOne 8.10 Kanban Management PeopleBook SKU SCM810K0504 Copyright 2004 PeopleSoft, Inc. All rights reserved. All material contained in

More information

EnterpriseOne Server and Workstation Administration 8.9 PeopleBook

EnterpriseOne Server and Workstation Administration 8.9 PeopleBook EnterpriseOne Server and Workstation Administration 8.9 PeopleBook September 2003 EnterpriseOne Server and Workstation Administration 8.9 PeopleBook SKU REL9ESN0309 Copyright 2003 PeopleSoft, Inc. All

More information

Migrating Performance Data to NetApp OnCommand Unified Manager 7.2

Migrating Performance Data to NetApp OnCommand Unified Manager 7.2 Technical Report Migrating Performance Data to NetApp OnCommand Unified Manager 7.2 Dhiman Chakraborty, Yuvaraju B, Tom Onacki, NetApp March 2018 TR-4589 Version 1.2 Abstract NetApp OnCommand Unified Manager

More information

EView/400i Management for Windows

EView/400i Management for Windows EView/400i Management for Windows Installation Guide for Integration with HP Operations Manager Windows Version 6.3 September 2012 Legal Notices Warranty EView Technology makes no warranty of any kind

More information

Nokia Intellisync Mobile Suite Client Guide. S60 Platform, 3rd Edition

Nokia Intellisync Mobile Suite Client Guide. S60 Platform, 3rd Edition Nokia Intellisync Mobile Suite Client Guide S60 Platform, 3rd Edition Published May 2008 COPYRIGHT Copyright 1997-2008 Nokia Corporation. All rights reserved. Nokia, Nokia Connecting People, Intellisync,

More information

JD Edwards World Web Enablement Guide. Version A9.1

JD Edwards World Web Enablement Guide. Version A9.1 JD Edwards World Web Enablement Guide Version A9.1 Revised - May 12, 2008 JD Edwards World Web Enablement Guide Copyright 2007, Oracle. All rights reserved. The Programs (which include both the software

More information

NetApp Cloud Volumes Service for AWS

NetApp Cloud Volumes Service for AWS NetApp Cloud Volumes Service for AWS AWS Account Setup Cloud Volumes Team, NetApp, Inc. March 29, 2019 Abstract This document provides instructions to set up the initial AWS environment for using the NetApp

More information

FOR TCG ACPI Specification

FOR TCG ACPI Specification ERRATA Errata Version 0.3 August 25, 2017 FOR TCG ACPI Specification Specification Version 1.20 Revision 8 January 19th, 2017 Contact: admin@trustedcomputinggroup.org Copyright TCG 2017 Disclaimers, Notices,

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

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

Nokia Intrusion Prevention with Sourcefire Appliance Quick Setup Guide. Sourcefire Sensor on Nokia v4.8

Nokia Intrusion Prevention with Sourcefire Appliance Quick Setup Guide. Sourcefire Sensor on Nokia v4.8 Nokia Intrusion Prevention with Sourcefire Appliance Quick Setup Guide Sourcefire Sensor on Nokia v4.8 Part No. N450000774 Rev 001 Published September 2008 COPYRIGHT 2008 Nokia. All rights reserved. Rights

More information

IETF TRUST. Legal Provisions Relating to IETF Documents. February 12, Effective Date: February 15, 2009

IETF TRUST. Legal Provisions Relating to IETF Documents. February 12, Effective Date: February 15, 2009 IETF TRUST Legal Provisions Relating to IETF Documents February 12, 2009 Effective Date: February 15, 2009 1. Background The IETF Trust was formed on December 15, 2005, for, among other things, the purpose

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

SMS2CMDB Project Summary v1.6

SMS2CMDB Project Summary v1.6 SMS2CMDB Project Summary v1.6 Project Abstract SMS2CMDB provides the capability to integrate Microsoft Systems Management Server (MS- SMS) data with BMC Atrium CMDB (Atrium CMDB) and the BMC Remedy Asset

More information

Performance Characterization of ONTAP Cloud in Amazon Web Services with Application Workloads

Performance Characterization of ONTAP Cloud in Amazon Web Services with Application Workloads Technical Report Performance Characterization of ONTAP Cloud in Amazon Web Services with Application Workloads NetApp Data Fabric Group, NetApp March 2018 TR-4383 Abstract This technical report examines

More information

SNP Launchpad. Version: December SNP Schneider-Neureither & Partner AG

SNP Launchpad. Version: December SNP Schneider-Neureither & Partner AG Version: 12.10 December 2012 SNP Schneider-Neureither & Partner AG Dossenheimer Landstr. 100 D-69121 Heidelberg Tel.: +49 6221 6425-0 Fax: +49 6221 6425-20 E-Mail: info@snp-ag.com www.snp-ag.com Page 1

More information

Quest NetVault Backup Plug-in for SnapMirror To Tape. User s Guide. version 7.6. Version: Product Number: NTG EN-01 NTG

Quest NetVault Backup Plug-in for SnapMirror To Tape. User s Guide. version 7.6. Version: Product Number: NTG EN-01 NTG Quest NetVault Backup Plug-in for SnapMirror To Tape version 7.6 User s Guide Version: Product Number: NTG-101-7.6-EN-01 NTG-101-7.6-EN-01 09/30/11 2011 Quest Software, Inc. ALL RIGHTS RESERVED. This guide

More information

User Manual. Date Aug 30, Enertrax DAS Download Client

User Manual. Date Aug 30, Enertrax DAS Download Client EnertraxDL - DAS Download Client User Manual Date Aug 30, 2004 Page 1 Copyright Information Copyright 2004, Obvius Holdings, LLC. All rights reserved. Redistribution and use in source and binary forms,

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

EView/400i Management for Systems Center Operations Manager

EView/400i Management for Systems Center Operations Manager EView/400i Management for Systems Center Operations Manager Installation Guide Version 7.1 May 2017 Legal Notices Warranty EView Technology makes no warranty of any kind with regard to this manual, including,

More information

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

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

More information

One Identity Manager 8.0. Administration Guide for Connecting Unix-Based Target Systems

One Identity Manager 8.0. Administration Guide for Connecting Unix-Based Target Systems One Identity Manager 8.0 Administration Guide for Connecting Unix- Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

EView/400 Management for OVO Windows

EView/400 Management for OVO Windows EView/400 Management for OVO Windows Installation Guide Version 2.0 EView Technology, Inc. July 2005 Copyright 2005 EView Technology, Inc. 1 Legal Notices Warranty EView Technology makes no warranty of

More information

T-Invoicer User Guide

T-Invoicer User Guide - 1 - T-Invoicer User Guide Introduction T-Invoicer is an entry level invoicing system designed for small & startup business's who need to invoice customers quickly & easily. T-Invoicer has all the basic

More information

About One Identity Quick Connect for Base Systems 2.4.0

About One Identity Quick Connect for Base Systems 2.4.0 One Identity Quick Connect for Base Systems 2.4.0 October 2018 These release notes provide information about the One Identity Quick Connect for Base Systems release. About New features Resolved issues

More information

About This Guide. and with the Cisco Nexus 1010 Virtual Services Appliance: N1K-C1010

About This Guide. and with the Cisco Nexus 1010 Virtual Services Appliance: N1K-C1010 This guide describes how to use Cisco Network Analysis Module Traffic Analyzer 4.2 (NAM 4.2) software. This preface has the following sections: Chapter Overview, page xvi Audience, page xvii Conventions,

More information

Rapid Recovery DocRetriever for SharePoint User Guide

Rapid Recovery DocRetriever for SharePoint User Guide Rapid Recovery 6.1.3 Table of Contents Introduction to DocRetriever for SharePoint... 6 Using this documentation... 6 About DocRetriever for SharePoint...7 DocRetriever, AppAssure, and Rapid Recovery compatibility...

More information

Toad Data Point - Professional Edition. The Toad Data Point Professional edition includes the following new features and enhancements.

Toad Data Point - Professional Edition. The Toad Data Point Professional edition includes the following new features and enhancements. Toad Data Point 4.2 New in This Release Thursday, April 13, 2017 Contents Toad Data Point Professional Edition Toad Data Point - Base and Professional Editions Toad Data Point - Professional Edition The

More information

Open Source and Standards: A Proposal for Collaboration

Open Source and Standards: A Proposal for Collaboration ETSI Workshop on Open Source and ization: Legal Interactions September 16, 2016 Sophia Antipolis Open Source and s: A Proposal for Collaboration David Marr VP & Legal Counsel Open Source Group Qualcomm

More information

Oracle Retail CWDirect Order Management System Upgrade Installation Instructions Release August 2015

Oracle Retail CWDirect Order Management System Upgrade Installation Instructions Release August 2015 Oracle Retail CWDirect Order Management System Upgrade Installation Instructions Release 18.0 August 2015 Oracle Retail CWDirect Order Management System Upgrade Installation Instructions, Release 18.0

More information

MagicInfo Express Content Creator

MagicInfo Express Content Creator MagicInfo Express Content Creator MagicInfo Express Content Creator User Guide MagicInfo Express Content Creator is a program that allows you to conveniently create LFD content using a variety of templates.

More information

Avaya VPN Client Software Release 10.05_100

Avaya VPN Client Software Release 10.05_100 Avaya VPN Client Software Release 10.05_100 1. Release Summary Release Date: September 1 st, 2011 Purpose: Software maintenance release to address customer requests and software issues. 2. Important Notes

More information

OnCommand Unified Manager 7.2: Best Practices Guide

OnCommand Unified Manager 7.2: Best Practices Guide Technical Report OnCommand Unified : Best Practices Guide Dhiman Chakraborty August 2017 TR-4621 Version 1.0 Abstract NetApp OnCommand Unified is the most comprehensive product for managing and monitoring

More information

One Identity Management Console for Unix 2.5.1

One Identity Management Console for Unix 2.5.1 One Identity Management Console for Unix 2.5.1 October 2017 These release notes provide information about the One Identity Management Console for Unix release. NOTE: This version of the One Identity Management

More information

Quest Code Tester for Oracle 3.1. Installation and Configuration Guide

Quest Code Tester for Oracle 3.1. Installation and Configuration Guide Quest Code Tester for Oracle 3.1 Installation and Configuration Guide Contents Introduction to this Guide 3 Installation and Administration of Code Tester for Oracle 4 System Requirements 5 Test Repository

More information

PeopleSoft 8.8 CRM Automation and Configuration Tools PeopleBook

PeopleSoft 8.8 CRM Automation and Configuration Tools PeopleBook PeopleSoft 8.8 CRM Automation and Configuration Tools PeopleBook December 2002 PeopleSoft 8.8 CRM Automation and Configuration Tools PeopleBook SKU CRM88ACT-B 1202 PeopleBooks Contributors: Teams from

More information

Release Notes. BlackBerry Enterprise Identity

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

More information

One Identity Manager 8.0. Administration Guide for Connecting to Azure Active Directory

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

More information

Ecma International Policy on Submission, Inclusion and Licensing of Software

Ecma International Policy on Submission, Inclusion and Licensing of Software Ecma International Policy on Submission, Inclusion and Licensing of Software Experimental TC39 Policy This Ecma International Policy on Submission, Inclusion and Licensing of Software ( Policy ) is being

More information

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

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

More information

SkyPilot EMS Installation

SkyPilot EMS Installation SkyPilot EMS Installation 671-00004-01 Rev B 2006 SkyPilot Networks, Inc. All rights reserved This publication, or parts thereof, may not be reproduced in any form, by any method, for any purpose. Product

More information

Ecma International Policy on Submission, Inclusion and Licensing of Software

Ecma International Policy on Submission, Inclusion and Licensing of Software Ecma International Policy on Submission, Inclusion and Licensing of Software Experimental TC39 Policy This Ecma International Policy on Submission, Inclusion and Licensing of Software ( Policy ) is being

More information