OM OMCS/z Web Server INSTALLATION & OPERATION GUIDE. OMCS/z Web Server Version 1.0

Size: px
Start display at page:

Download "OM OMCS/z Web Server INSTALLATION & OPERATION GUIDE. OMCS/z Web Server Version 1.0"

Transcription

1 OM OMCS/z Web Server INSTALLATION & OPERATION GUIDE OMCS/z Web Server Version 1.0 December 2012

2 LICENSED MATERIAL COPYRIGHT Australian Systems Engineering Pty. Ltd This material always remains the property of Australian Systems Engineering Pty. Ltd. and must be used only in accordance with the terms of the agreement under which it is supplied. Manual and Product identifiers. This manual is identified by a publication number, OM , combined with a revision level number (sometimes called a dash level) -1. The licensed software product, of which this manual is a part, is identified by a Product Name or Product Acronym and an Edition Number. Edition numbers are made up of a Version number and a Release number within that version. The material in this manual is intended to be used with OMCS/z Web Server Version 1 Release 0 and later editions of that product. The edition number may appear in licensed material in abbreviated forms like the following: V1R0, and V1.0. From time to time ASE may issue replacements for, or additions to, the pages in this manual. Each time the entire manual is replaced by a later version then the revision level (the dash level) part of the publication identifier will be increased by 1. Related Publications none Published by Australian Systems Engineering Pty. Ltd. 126A Gillies Street, Fairfield VIC 3078 Australia website: help@ase.com.au

3 OMCS/z Web Server - Introduction Contents CONTENTS...3 INTRODUCTION...5 PART 1 - INSTALLATION GUIDE...7 CHECK PREREQUISITES...7 ALLOCATE NEW LIBRARIES...7 Sample JCL for allocating the new libraries...8 DEFINE NEW LIBRARIES TO SMP/E...8 SMP/E INSTALLATION OF OMCS/Z WEB SERVER...8 PART2 - CONFIGURATION AND OPERATION GUIDE...9 CREATING THE OMCS/Z WEB SERVER STARTED TASK JCL PROCEDURE...9 Using the supplied sample as a starting point...9 OMCS/Z WEB SERVER CONFIGURATION...10 General rules for configuration dataset statements...10 Configuration statements...10 BINDRETRYCOUNT...10 BINDRETRYTIME...10 DATABASE...11 LISTENQUEUE...11 LOG...11 PAGESIZE...11 PASSTIMEOUT...11 PORT...12 RESOURCEDIR...12 SECURITY...12 DATABASE PROCESSING...12 STOPPING THE OMCS/Z WEB SERVER...12 RUNNING MORE THAN ONE OMCS/Z WEB SERVER...12 CONTACTING ASE FOR SUPPORT :...13 OM copyright 2012 ASE page 3

4 OMCS/z Web Server - Installation Guide page 4 copyright 2012 ASE OM

5 OMCS/z Web Server - Introduction Introduction Part 1 of this manual provides guidance for the installation of the OMCS/z Web Server. Part 2 of this manual describes the configuration and operation of the OMCS/z Web Server. ASE's support for this product began when you first requested that the install material be supplied to you. If at any subsequent time you find that the material in this or any other OMCS manual is confusing, inadequate or incorrect, or if you encounter any problem with the supplied machinereadable material or get unexpected results from the installed product, please call ASE for support. OM copyright 2012 ASE page 5

6

7 OMCS/z Web Server Installation Part 1 - Installation Guide The OMCS/z Web Server is part of OMCS 2.9 and the first version is delivered by PTF ASP1285. The following list summarises the tasks required to install the web server. Check prerequisites. The install materials must be downloaded from the ASE web site and transferred to your z/os system before installation can proceed. Allocate new libraries Two new libraries are required for OMCS/z Web Server. Defining the new libraries to SMP/E Define the new libraries to SMP/E with DDDEF entries. SMP/E Installation of OMCS/z Web Server The standard RECEIVE, APPLY and ACCEPT process is used to install PTF ASP1285. Check Prerequisites OMCS/z Web Server requires ASE Cross Product Services. This is FMID ZSEX100 and may already be installed. If ZSEX100 is not installed yet, you must obtain it from ASE and install it. Allocate New Libraries OMCS/z Web Server introduces two new libraries. The datasets must be created before the installation can proceed. Note that the lowest level of the dataset name must be as shown - this is required by SMP/E. However, the higher levels may be whatever the installation requires (eg. SYS3.CPUA.ASERES or ASE.ASERES). The following table shows the actual amount of space used by each dataset after a typical installation. Library RECFM LRECL BLKSIZE number of tracks number of directory blocks ASE.AASERES VB ASE.ASERES VB OM copyright 2012 ASE page 7

8 OMCS/z Web Server Installation Sample JCL for allocating the new libraries //ALOCDSN EXEC PGM=IEFBR14 //* //AASERES DD DSN=ASE.AASERES,DISP=(,CATLG), // DCB=(RECFM=VB,LRECL=4096,BLKSIZE=0), <- system-determined blksize // SPACE=(TRK,(5,5,10)), // UNIT=SYSDA,VOL=SER= <- insert the desired DASD volume //ASERES DD DSN=ASE.ASERES,DISP=(,CATLG), // DCB=(RECFM=VB,LRECL=4096,BLKSIZE=0), <- system-determined blksize // SPACE=(TRK,(5,5,10)), // UNIT=SYSDA,VOL=SER= <- insert the desired DASD volume Define New Libraries to SMP/E Define the new libraries with DDDEF entries. Here are some sample DDDEF statements. Adjust the target and distribution zone names for your site. SET BDY(TGT) /* set to target zone */ /* */ /* new DDDEFs for target zone */ /* */. UCLIN. /* */ ADD DDDEF(AASERES) /* dlib resource lib */ DATASET(ASE.AASERES) /* */ SHR. /* */ ADD DDDEF(ASERES) /* target resource lib */ DATASET(ASE.ASERES) /* */ SHR. /* */ ENDUCL. /* */ SET BDY(DLB) /* set to DLIB zone */ /* */ /* new DDDEFs for distribution zone */ /* */. UCLIN. /* */ ADD DDDEF(AASERES) /* dlib resource lib */ DATASET(ASE.AASERES) /* */ SHR. /* */ ADD DDDEF(ASERES) /* target resource lib */ DATASET(ASE.ASERES) /* */ SHR. /* */ ENDUCL. /* */ SMP/E Installation of OMCS/z Web Server Finally, install PTF ASP1285. There may be fixes and enhancements to OMCS/z Web Server since PTF ASP1285 was produced. Check with the ASE web site and download and install any new PTFs that are relevant. page 8 copyright 2012 ASE OM

9 OMCS/z Web Server Configuration and Operation Part2 - Configuration and Operation Guide The remaining installation tasks consist of the following activities : OMCS load library must be APF authorised. Depending on the configuration, OMCS/z Web Server may need to verify that userids and passwords are correct. To be able to do that the load library must be APF authorised. Creating the OMCS/z Web Server started task JCL procedure. OMCS/z Web Server uses a started task to perform its functions. A sample catalogued JCL procedure is supplied in the.asesamp library as member ZSEWSJCL. OMCS/z Web Server configuration. Specify the configuration for the OMCS/z Web Server. A sample configuration file is supplied in the.asesamp library as member ZSEWSCFG. Support Our support for this product began when you first requested that the install material be supplied to you. If at any subsequent time you find that the material in this or any other OMCS manual is confusing, inadequate or incorrect, or if you encounter any problem with the supplied machine-readable material or get unexpected results from the installed product, please contact ASE for support. See the inside cover of this manual for contact details. Creating the OMCS/z Web Server Started Task JCL Procedure Using the supplied sample as a starting point A sample OMCS/z Web Server catalogued JCL procedure is provided as member ZSEWSJCL in the ASESAMP install library. The items to be tailored are :- //STEPLIB DD DISP=SHR,DSN=your.ASELIB // DD DISP=SHR,DSN=TCPIP.SEZATCP The first DD statement specifies the full name of the ASELIB dataset that was updated by SMP/E. If that library is in the linklist, it may be omitted from the JCL. The second DD statement specifies the SEZATCP load library. If that library is in the linlist, it may be omitted from the JCL. If both of these load libraries are in the linklist, the STEPLIB DD statement may be omitted entirely. If STEPLIB is specified, remember that all libraries in the STEPLIB concatenation must be APF authorised. OM copyright 2012 ASE page 9

10 OMCS/z Web Server Configuration and Operation //SYSIN DD DISP=SHR,DSN=... The SYSIN DD statement points to a dataset containing the OMCS/z Web Server configuration. A sample is provided in the.asesamp library as member ZSEWSCFG. Refer to the next section for configuration details. OMCS/z Web Server can run as a started task or as a batch job. OMCS/z Web Server Configuration General rules for configuration dataset statements The control, statements are generally case-insensitive. Both the name and value may be in mixed case. Any exceptions to this are noted in the configuration statement descriptions. For example, SECURITY=RACF, security=racf and Security=RaCf are all valid. Any blank lines in the configuration are ignored. Comments are preceded by the characters /* Configuration statements The sample configuration provides an annotated example of a working configuration. The sample may be found in the.asesamp library as member ZSEWSCFG. BINDRETRYCOUNT If the server cannot bind to the listen port, it will retry according to the BINDRETRYCOUNT and BINDRETRYTIME settings. BINDRETRYCOUNT specifies how many times to retry the bind before gving up. Sometimes the listen port may be unavailable for a short time when the web server hase been stopped and immediately restarted. If not specified, it will default to 20. For example: BINDRETRYCOUNT=20 /* BIND RETRY COUNT BINDRETRYTIME If the server cannot bind to the listen port, it will retry according to the BINDRETRYCOUNT and BINDRETRYTIME settings. BINDRETRYTIME specifies how long to wait in seconds between retry attempts. Sometimes the listen port may be unavailable for a short time when the web server hase been stopped and immediately restarted. If not specified, it will default to 10 seconds. For example: BINDRETRYTIME=10 /* BIND RETRY TIME IN SECONDS page 10 copyright 2012 ASE OM

11 OMCS/z Web Server Configuration and Operation DATABASE One or more DATABASE statements must be specified to indicate which OMCS databases will be accessed by the server. Each statement must contain the dataset name of the database. The dataset name may optionally be followed by a short description which will be shown on the web pages. The description is case sensitive. For example: DATABASE=USER.ACCOUNTS.DBAS,Accounts The description may contain spaces or other special characters. For example: DATABASE=USER.ACCOUNTS.DBAS,Accounts Receivable DATABASE=USER.FRED.DBAS,Fred s database LISTENQUEUE This specifies how many web server requests can be queued up before further requests are rejected. If not specified, it will default to 5. Note that requests only queue up when the server is busy processing a request. For example: LISTENQUEUE=5 /* LISTEN QUEUE LENGTH LOG This controls how much detail is written to the SYSPRINT log. VERBOSE will produce a lot of detail about each transaction. TERSE produces much less detail. If not specified, it will default to TERSE. For example: LOG=VERBOSE PAGESIZE This specifies how many lines are presented on selection list web pages. If not specified, it will default to 60. For example: PAGESIZE=60 /* PAGE SIZE The value set here becomes the initial page size for new users. Once a new user has successfully logged on, they may change it. PASSTIMEOUT This specifies the password timeout interval in minutes. The user is forced to login again if his/her last request occurred more than the specified number of minutes ago. If not specified, it will default to 5 minutes. For example: PASSTIMEOUT=10 /* PASSWORD TIMEOUT IN MINUTES OM copyright 2012 ASE page 11

12 OMCS/z Web Server Configuration and Operation PORT This specifies the TCP/IP port that the web server listens on. If not specified, it will default to For example: PORT=8080 /* LISTEN PORT RESOURCEDIR This specifies where resources (images, applets, etc.) will be retrieved from. It must be the dataset name of the ASERES library created when the web server was installed. For example: RESOURCEDIR=sys9.aseres SECURITY This specifies the password validation method. NONE means that passwords are not validated and won t be solicited from the user. Only a valid userid is necessary to login. RACF means that the user must enter a password which will be validated by RACF. Note that the RACF option will NOT work if the load library is not APF authorised. If not specified, it will default to NONE. For example: SECURITY=NONE /* SECURITY METHOD Database Processing Each database specified in the configuration will be inspected for the presence of jobs and reports. The presence of a.jobdetl MASTER file is used to indicate that job output is available for viewing. The presence of a REPTVIEW /IRM file is used to indicate that reports are available for viewing. If neither of those files are present, the database is ignored. Stopping the OMCS/z Web Server OMCS/z Web Server can be stopped by issuing a P (STOP) command at a z/os console. Running more than one OMCS/z Web Server Multiple OMCS/z Web Server started tasks may run simultaneously. Each one must specify a different port number in its configuration. page 12 copyright 2012 ASE OM

13 OMCS/z Web Server Configuration and Operation Contacting ASE for support : If support of any kind is required, please always do the following first: 1. Send all details of the problem or requirement by to HELP@ASE.COM.AU. 2. Indicate the severity of the impact (high through low) by including the word SEV1, SEV2, SEV3 or SEV4 in the Subject: line of the ; If the impact is high (a SEV1 or SEV2) then, AFTER YOU HAVE SENT THE DESCRIBED IN POINT 1. ABOVE, please also do the following: 3. Call (03) (international: ) and leave the three-word message Urgent support required. No more than that, it will simply confuse our call centre staff as they are not technical people. OM copyright 2012 ASE page 13

14 Publication number: OM This manual serves as a reference source for users of the OMCS/z Web Server product. Please use this form to comment on the publication in terms of its organization or content with the understanding that ASE may use or distribute the information that you supply in any way that it believes appropriate without incurring an obligation to you. If you require further copies of this publication please order them through your ASE representative. If you require assistance in the installation, configuration or use of the OMCS/z Web Server product please contact ASE for support. Suggested aspects that might be addressed by your comments include: Clarity Accuracy Completeness Organization Examples Legibility Please give your name and address if you require a reply: name: Address: Occupation: Comments:

CA Common Services CA RS 1504 Service List

CA Common Services CA RS 1504 Service List CA Common Services 14.1 1 CA RS 1504 Service List Release Service Description Type 14.1 RO72683 SET #VARDATA PC PRIV PTF RO75660 ADD Z/13 2964 TO THE CAMASTER PROCESSOR TABLE PTF RO78180 CAMASTER SERVICES

More information

Program Directory for IBM z Systems Development and Test Environment Tools

Program Directory for IBM z Systems Development and Test Environment Tools Program Directory for IBM z Systems Development and Test Environment Tools V11.0.2 Program Number 5725-G39 FMID HALMB02 For use with z/os v2.1 or higher Document date: December 2017 Notes: 1 IBM z Systems

More information

IBM. Program Directory for. IBM z Systems Development and Test Environment Tools. V Program Number 5725-G39 FMID HALMB00.

IBM. Program Directory for. IBM z Systems Development and Test Environment Tools. V Program Number 5725-G39 FMID HALMB00. IBM Program Directory for V11.0.0 Program Number 5725-G39 FMID HALMB00 For use with z/os v2.1 or higher Document date: August 2017 Note Before using this information and the product it supports, be sure

More information

CA Common Services CA RS 1612 Service List

CA Common Services CA RS 1612 Service List CA Common Services 14.1 1 CA RS 1612 Service List Release Service Description Type 14.1 RO85319 Add KEYRING support to Apache Tomcat Common Service PTF RO88408 SUPPORT DB2 V12.1 PTF RO91353 DELIVER MESSAGE

More information

PDSUPDTE. 4. When the length of STRING2 is less than that of STRING1, blanks are inserted after the next pool of two blanks following STRING1.

PDSUPDTE. 4. When the length of STRING2 is less than that of STRING1, blanks are inserted after the next pool of two blanks following STRING1. PDSUPDTE PDSUPDTE is a batch card image tailoring procedure and is designed to change selected fields in JCL and control statements contained in libraries (Partitioned Datasets). Control statements can

More information

CA OPS/MVS WebCenter CA RS 1408 Service List

CA OPS/MVS WebCenter CA RS 1408 Service List CA OPS/MVS WebCenter 12.1 1 CA RS 1408 Service List Release Service Description Type 12.1 RO71623 BSYS LOGON FAILED. DEFAULTS TAKEN. PTF RO71960 TOP 10 JOBS BY CPU% SHOWS NO DATA POINTS TO PLOT PTF RO72253

More information

CA Vantage Storage Resource Manager CA RS 1807 Service List

CA Vantage Storage Resource Manager CA RS 1807 Service List CA Vantage Storage Resource Manager 14.0 1 CA RS 1807 List Description Type SO01683 MEMORY LEAK IN ECSA DURING RAID COMPONENT DEACTIVATION PTF SO03710 DISABLE CIM MESSAGES WHEN CIMSUPP (N) PTF SO03923

More information

Compute (Bridgend) Ltd

Compute (Bridgend) Ltd Compute (Bridgend) Ltd SELCOPY Product Suite for z/os Version 3.10 Program Directory (SELCOPY 3.10, SELCOPY/i 3.10 and CBLVCAT 3.10) 8 Merthyr Mawr Road, Bridgend, Wales UK CF31 3NH Tel: +44 (1656) 65

More information

CA NetMaster CA RS 1606 Service List

CA NetMaster CA RS 1606 Service List CA NetMaster 12.1 1 CA RS 1606 Service List Description Type 12.1 RO89031 ADD OPENSSH SUPPORT PTF RO89171 UNABLE TO SPECIFY A FULL EMAIL ADDRESS IN "FROM" OPERAND PTF RO89281 ADD OPENSSH SUPPORT PTF RO89282

More information

CA XCOM Data Transport for z/os CA RS 1403 Service List

CA XCOM Data Transport for z/os CA RS 1403 Service List CA XCOM Data Transport for z/os 11.6 1 CA RS 1403 Service List Description Hiper 11.6 RO61834 INQWAIT VALUE NOT HONORED FOR TYPE=INQUIRE JOBS RO62912 XCOMM0099E SEND DATA LENGTH > 32764 WITH TCPIP TRANSFERS

More information

IBM Content Manager for z/os V8.5 Fix Pack 2 Resource manager running under IBM HTTP Server powered by Apache V8.5.5 Readme

IBM Content Manager for z/os V8.5 Fix Pack 2 Resource manager running under IBM HTTP Server powered by Apache V8.5.5 Readme IBM Content Manager for z/os V8.5 Fix Pack 2 Resource manager running under IBM HTTP Server powered by Apache V8.5.5 Readme November 2014 Table of Contents 1 About this README file...3 2 Introduction...3

More information

MFT Platform Server for z/os Release Notes

MFT Platform Server for z/os Release Notes MFT Platform Server for z/os Release Notes Version 7.1 Error! Unknown document property name. TIBCO provides the two-second advantage November 4, 2011 Table of Contents I. Introduction... 3 II. New Enhancements

More information

//PSWDGEN EXEC PGM=RAIPWG //STEPLIB DD DISP=SHR,DSN=&RAILOAD //SYSTSPRT DD SYSOUT=* //SYSIN DD

//PSWDGEN EXEC PGM=RAIPWG //STEPLIB DD DISP=SHR,DSN=&RAILOAD //SYSTSPRT DD SYSOUT=* //SYSIN DD Appendix P Updating Product Passwords A CPU password is required to install and operate Relational Architects International (RAI) products on either a trial or permanent basis. The jobstream described

More information

Program Directory for IBM Migration Utility V Program Number 5697-N44 FMID HMGU320. for Use with z/os OS/390. Document Date: July 2009

Program Directory for IBM Migration Utility V Program Number 5697-N44 FMID HMGU320. for Use with z/os OS/390. Document Date: July 2009 IBM Program Directory for IBM Migration Utility V03.02.00 Program Number 5697-N44 FMID HMGU320 for Use with z/os OS/390 Document Date: July 2009 GI10-3374-01 Note! Before using this information and the

More information

CA XCOM Data Transport for z/os CA RS 1503 Service List

CA XCOM Data Transport for z/os CA RS 1503 Service List CA XCOM Data Transport for z/os 11.6 1 CA RS 1503 Service List Description Type 11.6 RO78099 ACTIVE SNA SESSIONS PREVENT SERVER TERMINATION PTF RO78293 PSOVOL/VOL CONFIG PARMS NOT ALLOWING SPECIAL CHARACTERS

More information

Hitachi Device Manager Mainframe Agent Release Notes Contents

Hitachi Device Manager Mainframe Agent Release Notes Contents Hitachi Device Manager Mainframe Agent 8.5.0-00 Release Notes Contents About this document... 2 Intended audience... 2 Getting help... 2 About this release... 2 Product package contents... 2 New features

More information

Dino Explorer. MVS Data Collector for Mainframe Assessment

Dino Explorer. MVS Data Collector for Mainframe Assessment Dino Explorer MVS Data Collector for Mainframe Assessment Index of contents 1 - Introduction...3 2 - The Installation Guide...4 2.1 Step 1 Copy the dxplload.xmit to MVS...4 2.2 Step 2 Receive XMIT file...6

More information

E-SRF EKC Security Reporting Facility Release 2.1 Installation Guide

E-SRF EKC Security Reporting Facility Release 2.1 Installation Guide E-SRF EKC Security Reporting Facility Release 2.1 Installation Guide E-SRF V2R1 EKC Inc. E0109101-0 E-SRF is a proprietary product developed and maintained by EKC Inc. 10400 West Higgins Road Rosemont,

More information

MVS/QuickRef - Tailoring QW

MVS/QuickRef - Tailoring QW MVS/QuickRef - Tailoring QW Speaker Name: Chuck Davis Speaker Company: Chicago-Soft, Ltd. Date of Presentation: February 5, 2013 Session Number: 12489 cdavis@quickref.com Planned topics include - 1 of

More information

CA NetMaster CA RS 1609 Service List

CA NetMaster CA RS 1609 Service List CA NetMaster 12.1 1 CA RS 1609 Service List Description Type 12.1 RO90308 BCILOGON TRUNCATES USERID TO 7 CHARACTERS PTF RO90664 SUPPORT LATEST AT-TLS CRYPTOGRAPHIC OPTIONS IN SMARTTRACE PTF RO90977 DEVICE

More information

CA NetMaster CA RS 1711 Service List

CA NetMaster CA RS 1711 Service List CA NetMaster 12.1 1 CA RS 1711 Service List Service Description Type RO94135 IPVP1212 CDI ERROR. UNSUPPORTED VERSION 2301 PTF RO96698 IPDI52F3 PACKET ANALYSIS IS ENABLED FOR NO STACK(S) PTF RO97097 RFLOLS02

More information

CustomPac FTPCSI Utility User Guide

CustomPac FTPCSI Utility User Guide CustomPac FTPCSI Utility User Guide Version 17.01 January 2017 Owner: IBM CustomPac Development Page 1 of 23 Contents 1. Summary of changes... 4 1.1. Version 17.01.01... 4 1.2. Version 16.10.01... 4 2.

More information

StorageTek Nearline Control Solution (MVS Implementation)

StorageTek Nearline Control Solution (MVS Implementation) StorageTek Nearline Control Solution (MVS Implementation) Installation Guide Version 6.2 Part Number: E20862-01 February 2011 Submit comments about this document to STP_FEEDBACK_US@ORACLE.COM. NCS 6.2

More information

Implementing Data Masking and Data Subset with Sequential or VSAM Sources

Implementing Data Masking and Data Subset with Sequential or VSAM Sources Implementing Data Masking and Data Subset with Sequential or VSAM Sources 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic,

More information

CA 1 Tape Management CA RS 1403 Service List

CA 1 Tape Management CA RS 1403 Service List CA 1 Tape Management 12.6 1 CA RS 1403 Service List Release Service Description Hiper 12.6 RO60054 S0C4 ABEND DURING CLOSE PROCESSING OF 31 BIT UNCAPTURED UCB. RO62065 TMPIUSG3 ZVAR ERROR UPDATING TMOOPT00

More information

CA MF Connector for Linux/Hardware Inteface Srv CA RS 1601 Service List

CA MF Connector for Linux/Hardware Inteface Srv CA RS 1601 Service List CA MF Connector for Linux/Hardware Inteface Srv 2.0 1 CA RS 1601 Service List Description Type 2.0 RO83398 FAILURES IN COMMUNICATION ARE NOT DETECTED PTF RO86851 NO SSL SUPPORT IN VM AGENT PTF RO86852

More information

Program Directory for IBM Tivoli License Compliance Manager for z/os V Program Number 5698-A86. FMIDs HAUD41B, JAUD41C, JAUD41D

Program Directory for IBM Tivoli License Compliance Manager for z/os V Program Number 5698-A86. FMIDs HAUD41B, JAUD41C, JAUD41D IBM Program Directory for IBM Tivoli License Compliance Manager for z/os V4.1.0 Program Number 5698-A86 FMIDs HAUD41B, JAUD41C, JAUD41D for Use with z/os Document Date: January 2006 GI13-0371-00 Note!

More information

CA JCLCheck Workload Automation CA RS 1408 Service List

CA JCLCheck Workload Automation CA RS 1408 Service List CA JCLCheck Workload Automation 12.0 1 CA RS 1408 Service List Description Type 12.0 RO67958 CAY6020E ON CONTINUED SET WITHIN PROC PTF RO68197 INVALID CAY6035 MESSAGES WITH HASP CONTROL CARDS PTF RO68962

More information

Rocket Software Strong Authentication Expert

Rocket Software Strong Authentication Expert RSA SecurID Ready Implementation Guide Last Modified: May 5, 2014 Partner Information Product Information Partner Name Web Site Product Name Version & Platform Product Description Rocket Software www.rocketsoftware.com

More information

Configuring ISPF for Fun and Profit

Configuring ISPF for Fun and Profit Configuring ISPF for Fun and Profit Session 10948 Wednesday, March 14, 2012 Thomas Conley Pinnacle Consulting Group, Inc. (PCG) 59 Applewood Drive Rochester, NY 14612-3501 P: (585)720-0012 F: (585)723-3713

More information

In mainframe environment, programs can be executed in batch and online modes. JCL is used for submitting a program for execution in batch mode.

In mainframe environment, programs can be executed in batch and online modes. JCL is used for submitting a program for execution in batch mode. About the Tutorial Job Control Language (JCL) is the command language of Multiple Virtual Storage (MVS), which is the commonly used Operating System in the IBM Mainframe computers. JCL identifies the program

More information

CA Vtape Virtual Tape System CA RS 1309 Service List

CA Vtape Virtual Tape System CA RS 1309 Service List CA Vtape Virtual Tape System 12.6 1 CA RS 1309 Service List Description Hiper 12.6 RO52045 RECOVER=GLOBAL DOES NOT CORRECTLY RESTORE SCRATCH POOL RO53687 MESSAGE SVT1PR000I HAS MISLEADING WORDING RO54768

More information

CA Common Services CA RS 1706 Service List

CA Common Services CA RS 1706 Service List CA Common Services 14.1 1 CA RS 1706 Service List Service Description Type RO93791 APACHE TOMCAT VERSION 8.0.39 PTF RO94761 CCI SUPPORT OF TLS 1.1 AND 1.2 PTF RO95271 CJ** TRANS VALIDATED IN TSS W/TYPE

More information

IBM. OMEGAVIEW and OMEGAVIEW II for the Enterprise. Configuring OMEGAVIEW and OMEGAVIEW II for the Enterprise. Tivoli. Version 3.1.

IBM. OMEGAVIEW and OMEGAVIEW II for the Enterprise. Configuring OMEGAVIEW and OMEGAVIEW II for the Enterprise. Tivoli. Version 3.1. Tivoli OMEGAVIEW and OMEGAVIEW II for the Enterprise IBM Version 3.1.0 Configuring OMEGAVIEW and OMEGAVIEW II for the Enterprise SC32-9426-00 12 1 2 Tivoli OMEGAVIEW and OMEGAVIEW II for the Enterprise

More information

Transporting files between MVS and MVS or between MVS and a Workstation

Transporting files between MVS and MVS or between MVS and a Workstation Transporting files between MVS and MVS or between MVS and a Workstation author: Lionel B. Dyck Revision 1.207 May 07, 2003 If there is a need to transport any file from the IBM MVS computing systems to

More information

CA Top Secret Security for z/os CA RS 1706 Service List

CA Top Secret Security for z/os CA RS 1706 Service List CA Top Secret Security for z/os 16.0 1 CA RS 1706 List Description Type RO92920 TSS9112E UNABLE TO DETERMINE JES LEVEL FOR Z/OS 2.3 PTF RO95424 BAD VALUES ACCEPTED NPWRTHRESH/NPPTHRESH/PTHRESH PTF RO95428

More information

CA SYSVIEW Performance Management CA RS 1605 Service List

CA SYSVIEW Performance Management CA RS 1605 Service List CA SYSVIEW Performance Management 14.0 1 CA RS 1605 Service List Description Type 14.0 RO87191 SPACE command not correctly displaying SMS status PTF RO88443 Multiple incorrect display fields for IBM MQ

More information

CA JCLCheck Workload Automation CA RS 1605 Service List

CA JCLCheck Workload Automation CA RS 1605 Service List CA JCLCheck Workload Automation 12.0 1 CA RS 1605 Service List Description Type 12.0 RO87932 MISSING CAY6047 FOR QUOTED PROCNAME / IF STATEMENT SYMBOLIC PTF RO88395 INVALID CAY6084E MESSAGE REPORTED FOR

More information

Implementing Data Masking and Data Subset with IMS Unload File Sources

Implementing Data Masking and Data Subset with IMS Unload File Sources Implementing Data Masking and Data Subset with IMS Unload File Sources 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

CA NetMaster CA RS 1509 Service List

CA NetMaster CA RS 1509 Service List CA NetMaster 12.1 1 CA RS 1509 Service List Description Type 12.1 RO81726 AOMALERT MACRO DOES NOT INCLUDE THE DESCRIPTOR CODE PTF RO82298 IPVP1212 CDI ERROR. UNSUPPORTED VERSION 2201 PTF RO82498 IPDI52F3

More information

Program Directory for IBM Security zsecure CICS Toolkit V Program Number 5655-N18. FMIDs HCQT221. for Use with z/os

Program Directory for IBM Security zsecure CICS Toolkit V Program Number 5655-N18. FMIDs HCQT221. for Use with z/os IBM Program Directory for IBM Security zsecure CICS Toolkit V2.2.1 Program Number 5655-N18 FMIDs HCQT221 for Use with z/os Document Date: December 2016 GI13-2282-04 Note Before using this information and

More information

Hitachi Business Continuity Manager

Hitachi Business Continuity Manager Hitachi Business Continuity Manager Installation Guide Document Organization Product Version Getting Help Contents MK-95HC104-25 2014, 2016 Hitachi, Ltd. All rights reserved. No part of this publication

More information

Program Directory for IBM WebSphere Application Server OEM Edition for z/os for Rational Team Concert for System z V Program Number 5724-V82

Program Directory for IBM WebSphere Application Server OEM Edition for z/os for Rational Team Concert for System z V Program Number 5724-V82 IBM Program Directory for IBM WebSphere Application Server OEM Edition for z/os for Rational Team Concert for System z V7.0.0 Program Number 5724-V82 FMID HBBN700 for Use with z/os Document Date: October

More information

Program Directory for IBM Tivoli Workload Scheduler for z/os (English) Version Program Number 5698-T08. for Use with z/os

Program Directory for IBM Tivoli Workload Scheduler for z/os (English) Version Program Number 5698-T08. for Use with z/os IBM Program Directory for IBM Tivoli Workload Scheduler for z/os (English) Version 9.2.0 Program Number 5698-T08 for Use with z/os Document Date: March 2014 GI13-2248-01 Note Before using this information

More information

MAPnnn - Portmapper Log Messages

MAPnnn - Portmapper Log Messages CHAPTER 6 - Portmapper Log Messages This chapter describes messages written to logs by the Portmapper. MAP000I PORTMAP INITIALIZATION SUCCESSFULLY COMPLETED. Explanation The MAP task group was successfully

More information

Program Directory for IBM Workload Scheduler for z/os (English) Version Program Number 5698-T08. for Use with z/os. Document Date: June 2015

Program Directory for IBM Workload Scheduler for z/os (English) Version Program Number 5698-T08. for Use with z/os. Document Date: June 2015 IBM Program Directory for IBM Workload Scheduler for z/os (English) Version 9.3.0 Program Number 5698-T08 for Use with z/os Document Date: June 2015 GI13-2248-02 Note Before using this information and

More information

CA XCOM Data Transport for z/os CA RS 1404 Service List

CA XCOM Data Transport for z/os CA RS 1404 Service List CA XCOM Data Transport for z/os 11.6 1 CA RS 1404 Service List Description Hiper 11.6 RO63247 BPX.DAEMON SECURITY ERROR WITH TYPE=EXECUTE TRANSFER RO65449 BATCH - XCOMJOB REQUIRES APF AUTHORIZATION WHEN

More information

Oracle Tuxedo Mainframe Adapter for TCP

Oracle Tuxedo Mainframe Adapter for TCP Oracle Tuxedo Mainframe Adapter for TCP Installation Guide Release 11gR1 August 2010 Tuxedo Mainframe Adapter for TCP Installation Guide, Release 11gR1 Copyright 2007, 2010, Oracle and/or its affiliates.

More information

CA NetMaster CA RS 1408 Service List

CA NetMaster CA RS 1408 Service List CA NetMaster 12.1 1 CA RS 1408 Service List Description Type 12.1 RO71005 SYSTEM HANG, ENQ ON NETMAGDB *HIP/PRP* RO71006 SYSTEM HANG, ENQ ON NETMAGDB PTF RO71551 OSA-E5S PORT MONITORING NOT SUPPORTED VIA

More information

CA NetMaster CA RS 1505 Service List

CA NetMaster CA RS 1505 Service List CA NetMaster 12.1 1 CA RS 1505 Service List Description Type 12.1 RO78106 WEBCENTER MONITORS DO NOT WORK USING AT-TLS SSL PTF RO79725 SYSPARMS CONSOLE COMMAND DOES NOT UPDATE SOURCE PTF RO79727 GP1015

More information

RA/2 RACF CLI Version 1 - Release 1

RA/2 RACF CLI Version 1 - Release 1 RA/2 RACF CLI Version 1 - Release 1 Copyright racfra2.com 2008 All Rights Reserved Distributed by: SEA America Inc. SEA Europe EBM Inc. Ubiquity Pty Ltd Softplex Japan racfra2.com corp. TABLE OF CONTENTS

More information

PowerExchange Logger: Changing the Size of the Active Logs

PowerExchange Logger: Changing the Size of the Active Logs PowerExchange Logger: Changing the Size of the Active Logs 2008 Informatica Corporation Overview For PowerExchange Change Data Capture (CDC) data sources on MVS, the PowerExchange Logger writes captured

More information

CA Vantage Storage Resource Manager CA RS 1509 Service List

CA Vantage Storage Resource Manager CA RS 1509 Service List CA Vantage Storage Resource Manager 12.6 1 CA RS 1509 Service List Release Service Description Type 12.6 RO80191 SUPPORT OF ZEDC IBM COMPRESSION PTF RO80937 HNODE HSM HISTORY %CACHE INCORRECT PTF RO81333

More information

Version 1 Release 6. IBM Autonomics Director for Db2 for z/os User's Guide IBM SC

Version 1 Release 6. IBM Autonomics Director for Db2 for z/os User's Guide IBM SC Version 1 Release 6 IBM Autonomics Director for Db2 for z/os User's Guide IBM SC19-4389 Version 1 Release 6 IBM Autonomics Director for Db2 for z/os User's Guide IBM SC19-4389 Note: Before using this

More information

Implementing Data Masking and Data Subset with IMS Unload File Sources

Implementing Data Masking and Data Subset with IMS Unload File Sources Implementing Data Masking and Data Subset with IMS Unload File Sources 2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

Service Information. English Component

Service Information. English Component Volume 18 December 2011 IBM DEBUG TOOL NEWSLETTER Currently Available PTFs Release Service Information English Component Japanese Component Korean Component Debug Tool for z/os V11.1 UK74780 UK74781 UK74782

More information

E-SRF. Security Signature Analysis. Release EKC Security Reporting Facility GENERAL AVAILABILITY. September 1, 2005 EKC Inc.

E-SRF. Security Signature Analysis. Release EKC Security Reporting Facility GENERAL AVAILABILITY. September 1, 2005 EKC Inc. E-SRF EKC Security Reporting Facility Security Signature Analysis Release 2.1.0 E-SRF V2R1M0 GENERAL AVAILABILITY September 1, 2005 EKC Inc. E-SRF is a proprietary product developed and maintained by EKC

More information

CA JCLCheck Workload Automation CA RS 1411 Service List

CA JCLCheck Workload Automation CA RS 1411 Service List CA JCLCheck Workload Automation 12.0 1 CA RS 1411 Service List Description Type 12.0 RO73100 INCORRECT MESSAGE CAY6077E FOR EMPTY GDG BASE DSN PTF RO73180 VARIOUS PROBLEMS WITH SOME DFSORT KEYWORDS PTF

More information

USING EXISTING DATASETS

USING EXISTING DATASETS Chapter 2 USING EXISTING DATASETS SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: Coding DD statement parameters for existing datasets. Coding statements for tape datasets. Concatenating

More information

Program Directory for IBM Security zsecure Compliance and Administration V Program Number 5655-N25. for Use with z/os

Program Directory for IBM Security zsecure Compliance and Administration V Program Number 5655-N25. for Use with z/os IBM Program Directory for IBM Security zsecure Compliance and Administration V2.3.0 Program Number 5655-N25 for Use with z/os Document Date: August 2017 GI13-2296-06 Note Before using this information

More information

Program Directory for IBM Explorer for z/os V Program Number 5655-EX1 FMID HALG310. for Use with z/os V or later

Program Directory for IBM Explorer for z/os V Program Number 5655-EX1 FMID HALG310. for Use with z/os V or later IBM Program Directory for IBM Explorer for z/os V3.1.1 Program Number 5655-EX1 FMID HALG310 for Use with z/os V02.01.00 or later Document Date: September 2017 GI13-4314-11 Note Before using this information

More information

CA PDSMAN PDS Library Management CA RS 1404 Service List

CA PDSMAN PDS Library Management CA RS 1404 Service List CA PDSMAN PDS Library Management 7.7 1 CA RS 1404 Service List Description Hiper 7.7 RO66063 $DEMO MAY FAIL WITH I/O ERROR AND U0001 ABEND RO66078 PDSMENT-2 OR U0001 ABEND TERMINATING HEALTH CHECKS RO66087

More information

JCL MOCK TEST JCL MOCK TEST IV

JCL MOCK TEST JCL MOCK TEST IV http://www.tutorialspoint.com JCL MOCK TEST Copyright tutorialspoint.com This section presents you various set of Mock Tests related to JCL Framework. You can download these sample mock tests at your local

More information

Administrator s Guide. Version 3 Release 2

Administrator s Guide. Version 3 Release 2 Administrator s Guide Version 3 Release 2 Notice Isogon Galaxy, SoftAudit, Vista, and Spotlight are trademarks or registered trademarks of Isogon Corporation. Other trademarks are the property of their

More information

Program Directory for IBM Security zsecure Admin RACF-Offline V Program Number 5655-N16 FMID HB8R23F. for Use with z/os

Program Directory for IBM Security zsecure Admin RACF-Offline V Program Number 5655-N16 FMID HB8R23F. for Use with z/os IBM Program Directory for IBM Security zsecure Admin RACF-Offline V2.3.0 Program Number 5655-N16 FMID HB8R23F for Use with z/os Document Date: August 2017 GI13-2278-05 Note Before using this information

More information

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Line item: Dynamic SYSDSN ENQ Downgrade Element/Component: BCP Allocation Material is current as of June 2013 Agenda Trademarks Presentation Objectives Overview Usage

More information

CA JCLCheck Workload Automation CA RS 1407 Service List

CA JCLCheck Workload Automation CA RS 1407 Service List CA JCLCheck Workload Automation 12.0 1 CA RS 1407 Service List Description Type 12.0 RO68503 DFSORT TOLERATION PARAMETERS PTF RO68838 MISSING Z/OS 2.1 REXX VARIABLES PTF RO68839 MISSING Z/OS 2.1 REXX VARIABLES

More information

CA LDAP CA RS 1309 Service List

CA LDAP CA RS 1309 Service List CA LDAP 15.1 1 CA RS 1309 Service List Description Hiper 15.1 RO60097 LDAP AND DBUSER AUTHORIZATIONS The CA RS 1309 service count for this release is 1 CA LDAP 15.0 2 CA RS 1309 Service List Description

More information

Program Directory for IBM Security zsecure Command Verifier V Program Number 5655-N19. FMIDs HC4R230, JC4R230.

Program Directory for IBM Security zsecure Command Verifier V Program Number 5655-N19. FMIDs HC4R230, JC4R230. IBM Program Directory for IBM Security zsecure Command Verifier V2.3.0 Program Number 5655-N19 FMIDs HC4R230, JC4R230 for Use with z/os Document Date: August 2017 GI13-2284-05 Note Before using this information

More information

Version 9 Release 1. IBM InfoSphere Guardium S-TAP for IMS on z/os V9.1 User's Guide IBM

Version 9 Release 1. IBM InfoSphere Guardium S-TAP for IMS on z/os V9.1 User's Guide IBM Version 9 Release 1 IBM InfoSphere Guardium S-TAP for IMS on z/os V9.1 User's Guide IBM ii IBM InfoSphere Guardium S-TAP for IMS on z/os V9.1 User's Guide Contents Chapter 1. What does IBM InfoSphere Guardium

More information

CA Web Administrator for ACF2 and TSS CA RS 1702 Service List

CA Web Administrator for ACF2 and TSS CA RS 1702 Service List CA Web Administrator for ACF2 and TSS 15.0 1 CA RS 1702 Service List Release Service Description Type 15.0 RO93713 WEB ADMINISTRATOR TOMCAT UPGRADE PTF RO93714 WEB ADMINISTRATOR TOMCAT UPGRADE PTF RO93724

More information

IBM. Documentation. IBM Sterling Connect:Direct Process Language. Version 5.3

IBM. Documentation. IBM Sterling Connect:Direct Process Language. Version 5.3 IBM Sterling Connect:Direct Process Language IBM Documentation Version 5.3 IBM Sterling Connect:Direct Process Language IBM Documentation Version 5.3 This edition applies to Version 5 Release 3 of IBM

More information

IBM. Program Directory for IBM Security zsecure Administration V Program Number 5655-N23. for Use with z/os. Document Date: August 2017

IBM. Program Directory for IBM Security zsecure Administration V Program Number 5655-N23. for Use with z/os. Document Date: August 2017 IBM Program Directory for IBM Security zsecure Administration V2.3.0 Program Number 5655-N23 for Use with z/os Document Date: August 2017 GI13-2292-05 Note Before using this information and the product

More information

CA LDAP CA RS 1312 Service List

CA LDAP CA RS 1312 Service List CA LDAP 15.1 1 CA RS 1312 Service List Description Hiper 15.1 RO59547 LDAP GETS A SOC4 ABEND GATHERING XREF ROLE ACF2 DATA RO59856 UPDATE LDAP STC TO MENTION OPTIONAL STEPLIB FOR CAW0PLD RO60309 MODIFY

More information

IBM InfoSphere Guardium S-TAP for DB2 on z/os User's Guide. Version9Release1

IBM InfoSphere Guardium S-TAP for DB2 on z/os User's Guide. Version9Release1 IBM InfoSphere Guardium S-TAP for DB2 on z/os User's Guide Version9Release1 ii IBM InfoSphere Guardium S-TAP for DB2 on z/os User's Guide Contents Chapter 1. InfoSphere Guardium S-TAP for DB2 on z/os overview.......

More information

CA NetMaster 12.2 **Incremental INC01** 1 CA RS 1701 Service List

CA NetMaster 12.2 **Incremental INC01** 1 CA RS 1701 Service List CA NetMaster 12.2 **Incremental INC01** 1 CA RS 1701 Service List Description Type 12.2 RO93288 NF1M51 CONN INFO REQ FOR STACK: TCPIP FAILED. REASON: -1 PTF RO93476 SIGNON COMMAND DOES NOT REFRESH REGION

More information

February Xephon plc 2000

February Xephon plc 2000 171 February 2000 3 Duplicating SMP/E zones 13 Further CICS Log Manager enhancements 26 Controlling CICS resources from a batch program using the CICSPlex SM API part 2 37 Monitoring CICS activity 48 CICS

More information

RSA Ready Implementation Guide for

RSA Ready Implementation Guide for RSA Ready Implementation Guide for IBM Multi-Factor Authentication for z/os V1R1 John Sammon, RSA Partner Engineering Last Modified: 4/7/16 -- 1 - Solution Summary IBM Multi-Factor Authentication for z/os,

More information

CA ACF CA RS 1602 Service List

CA ACF CA RS 1602 Service List CA ACF2 15.0 1 CA RS 1602 Service List Description Type 15.0 RO78433 ACF2/IMS: REMOVE LINE LIMIT ON ACF TRANSACTION PTF RO84661 PROVIDE REPORT ACFSTGUT TO DISPLAY RESOURCE RULE CSA USAGE PTF RO86604 CICS:

More information

IBM InfoSphere Optim for z/os Version 7 Release 2. Batch Utilities

IBM InfoSphere Optim for z/os Version 7 Release 2. Batch Utilities IBM InfoSphere Optim for z/os Version 7 Release 2 Batch Utilities IBM InfoSphere Optim for z/os Version 7 Release 2 Batch Utilities Note Before using this information and the product it supports, read

More information

IBM. Candle OMEGAMON Platform. Configuring IBM Tivoli Candle Management Server on z/os. Tivoli. Version 360 GC

IBM. Candle OMEGAMON Platform. Configuring IBM Tivoli Candle Management Server on z/os. Tivoli. Version 360 GC Tivoli Candle OMEGAMON Platform IBM Version 360 Configuring IBM Tivoli Candle Management Server on z/os GC32-9414-02 12 1 2 Tivoli Candle OMEGAMON Platform IBM Version 360 Configuring IBM Tivoli Candle

More information

CA NetMaster CA RS 1407 Service List

CA NetMaster CA RS 1407 Service List CA NetMaster 12.1 1 CA RS 1407 Service List Description Type 12.1 RO67864 N44304 LOC-16 OBTAIN DSCB FAILED PTF RO70159 IPSA1206 OSA-28 DEFINITION ERROR. CHPID NN IS NOT AN OSA PTF RO70453 SOCKET OPEN FAILED

More information

EMC ControlCenter PLANNING AND INSTALLATION GUIDE VOLUME 2 (MVS AGENTS) 6.0 P/N REV A02

EMC ControlCenter PLANNING AND INSTALLATION GUIDE VOLUME 2 (MVS AGENTS) 6.0 P/N REV A02 EMC ControlCenter 6.0 PLANNING AND INSTALLATION GUIDE VOLUME 2 (MVS AGENTS) P/N 300-004-024 REV A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright

More information

Compuware Maintenance Utility Supplement

Compuware Maintenance Utility Supplement Compuware Maintenance Utility Supplement October 14, 2013 ii Compuware Maintenance Utility Supplement Please direct questions about Compuware Maintenance Utility or comments on this document to: Compuware

More information

Uni Hamburg Mainframe Summit 2010 z/os The Mainframe Operating. Part 6 z/os Concepts

Uni Hamburg Mainframe Summit 2010 z/os The Mainframe Operating. Part 6 z/os Concepts Uni Hamburg Mainframe Summit 2010 z/os The Mainframe Operating Part 6 z/os Concepts Redelf Janßen IBM Technical Sales Mainframe Systems Redelf.Janssen@de.ibm.com Course materials may not be reproduced

More information

CA XCOM Data Transport for z/os CA RS 1312 Service List

CA XCOM Data Transport for z/os CA RS 1312 Service List CA XCOM Data Transport for z/os 11.6 1 CA RS 1312 Service List Description Hiper 11.6 RO59456 BATCH - TYPE=EXECUTE DEFAULTS TO WRONG DSNTYPE RO59725 VOL PARAMETER NOT HONORED, PDS CREATED ON WRONG VOLUME

More information

Program Directory for CICS Transaction Server for z/os Value Unit Edition V5.4 - activation module V Program Number 5722-DFJ FMID HCV7100

Program Directory for CICS Transaction Server for z/os Value Unit Edition V5.4 - activation module V Program Number 5722-DFJ FMID HCV7100 IBM Program Directory for CICS Transaction Server for z/os Value Unit Edition V5.4 - activation module V5.4.0 Program Number 5722-DFJ FMID HCV7100 for use with z/os Document Date: June 2017 GI13-4403-00

More information

CA NetMaster CA RS 1507 Service List

CA NetMaster CA RS 1507 Service List CA NetMaster 12.1 1 CA RS 1507 Service List Description Type 12.1 RO81238 REPORTCENTER SHUTDOWN TAKES A LONG TIME PTF RO81406 WEBCENTER IN IE8 AND BELOW HAS JAVASCRIPT ERRORS PTF RO81407 WEBCENTER IN IE8

More information

Program Directory for IBM Content Manager OnDemand Servers for z/os V Program Number 5697-CM1 FMID H272A10.

Program Directory for IBM Content Manager OnDemand Servers for z/os V Program Number 5697-CM1 FMID H272A10. IBM Program Directory for IBM Content Manager OnDemand Servers for z/os V10.1.0 Program Number 5697-CM1 FMID H272A10 for Use with z/os Document Date: April 2017 GI13-4556-00 Note Before using this information

More information

Program Directory for Cryptographic Support for z/os V1R13 - z/os V2R2. Program Number 5650-ZOS FMID HCR77B1. for Use with z/os V1R13 - z/os V2R2

Program Directory for Cryptographic Support for z/os V1R13 - z/os V2R2. Program Number 5650-ZOS FMID HCR77B1. for Use with z/os V1R13 - z/os V2R2 IBM Program Directory for Cryptographic Support for z/os V1R13 - z/os V2R2 Program Number 5650-ZOS FMID HCR77B1 for Use with z/os V1R13 - z/os V2R2 Document Date: November, 2015 GI11-9478-04 Note Before

More information

Program Directory for IBM Security zsecure Suite: CARLa-driven components V Program Number 5655-N16/N17/N20/N21/AD8. FMIDs HCKR221, HC4R221

Program Directory for IBM Security zsecure Suite: CARLa-driven components V Program Number 5655-N16/N17/N20/N21/AD8. FMIDs HCKR221, HC4R221 IBM Program Directory for IBM Security zsecure Suite: CARLa-driven components V2.2.1 Program Number 5655-N16/N17/N20/N21/AD8 FMIDs HCKR221, HC4R221 for Use with z/os Document Date: December 2016 GI13-2277-05

More information

Program Directory for IBM Multi-Factor Authentication for z/os V Program Number FMID HMFA130. for Use with z/os V2.

Program Directory for IBM Multi-Factor Authentication for z/os V Program Number FMID HMFA130. for Use with z/os V2. IBM Program Directory for IBM Multi-Factor Authentication for z/os V1.3.0 Program Number 5655-162 FMID HMFA130 for Use with z/os V2.1 or higher Document Date: 17 November 2017 GI13-4316-30 Note Before

More information

IBM. JES2 Delivery Services. z/os. Version 2 Release 3

IBM. JES2  Delivery Services. z/os. Version 2 Release 3 z/os IBM JES2 Email Delivery Services Version 2 Release 3 Note Before using this information and the product it supports, read the information in Notices on page 31. This edition applies to Version 2 Release

More information

CA Endevor Software Change Manager

CA Endevor Software Change Manager CA Endevor Software Change Manager CA Roscoe Interface Administration Guide Version 16.0.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter

More information

Updates that apply to IBM DB2 Analytics Accelerator Loader for z/os V2R1 User's Guide (SC )

Updates that apply to IBM DB2 Analytics Accelerator Loader for z/os V2R1 User's Guide (SC ) Updates that apply to IBM DB2 Analytics Accelerator Loader for z/os V2R1 User's Guide (SC27-6777-00) Date of change: January 2018 Topic: Multiple Change description: Documentation changes made in support

More information

The Acrobat PDF Format

The Acrobat PDF Format Messages This manual applies to ThruPut Manager Version 7 Release 1.0 PTF level 7109 and to all further releases until otherwise indicated. This material contains proprietary information on ThruPut Manager.

More information

CA NetMaster CA RS 1504 Service List

CA NetMaster CA RS 1504 Service List CA NetMaster 12.1 1 CA RS 1504 Service List Description Type 12.1 RO77465 $RMEVENT MISSING FROM TRANSIENT LOG PTF RO77762 REPORTCENTER SQLCODE -999 STMT NOT ALLOWED IN AD MUF PTF RO78503 LINK MANAGERS

More information

Program Directory for IBM DB2 Administration Tool for z/os V Program Number 5655-DAT FMID H0IHB20. for Use with z/os

Program Directory for IBM DB2 Administration Tool for z/os V Program Number 5655-DAT FMID H0IHB20. for Use with z/os IBM Program Directory for IBM DB2 Administration Tool for z/os V11.02.00 Program Number 5655-DAT FMID H0IHB20 for Use with z/os Document Date: August 2015 GI10-8972-01 Note Before using this information

More information

EView/390 Management for HP OpenView Operations Unix

EView/390 Management for HP OpenView Operations Unix EView/390 Management for HP OpenView Operations Unix Concepts Guide Software Version: A.06.00 June 2007 Copyright 2007 EView Technology, Inc. EView Technology makes no warranty of any kind with regard

More information

CA SYSVIEW Performance Management

CA SYSVIEW Performance Management CA SYSVIEW Performance Management Installation Guide Version 14.0 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information