ASG-Rochade SCANCOB Release Notes

Size: px
Start display at page:

Download "ASG-Rochade SCANCOB Release Notes"

Transcription

1 ASG-Rochade SCANCOB Release Notes Version March 8, 2007 CO This publication contains information about all modifications made to ASG-Rochade SCANCOB (herein called SCANCOB) since Version ISP Updates ASG encourages you to visit http// and sign onto the Intelligent Support Portal (ISP) to verify whether any product or documentation revisions, new maintenance, or service packs apply to this release of the product or its accompanying documentation. Product Information The SCANCOB scanner tool performs two major functions It inspects the source code to ensure that it conforms to your programming standards, and it extracts information about the relationships between your program and other system components for documentation purposes. The information provided by SCANCOB comprises an overview of the relationships between different programs, files, procedures, functions, and CICS/DL/I and DB2 elements, as well as information about file organization and file access. Enhancements and Changes Version Besides the job ROCOBSC, there is now an additional sample job, ROCOBSC7, for scanning JCL. It supports the improved mechanism offered by Version 7 of ASG-Rochade (herein called Rochade) for passing parameters to the client via a dataset defined through a PARMFILE DD statement. Copyright 2007 ASG GmbH & Co. KG, a wholly owned subsidiary of Allen Systems Group, Inc. All rights reserved. All names and products contained herein are the trademarks or registered trademarks of their respective holders. 1

2 Version This version contains a COBOL front end that processes Enterprise COBOL. It performs source code transformations before executing standard SCANCOB COBOL analysis. You can find the transformation rules in the member ECO#CO3 in <HLQ>.ROPROD.README. Note The Enterprise COBOL to COBOL II transformation approach is available in the z/os version of SCANCOB. Version These modifications and enhancements have been made to SCANCOB in Version Added parameters for SCANCOB CALLPARM Section <COPP> When scanning copy books standalone that contain replacing pattern in a form xxx, ASG recommends that you it specify parameter colon_as_char=2 in section <COPP>. The SCANCOB tokenizer will then treat a colon () as a normal character instead of a word separator. Section <COPA> These parameters have been added SPACE_MARKER=<character1><character2>... Defines characters that should be treated as blank when they occur in column 7. DEBUG_LINE_AS_CODE=0 1 With DEBUG_LINE_AS_CODE=1, DEBUG lines (character D in column 7) are treated as code lines. Otherwise, they are treated as comment lines. ONLY_COPYBOOKS=0 1 The parameter ONLY_COPY_BOOKS=1 should be set when you use SCANCOB to scan COBOL copy book libraries. 2

3 COPY_LEVEL=nn <unlimited> Use this parameter to suppress the copy book expansion at the defined level. COPY_LEVEL=0 means that SCANCOB does not expand copy books that are implemented in the source file. COPY_LEVEL=1 means that the first level is expanded but copy books included in an expanded copy book are not resolved, etc. NO_KEYWORDnn=<cobol word> Use this parameter when <cobol word> should not be treated as a COBOL keyword (e.g., NO_KEYWORD1=COLOR). IS_KEYWORDnn=<cobol word> Use this parameter when <cobol word> should be treated as a COBOL keyword. ASG recommends that you use this parameter when SCANCOB analysis sources with COBOL II dialect but some of the sources contain OS/VS COBOL keyword definitions. It is useful to define these keywords as predefined IS_KEYWORD2=REMARKS IS_KEYWORD3=EXHIBIT IS_KEYWORD4=RECURSIVE Section <REPLACING> with these parameters has been added For scanning copy books standalone that contain REPLACE/REPLACING pattern in a form (XXX), use section <REPLACING> to define a list of replacing patterns that might occur in the copy book definitions. REPLACE1=(PFX) REPLACE2=(XX1) REPLACE3=XX2 REPLACE4='XX3' REPLACE5=L- Section <GENERATOR> MIXEDCASE-FIELDS = YES NO With option YES, the string constants will not automatically be converted to uppercase. This parameter reflects working areas DAT-INI, VARINHA, and VARUSE. SCANCOB now suppresses information for each link qualifier when PARMS=NO is found in the CALLPARM file. 3

4 Version These modifications and enhancements have been made to SCANCOB in Version Enhanced processing of NAMFIL. A new parameter is available for use in NAMFIL. You can use the parameter SCANEXCLUDE to exclude members from the scan. Format SCANEXCLUDE=[pattern,] exclude_pattern where pattern defines a list of members in library SCANLIB. When a pattern is not defined, all members in SCANLIB are assumed. exclude_pattern defines a list of members, which is a subset of the members defined in pattern also that should not be scanned. Example 1 SCANLIB=LIB1 SCANEXCLUDE=*,*ABC Or SCANLIB=LIB1 SCANEXCLUDE=*ABC SCANCOB scans all members in LIB1 whose names do not end in ABC. Example 2 SCANLIB=LIB1 SCANEXCLUDE=A*,*10* SCANCOB scans all members in LIB1 whose names start with A except for those whose names also contain 10. The parameters CALL-VARIABLE and VARIABLE-CALL from section GENERATOR->CALL-EXTERN (see CALLPARM) can now also be used with the same syntax in sections CICS and IMS. 4

5 Version These modifications and enhancements have been made to SCANCOB in Version SCANCOB can create metric information about the analyzed source. Use parameter SHOW-METRICS=YES in the CALLPARM (section GENERATOR) to have SCANCOB generate information about metrics. SCANCOB can create a list of all statements in the source that contain REPLACE/REPLACING. This list is stored in a work area in the import file. Use parameter SHOW-REPLACING=YES in CALLPARM (section GENERATOR) to have SCANCOB generate information about REPLACE/REPLACING statements. Corrections and Fixes Version These errors in SCANCOB have been corrected in Version The error in VORELLE TABLE processing. A missing END TABLE statement caused a loop in the scanner front end. An error in nested program processing. SCANCOB did not treat names of nested programs correctly when the names were defined using literals like this one PROGRAM-ID. 'GETBYOFFS' IS COMMON. An error during copy book processing. The copy book information was truncated when the 88 level definition used the name EXECUTE. If, for instance, you are using 88 names, such as RETURN, END, or EXECUTE, you must define them via the NO_KEYWORD parameter in the <COPA> section. Example <COPA> NO_KEYWORD4=RETURN NO_KEYWORD5=END NO_KEYWORD6=EXECUTE 5

6 Version An error in SQL processing with built-in functions. An error in SQL extraction. In some cases, the extracted SQL statement exceeded the COBOL programming area column 12 to 71. Improved VALUE definition processing. Literals in notation H'<hex code>' are now treated correctly. An error in SPECIAL-NAMES paragraph processing. If the source contains a SPECIAL-NAMES paragraph with EBCDIC, use the IS_KEYWORD parameter in section <COPA> to declare EBCDIC. For example SPECIAL-NAMES. ALPHABET X IS EBCDIC DECIMAL-POINT IS COMMA. <COPA> IS_KEYWORD8=EBCDIC An error in processing complex expressions in parameter definitions of intrinsic function parameters, for example COMPUTE A = FUNCTION MOD((Z-DATE/100) 100) An error in processing the OS/VS keyword NOTE. These errors in SCANCOB have been corrected in Version The usage of EXAMINE (a language element from an older COBOL dialect) was causing an error. The new version handles EXAMINE when the word is defined with IS_KEYWORD in CALLPARM (i.e., IS_KEYWORD=EXAMINE). SCANCOB analyzed in RECORD definitions entry names of the format FILLER-XX (where XX is any characters) as FILLER and not as correct entry names as expected. A bug in SQL processing with COUNT(*). A bug in SQL processing with built-in functions. A bug in the Generator module. On rare occasions, the generation of the DATA-LEX table was causing a S0C4. A bug in CICS processing with CICS DFHVALUE(OPEN). 6

7 A bug in copy book processing. The earlier version created an error when the copy book contained a REPLACE statement that did not end with a dot (.). For example, in the source is a copy statement like this and the copy book cop-book contained only a REPLACE statement definition COPY cop-book.. * look at the two '.' * the first '.' ends the copy statement, the second * '.' is the end marker for the statement in the * copy book A bug in recognition of a replacing pattern, when the pattern contained string quotes. For example ==op-read-pahistakt== by =='read-pahistakt== '== A bug in the collating sequence clause. For example SOURCE-COMPUTER. IBM OBJECT-COMPUTER. IBM-3083 COLLATING SEQUENCE IS SEQUENCE-BCD. SPECIAL-NAMES. COPY TRSEQBCD. * BLOCK 95 IS IIIA. DATA DIVISION ALPHABET SEQUENCE-BCD IS LOW-VALUE '0' THRU '9' 'ø' 'œ' '' '>' '?' SPACE 'A' THRU 'I' '&' '.' '(' '<' 'J' THRU 'R' '-' '$' THRU ';' QUOTE '+' '/' 'S' THRU 'Z' ',' '%' '=' '"'. 7

8 Version These errors in SCANCOB have been corrected in Version An error in the VARINHA table. VARINHA documents every value assigned to a variable in the source. In certain cases, earlier versions of SCANCOB documented too much information about index variables. An error in the handling of floating point formats. The format [+-].nnn is now scanned correctly, for example 01 SSATX-1-RATE-1 PIC SV9(6) COMP-3 VALUE MOVE +.5 TO SSATX-1-RATE-1. An error concerning LINEAGE-COUNTER in expressions. An error in expressions. The expression (8 OR 9) as shown in this example was not supported IF NV-ART >= 2 AND <= 5 OR = (8 OR 9) CALL statements to a nested program ID using the identifier of the nested program are now documented correctly. Earlier versions of SCANCOB recognized calls to a nested program only when the CALL statement used a literal format. An error in scanning copy books. In some cases, when a copy book contained incomplete record definitions with ascending level numbers, some of the data description entries were not documented, for example 05 name pic x. 02 name1 pic x. 02 name2 pic x. An error in EXEC SQL analysis (i.e., a CASE statement in SELECT). An error in COPY statement processing. For example, this code was evaluated incorrectly COPY CO3866I SUPPRESS EJECT * comment. An error in the handling of nested inline perform statements. An error in processing of PANVALET copy statements (++INCLUDE ). Several errors in the handling of nested COBOL programs COPY statements in a nested program were not documented if the nested program was implemented in a copy book. COBOL sources that implement nested programs on the same program level are now supported. 8

9 Installation Information For information on installing Rochade and Rochade components under all supported operating systems, see the Rochade readme file (i.e., the file readme_en.pdf) and the ASG-Rochade Installation Guide. SCANCOB consists of two components that must be installed separately on your z/os machine and on a Windows PC; for details, see Installation under z/os on page 9 and Installation under Windows on page 11. In addition, be sure to heed the information in Upgrade Instructions on page 11. System Requirements ASG provides detailed lists of hardware and software requirements for all Rochade components and relevant operating systems on its ISP at http//cust.asg.com/rochade/productspecifications/supportedenvironments.html. The hardware requirements for SCANCOB are the same as for Rochade (see the section on system requirements in the ASG-Rochade System Administrator s Guide). These are the software requirements for SCANCOB Rochade 5.40 or later ASG-Rochade AutoPilot (herein called AutoPilot) 3.40 or later ASG-Rochade I-RIM (herein called I-RIM) 1.40 or later Installation under z/os For information about the installation of Rochade components under z/os, see the section about installation under MVS (synonymous with z/os in this context) in the Rochade readme file. You can install the z/os component of SCANCOB in any one of these modes Standalone on a machine on which Rochade is not installed. In the context of a Rochade environment Using a Rochade environment that already exists. Installing it together with a new Rochade environment. 9

10 This table lists, in logical order, the datasets that the SCANCOB installation creates on your computer Dataset Name PFX?.ROPROD.CNTL *.CNTL(ROCOBSC) Description Job library for SCANCOB. Job for executing SCANCOB. Note If you are using SCANCOBSC in conjunction with a Rochade version earlier than 7.0, you must use this scan job. If you are running Rochade 7.0 or later, you can also use this job, but in that case, ASG recommends that you use the job ROCOBSC7 instead (see below). *.CNTL(ROCOBSC7) Job for executing SCANCOB. Note ASG recommends that you use this scan job if you are running Rochade 7.0 or later. It supports the improved mechanism offered by the newer Rochade versions for passing parameters to the client via a dataset defined through a PARMFILE DD statement. For details, see the section on calling a batch client under MVS in the ASG-Rochade Programmer s Guide Volume 3. *.CNTL(ROCOBSCE) PFX?.ROPROD.LOAD *.LOAD(ROCOBSC) *.LOAD(ROCOB#A) *.LOAD(ROCOB#G) PFX?.ROPROD.DATA *.DATA(CO3C#SRC) *.DATA(CO3C#CPY) *.DATA(CO3PARM) *.DATA(CO3CHKF) *.DATA(CO3INCL) ROCOBSC with external SQL-Analysis (CHK2SQL). Load module library for SCANCOB. Control module for SCANCOB. SCANCOB front end. Scanner back end. Library with control files for SCANCOB. SCANCOB call parameters for scanning sources. SCANCOB call parameters for scanning copies. SCANCOB model map. Checkpoint definitions. Include path for searching COBOL copy books. 10

11 Dataset Name PFX?.ROPROD.CO3MACL PFX?.ROPROD.README *.README(ECO#CO3) PFX?.ROPROD.SAMPLES *.SAMPLES(CO3SRC) *.SAMPLES(CO3COPY) *.SAMPLES(CO3CPY11) Description Library with system copy books for SQL, CICS analysis. Readme files. Documentation about Enterprise COBOL to COBOL II conversion. Source examples. COBOL source code examples. COBOL copy book examples. COBOL copy book examples. Installation under Windows SCANCOB requires procedures for importing the scanner results into Rochade. These procedures are provided by the procedure package ROSCAN3, which you can install using the standard two-step installation process for Rochade components under Windows first the ADM installation, then the Application installation. The ADM installation installs the procedure package into the Rochade databases. It requires that you have operator or administrator rights. Hence, this installation should be carried out by a system or Rochade database administrator. The Application installation registers the procedure package on the local computer. This step is not mandatory for SCANCOB, but it is useful to have the procedure package properly registered so that it is listed with the correct status during future installation activities. If you need more information about ADM and Application installation, see the ASG-Rochade Installation Guide. Upgrade Instructions Note These upgrade instructions apply only if you are using Rochade 6 or later. If you already have SCANCOB data in Rochade, ASG recommends that you migrate those data to Rochade s extended naming concept, which allows long item names. For information about migration to the extended naming concept, visit the ISP and see the technical bulletin Rochade XNS Migration Utility for Legacy Scanner Applications. 11

12 After you have completed the migration successfully, set GEN-SHOR-NAMES=V6 in the parameter file. Note If you do not have any SCANCOB data in Rochade yet, you must also set GEN-SHOR-NAMES=V6 in the parameter file. Getting Started Before you can run a first scan with SCANCOB, these requirements must be fulfilled The scanner must have been installed successfully. The packages ROSCAN and I-RIM must have been installed successfully. If you also want to have the scan result imported into Rochade immediately after the scan (i.e., if you also want to run the IMPORT step of the scan job), the Rochade server must be running. For a first test of the scanner in the Rochade environment, ASG suggests that you use the job ROCOBSC (PFX?.ROPROD.CNTL), which contains a step named IMP. In this step, the result of the source code analysis is imported into Rochade. Extracted from the job ROCOBSC //************************************************** //* call import //************************************************** //* please adjust the parameter //* //* USR MUSR CLISECT //* //* USR... User name for $movelog //* MUSR... Name of the subject area //* MVER... version Name for subject area //* //IMPORT EXEC ROCLIENT,USR='BB',MUSR='CO3SAMPLE', // MVER='INITIAL', // COND=(8,LT,SCAN),REGION=0K //SYSIN DD DSN=&DIR..CO3OUT,DISP=(OLD,DELETE) //* 12

13 The sample job expects this prerequest in the database A user BB with ADM rights. Create this user if necessary. A subject area CO3SAMPLE (with information model C-RIM and version INITIAL) for importing the scanner result. Create this subject area if necessary. Note If you want to use a different name for the user, subject area, or subject area version, change the corresponding entries (i.e., USR='BB', MUSR='CO3SAMPLE', and MVER='INITIAL') in the job ROCOBSC. After you have installed I-RIM, use the I-RIM Information Model Composer to generate your information model based on C-RIM (called C-RIM here, but could have a different name). For details, see the ASG-Rochade I-RIM System Administrator s Guide. To execute the SCANCOB jobs 1 Decide which of the two scan jobs you want to use for running the scan (i.e., ROCOBSC or ROCOBSC7). For information, see the table of datasets in Installation under z/os on page 9. 2 Open the job that you have chosen in step 1 and modify it as instructed in the comments within that job. 3 Submit the job. 13

14 14

ASG-Rochade SCANPLI Release Notes

ASG-Rochade SCANPLI Release Notes ASG-Rochade SCANPLI Release Notes Version 3.10.007 March 8, 2007 PL31100-310 This publication contains information about all modifications made to ASG-Rochade SCANPLI (herein called SCANPLI) since Version

More information

ASG-Rochade Reconciliation Toolkit Service Pack Release Notes Version

ASG-Rochade Reconciliation Toolkit Service Pack Release Notes Version ASG-Rochade Reconciliation Toolkit Service Pack Release Notes Version 1.70.013 December 10, 2013 RRT3300-170 This publication provides information about changes made to ASG-Rochade Reconciliation Toolkit

More information

ASG-Rochade Scanner for SQL Server Reporting Services Release Notes

ASG-Rochade Scanner for SQL Server Reporting Services Release Notes ASG-Rochade Scanner for SQL Server Reporting Services Release Notes Version 1.12.001 October 21, 2015 SCL1100-112 This publication contains installation instructions and information about ASG-Rochade Scanner

More information

ASG-Rochade XML Facilities Readme

ASG-Rochade XML Facilities Readme ASG-Rochade XML Facilities Readme Version 1.21.009 January 07, 2006 This file contains product information, installation instructions, and information about starting and using ASG-Rochade XML Facilities

More information

ASG-Rochade Installation Notes

ASG-Rochade Installation Notes ASG-Rochade Installation Notes February 2015 This publication introduces changes made to the installation of ASG-Rochade (herein called Rochade) and its components. It also provides information on system

More information

ASG-Rochade Reconciliation Toolkit Release Notes

ASG-Rochade Reconciliation Toolkit Release Notes ASG-Rochade Reconciliation Toolkit Release Notes Version 1.76.002 January 29, 2016 RRT1100-176 This publication introduces changes made to ASG-Rochade Reconciliation Toolkit (herein called Reconciliation

More information

Section 1. The essence of COBOL programming. Mike Murach & Associates

Section 1. The essence of COBOL programming. Mike Murach & Associates Chapter 1 Introduction to COBOL programming 1 Section 1 The essence of COBOL programming The best way to learn COBOL programming is to start doing it, and that s the approach the chapters in this section

More information

RDM RIM for ASG-Rochade Release Notes

RDM RIM for ASG-Rochade Release Notes RDM RIM for ASG-Rochade Release Notes Version 1.15 March 23, 2009 RDM1100-113 This file lists all new features, changes and fixes introduced in this release as compared to the RDM RIM Version 1.08. 1 ISP

More information

APPENDIX E SOLUTION TO CHAPTER SELF-TEST CHAPTER 1 TRUE-FALSE FILL-IN-THE-BLANKS

APPENDIX E SOLUTION TO CHAPTER SELF-TEST CHAPTER 1 TRUE-FALSE FILL-IN-THE-BLANKS APPENDIX E SOLUTION TO CHAPTER SELF-TEST CHAPTER 1 2. F The AS/400 family of computers, as with all IBM midrange and mainframe computers, uses the EBCDIC coding system. 3. F Arrival sequence files do not

More information

ASG-Rochade WebAccess Readme

ASG-Rochade WebAccess Readme ASG-Rochade WebAccess Readme Version 6.50.002 September 8, 2006 This publication contains product information about ASG-Rochade WebAccess (herein called WebAccess), including information about the installation,

More information

Enterprise COBOL. B Batch Compilation...7:14-15 BINARY... 9:41 BINARY (COMP or COMP-4)...9:39-40 Bit Manipulation Routines... 7:45

Enterprise COBOL. B Batch Compilation...7:14-15 BINARY... 9:41 BINARY (COMP or COMP-4)...9:39-40 Bit Manipulation Routines... 7:45 A Accessing XML Documents...4:8-9 Addressing: 24 versus 31 Bit... 6:3 AIXBLD... 9:20 AMODE... 6:4 ARITH - EXTEND or COMPAT... 9:4 Assignment... 2:10 Automatic Date Recognition... 8:4 AWO or NOAWO... 9:5

More information

ASG-Rochade Java API Release Notes

ASG-Rochade Java API Release Notes ASG-Rochade Java API Release Notes Version 2.00.007 January 12, 2007 JPI1100-200 This publication contains information about all modifications made to ASG-Rochade Java API (herein called Java API) since

More information

Rochade DB2BUS Migration Utility for Legacy Data

Rochade DB2BUS Migration Utility for Legacy Data Rochade DB2BUS Migration Utility for Legacy Data Version 1.0 December 2005 Page 1 Contents: 1 Introduction... 3 2 Long Rochade Item Names for DB2BUS Data... 4 3 Prerequisites for Using Long Rochade Item

More information

Unicode Support. Chapter 2:

Unicode Support. Chapter 2: Unicode Support Chapter 2: SYS-ED/Computer Education Techniques, Inc. Ch 2: 1 SYS-ED/Computer Education Techniques, Inc. Ch 2: 1 Objectives You will learn: Unicode features. How to use literals and data

More information

IBM Tivoli Decision Support for z/os Version Messages and Problem Determination IBM SH

IBM Tivoli Decision Support for z/os Version Messages and Problem Determination IBM SH IBM Tivoli Decision Support for z/os Version 1.8.2 Messages and Problem Determination IBM SH19-6902-15 IBM Tivoli Decision Support for z/os Version 1.8.2 Messages and Problem Determination IBM SH19-6902-15

More information

ASG-Rochade Data Warehouse Application Release Notes

ASG-Rochade Data Warehouse Application Release Notes ASG-Rochade Data Warehouse Application Release Notes Version 1.50 December 13, 2006 DWA1100-150 This publication contains installation instructions for ASG-Rochade Data Warehouse Application (herein called

More information

S16150: What s New in COBOL Version 5 since GA

S16150: What s New in COBOL Version 5 since GA S16150: What s New in COBOL Version 5 since GA Tom Ross IBM Aug 4, 2014 1 Title: What's new in COBOL v5 since GA Refresher about COBOL V5 requirements Service updates Improved compatibility New Function

More information

ERWINBUS for ASG-Rochade Release Notes

ERWINBUS for ASG-Rochade Release Notes ERWINBUS for ASG-Rochade Release Notes Version 8.82 for Windows July 18, 2014 ERB1100-882 This publication describes all new features, changes, and fixes of ERWINBUS for ASG-Rochade introduced in this

More information

RDM RIM for ASG-Rochade Release Notes

RDM RIM for ASG-Rochade Release Notes RDM RIM for ASG-Rochade Release Notes Version 1.17 December 11, 2009 RDM1100-117 This file lists all new features, changes and fixes introduced in this release as compared to the RDM RIM Version 1.08.

More information

Transforming Legacy Code: The Pitfalls of Automation

Transforming Legacy Code: The Pitfalls of Automation Transforming Legacy Code: The Pitfalls of Automation By William Calcagni and Robert Camacho www.languageportability.com 866.731.9977 Code Transformation Once the decision has been made to undertake an

More information

ASG-Rochade Bus for Rational Software Modeler Release Notes

ASG-Rochade Bus for Rational Software Modeler Release Notes ASG-Rochade Bus for Rational Software Modeler Release Notes Version 3.01 for Windows December 21, 2012 RRS1100-301 This publication describes all new features, changes and fixes of ASG-Rochade Bus for

More information

GnuCOBOL Quick Reference

GnuCOBOL Quick Reference GnuCOBOL Quick Reference For Version 2.2 Final [7Sept2017] Gary L. Cutler (cutlergl@gmail.com). For updates Vincent B. Coen (vbcoen@gmail.com). This manual documents GnuCOBOL 2.2 Final, 7Sept2017 build.

More information

PWRDESBUS for ASG-Rochade Release Notes

PWRDESBUS for ASG-Rochade Release Notes PWRDESBUS for ASG-Rochade Release Notes Version 6.53 for Windows January 7, 2015 PDB1100-653 This publication describes all new features, changes, and fixes of PWRDESBUS for ASG-Rochade introduced in this

More information

IBM. Data Sheet. Enterprise COBOL for z/os. Version 6.2

IBM. Data Sheet. Enterprise COBOL for z/os. Version 6.2 Enterprise COBOL for z/os IBM Data Sheet Version 6.2 Enterprise COBOL for z/os IBM Data Sheet Version 6.2 Third edition (January 2018) This edition applies to Version 6 Release 2 of IBM Enterprise COBOL

More information

Overview Guide. Mainframe Connect 15.0

Overview Guide. Mainframe Connect 15.0 Overview Guide Mainframe Connect 15.0 DOCUMENT ID: DC37572-01-1500-01 LAST REVISED: August 2007 Copyright 1991-2007 by Sybase, Inc. All rights reserved. This publication pertains to Sybase software and

More information

enterprise product suite 2.2.2

enterprise product suite 2.2.2 enterprise product suite 2.2.2 WHAT S NEW WHAT S NEW IN THE ENTERPRISE PRODUCT SUITE VERSION 2.2.2 This What s New document covers new features and functions in the latest release of the Micro Focus Product

More information

DB2BUS for ASG-Rochade Release Notes

DB2BUS for ASG-Rochade Release Notes DB2BUS for ASG-Rochade Release Notes Version 10.02 for MVS and Windows January 4, 2013 DBB1100-1002 This publication describes all new features, changes and fixes of DB2BUS for ASG- Rochade introduced

More information

The information contained in this manual is relevant to end-users, application programmers and system administrators.

The information contained in this manual is relevant to end-users, application programmers and system administrators. August 2002 2002 Preface Purpose This manual describes the GCOS 7 SQL CMA (Client Mode Access) product. This product is intended for anyone who wishes to perform networking operations with databases from

More information

COBOL for AIX, Version 4.1

COBOL for AIX, Version 4.1 software Application development for today s changing marketplace COBOL for AIX, Version 4.1 To remain competitive, you need a complete business strategy to help you modernize, integrate, and manage existing

More information

Tivoli Tivoli Decision Support for z/os

Tivoli Tivoli Decision Support for z/os Tivoli Tivoli Decision Support for z/os Version 1.8.1 Messages and Problem Determination SH19-6902-13 Tivoli Tivoli Decision Support for z/os Version 1.8.1 Messages and Problem Determination SH19-6902-13

More information

Introduction. Chapter 1:

Introduction. Chapter 1: Introduction Chapter 1: SYS-ED/Computer Education Techniques, Inc. Ch 1: 1 SYS-ED/Computer Education Techniques, Inc. 1:1 Objectives You will learn: New features of. Interface to COBOL and JAVA. Object-oriented

More information

Supported Environments for Rochade Products June 18, Servers

Supported Environments for Rochade Products June 18, Servers June 18, 2018 This publication lists the supported operating systems and other software requirements for all Rochade products. Some products are available for multiple operating systems. The Version column

More information

X/Open CAE Specification

X/Open CAE Specification X/Open CAE Specification X/Open Company, Ltd. December 1991, X/Open Company Limited All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in

More information

Supported Environments for Rochade Products November 23, Servers

Supported Environments for Rochade Products November 23, Servers November 23, 2016 This publication lists the supported operating systems and other software requirements for all Rochade products. Some products are available for multiple operating systems. The Version

More information

CA Optimizer/II CA RS 1312 Service List

CA Optimizer/II CA RS 1312 Service List CA Optimizer/II 8.5 1 CA RS 1312 Service List Description Hiper 8.5 RO45428 UPDATE CAOUSINI DCB MSM CONFIGURATION RO47732 UPDATE OPT/II SDS OF AH5 REMOVE AOX SDS XML RO47733 UPDATE OPT/II SDS OF AH5 REMOVE

More information

Data Center Management Systems

Data Center Management Systems Data Center Management Systems The Expert JCL Manager - JED The Future of Automated JCL Management JED Highlights:(Partial list) The JED Process Operating Environments Supported JED Features and Functions

More information

Creating a procedural computer program using COBOL Level 2 Notes for City & Guilds 7540 Unit 005

Creating a procedural computer program using COBOL Level 2 Notes for City & Guilds 7540 Unit 005 Creating a procedural computer program using COBOL Level 2 Notes for City & Guilds 7540 Unit 005 Compatible with Micro Focus Net Express 5.0 COBOL compiler Version 1 Tench Computing Ltd Pines Glendale

More information

Release Notes. Release 8.1 January 2013

Release Notes. Release 8.1 January 2013 Release Notes Release 8.1 January 2013 IKAN Solutions N.V. Schaliënhoevedreef 20A B-2800 Mechelen BELGIUM Copyright 2013, IKAN Solutions N.V. No part of this document may be reproduced or transmitted in

More information

ASG-Rochade Reconciliation Toolkit Readme

ASG-Rochade Reconciliation Toolkit Readme ASG-Rochade Reconciliation Toolkit Readme Version 1.00.000 November 23, 2005 This file contains installation instructions and information about getting started using the ASG-Rochade Reconciliation Toolkit

More information

COBOL performance: Myths and Realities

COBOL performance: Myths and Realities COBOL performance: Myths and Realities Speaker Name: Tom Ross Speaker Company: IBM Date of Presentation: August 10, 2011 Session Number: 9655 Agenda Performance of COBOL compilers - myths and realities

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

Copyright Network Management Forum

Copyright Network Management Forum SPIRIT Platform Blueprint SPIRIT COBOL Language Portability Guide (SPIRIT Issue 3.0) Network Management Forum Copyright December 1995, Network Management Forum All rights reserved. No part of this publication

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

Develop a batch DB2 for z/os COBOL application using Rational Developer for System z

Develop a batch DB2 for z/os COBOL application using Rational Developer for System z Develop a batch DB2 for z/os COBOL application using Rational Developer for System z Make use of multiple Eclipse perspectives Skill Level: Intermediate Laurence England (englandl@us.ibm.com) STSM IBM

More information

IBM Software Group. Code Coverage

IBM Software Group. Code Coverage IBM Software Group Code Coverage Jon Sayles/IBM jsayles@us.ibm.com October 1 st, 2018 Code Coverage Overview Extension to Debugging: Tracks lines of code that have been executed during test Improves application

More information

DB2BUS for ASG-Rochade Release Notes

DB2BUS for ASG-Rochade Release Notes DB2BUS for ASG-Rochade Release Notes Version 11.03 for z/os and Windows July 7, 2016 DBB1100-1103 This publication describes all new features, changes and fixes of DB2BUS for ASG- Rochade introduced in

More information

Embedded SQL /COBOL Programmers Guide. Open Client 15.5

Embedded SQL /COBOL Programmers Guide. Open Client 15.5 Embedded SQL /COBOL Programmers Guide Open Client 15.5 DOCUMENT ID: DC37696-01-1550-02 LAST REVISED: September 2010 Copyright 2010 by Sybase, Inc. All rights reserved. This publication pertains to Sybase

More information

Parser Tools: lex and yacc-style Parsing

Parser Tools: lex and yacc-style Parsing Parser Tools: lex and yacc-style Parsing Version 6.11.0.6 Scott Owens January 6, 2018 This documentation assumes familiarity with lex and yacc style lexer and parser generators. 1 Contents 1 Lexers 3 1.1

More information

Chapter 18. Generating DB2 High Performance Unload jobs

Chapter 18. Generating DB2 High Performance Unload jobs Chapter 18. Generating DB2 High Performance Unload jobs IBM DB2 High Performance Unload (DB2 HPU) is a high-speed DB2 utility for unloading DB2 tables from a table space or from an image copy. DB2 Automation

More information

CA Repository for z/os CA RS 1511 Service List

CA Repository for z/os CA RS 1511 Service List CA Repository for z/os 7.2 1 CA RS 1511 Service List Release Service Description Type 7.2 RO85297 CONVERT SOC7 IN COBOL SCAN TO RC=12 PTF RO85308 CORRELATION ID ON SQL COLUMNS PTF RO85459 RESOLVING PROBLEM

More information

ASG-Rochade Reconciliation Toolkit Readme

ASG-Rochade Reconciliation Toolkit Readme ASG-Rochade Reconciliation Toolkit Readme Version 1.00.004 July 4, 2006 This file contains installation instructions, information about getting started using the ASG-Rochade Reconciliation Toolkit (herein

More information

TIBCO ActiveMatrix BusinessWorks Plug-in for Data Conversion Release Notes

TIBCO ActiveMatrix BusinessWorks Plug-in for Data Conversion Release Notes TIBCO ActiveMatrix BusinessWorks Plug-in for Data Conversion Release Notes Software Release 4.2.0 November 2014 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER

More information

See the mechanics of how to do this for a cycle-driven process with a high degree of usability and easy job output management.

See the mechanics of how to do this for a cycle-driven process with a high degree of usability and easy job output management. Abstract: When concurrency is not needed for warehouse applications it is possible to use standard z/os tools to load a Db2 Analytics Accelerator without sample programs or 3rd party tools. See the mechanics

More information

SQL-CMA SQL*XT for ORACLE

SQL-CMA SQL*XT for ORACLE Database Products SQL-CMA SQL*XT for ORACLE GCOS 7 SQL Client Mode Access User's Guide GCOS 7 47 A2 01EL Rev 00 Database Products SQL-CMA SQL*XT for ORACLE GCOS 7 SQL Client Mode Access User's Guide GCOS

More information

RM/COBOL to RM/COBOL-85

RM/COBOL to RM/COBOL-85 Liant Software Corporation RM/COBOL to RM/COBOL-85 Conversion Guide Copyright 1989 2003. Liant Software Corporation. All rights reserved. No part of this publication may be reproduced, stored in a retrieval

More information

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Item: In-Stream Data in JCL Procedures and Includes Element/Component: JES3 Material is current as of June 2013 I n Agenda Trademarks Presentation Objectives Overview

More information

Micro Focus RM/COBOL. RM/COBOL Syntax Summary

Micro Focus RM/COBOL. RM/COBOL Syntax Summary Micro Focus RM/COBOL RM/COBOL Syntax Summary Contents Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2017. All rights reserved.

More information

COMP 3400 Mainframe Administration 1

COMP 3400 Mainframe Administration 1 COMP 3400 Mainframe Administration 1 Christian Grothoff christian@grothoff.org http://grothoff.org/christian/ 1 These slides are based in part on materials provided by IBM s Academic Initiative. 1 Today

More information

Full Speed Ahead with COBOL Into the Future

Full Speed Ahead with COBOL Into the Future Full Speed Ahead with COBOL Into the Future Speaker Name: Tom Ross IBM February 4, 2013 Session Number: 12334 Disclaimer IBM s statements regarding its plans, directions, and intent are subject to change

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

IBM Tivoli Advanced Reporting for DFSMShsm. User s Guide. Version 1 Release 1 SC

IBM Tivoli Advanced Reporting for DFSMShsm. User s Guide. Version 1 Release 1 SC IBM Tivoli Advanced Reporting for DFSMShsm User s Guide Version 1 Release 1 SC23-6331-00 Note Before using this information and the products it supports, read the information in Appendix B, on page 319.

More information

Micro Focus Studio Enterprise Edition Test Server

Micro Focus Studio Enterprise Edition Test Server product review Micro Focus Studio Enterprise Edition Test Server Micro Focus Studio Enterprise Edition Test Server (Test Server) is a testing suite that supports pre-production testing of mainframe applications

More information

JCL JOB CONTROL LANGUAGE

JCL JOB CONTROL LANGUAGE Mainframe Concepts:- What is Mainframe Difference between Open source Applications and Mainframe Application Where do we use Mainframe Applications Operating System information Resource Access Control

More information

Mainframe Developer NO.2/29, South Dhandapani St, Burkit road, T.nagar, Chennai-17. Telephone: Website:

Mainframe Developer NO.2/29, South Dhandapani St, Burkit road, T.nagar, Chennai-17. Telephone: Website: Mainframe Developer Mainframe Developer Training Syllabus: IBM Mainframe Concepts Architecture Input/output Devices JCL Course Syllabus INTRODUCTION TO JCL JOB STATEMENT CLASS PRTY MSGCLASS MSGLEVEL TYPRUN

More information

LE/390 Migration and Consolidation

LE/390 Migration and Consolidation LE/390 Migration and Consolidation Eberhard Ramm, Diplom Engineer of Data Systems Technology fuer Datentechnik mbh Industriestrasse 35 D-82194 Groebenzell, Germany Phone: +49 (0)8142 57264 email: SibraGmbh@t-online.de

More information

CROSSREF Manual. Tools and Utilities Library

CROSSREF Manual. Tools and Utilities Library Tools and Utilities Library CROSSREF Manual Abstract This manual describes the CROSSREF cross-referencing utility, including how to use it with C, COBOL 74, COBOL85, EXTENDED BASIC, FORTRAN, Pascal, SCREEN

More information

CS 6353 Compiler Construction Project Assignments

CS 6353 Compiler Construction Project Assignments CS 6353 Compiler Construction Project Assignments In this project, you need to implement a compiler for a language defined in this handout. The programming language you need to use is C or C++ (and the

More information

IBM. Migration Guide. Enterprise COBOL for z/os. Version 6.1 GC

IBM. Migration Guide. Enterprise COBOL for z/os. Version 6.1 GC Enterprise COBOL for z/os IBM Migration Guide Version 6.1 GC27-8715-00 Enterprise COBOL for z/os IBM Migration Guide Version 6.1 GC27-8715-00 Note Before using this information and the product it supports,

More information

Release Bulletin Mainframe Connect Client Option for CICS 15.0

Release Bulletin Mainframe Connect Client Option for CICS 15.0 Release Bulletin Mainframe Connect Client Option for CICS 15.0 Document ID: DC71770-01-1500-01 Last revised: August 2007 Topic Page 1. Accessing current release bulletin information 2 2. Product summary

More information

COBOL for AIX. Source conversion utility (scu)

COBOL for AIX. Source conversion utility (scu) COBOL for AIX Source conversion utility (scu) COBOL for AIX Source conversion utility (scu) ii Source conversion utility (scu) Contents Source conversion utility (scu)..... 1 Source conversion utility

More information

CS 4240: Compilers and Interpreters Project Phase 1: Scanner and Parser Due Date: October 4 th 2015 (11:59 pm) (via T-square)

CS 4240: Compilers and Interpreters Project Phase 1: Scanner and Parser Due Date: October 4 th 2015 (11:59 pm) (via T-square) CS 4240: Compilers and Interpreters Project Phase 1: Scanner and Parser Due Date: October 4 th 2015 (11:59 pm) (via T-square) Introduction This semester, through a project split into 3 phases, we are going

More information

Migrating to Tivoli Decision Support for z/os (TDSz) Version 1.8.2

Migrating to Tivoli Decision Support for z/os (TDSz) Version 1.8.2 Migrating to Tivoli Decision Support for z/os (TDSz) Version 1.8.2 This document contains instructions to migrate to TDSz Version 1.8.2. Migration paths from TDSz V1.8.0 and V1.8.1 are provided. This document

More information

For the Windows, Oracle Enterprise Linux, Red Hat Enterprise Linux, and SUSE Linux Enterprise operating systems Software Version: 10.01, CP 12.

For the Windows, Oracle Enterprise Linux, Red Hat Enterprise Linux, and SUSE Linux Enterprise operating systems Software Version: 10.01, CP 12. HP Universal CMDB For the Windows, Oracle Enterprise Linux, Red Hat Enterprise Linux, and SUSE Linux Enterprise operating systems Software Version: 10.01, CP 12.00 Discovery and Integration Content Guide

More information

Normalized Relational Database Implementation of VSAM Indexed Files

Normalized Relational Database Implementation of VSAM Indexed Files Normalized Relational Database Implementation of VSAM Indexed Files Note: this discussion applies to Microsoft SQL Server, Oracle Database and IBM DB2 LUW. Impediments to a Normalized VSAM Emulation Database

More information

COBOL Unbounded Loops A Diatribe On Their Omission From the COBOL Standard (and a Plea for Understanding)

COBOL Unbounded Loops A Diatribe On Their Omission From the COBOL Standard (and a Plea for Understanding) COBOL Unbounded Loops A Diatribe On Their Omission From the COBOL Standard (and a Plea for Understanding) August 11, 2016 Frank Swarbrick Principal Analyst Mainframe Applications Development FirstBank

More information

Briefly describe the purpose of the lexical and syntax analysis phases in a compiler.

Briefly describe the purpose of the lexical and syntax analysis phases in a compiler. Name: Midterm Exam PID: This is a closed-book exam; you may not use any tools besides a pen. You have 75 minutes to answer all questions. There are a total of 75 points available. Please write legibly;

More information

CA Repository for z/os CA RS 1403 Service List

CA Repository for z/os CA RS 1403 Service List CA Repository for z/os 7.2 1 CA RS 1403 Service List Description Hiper 7.2 RO63767 CATSYNC - INCORRECT ENT_TYPE ON TEXT_1 FOR CHK CON RO64483 BIGINT TRANSLATION RO64535 CA REPOSITORY SUPPORT FOR DB2 11

More information

IBM. Data Sheet. Enterprise COBOL for z/os. Version 6.2

IBM. Data Sheet. Enterprise COBOL for z/os. Version 6.2 Enterprise COBOL for z/os IBM Data Sheet Version 6.2 Enterprise COBOL for z/os IBM Data Sheet Version 6.2 November 2018 This edition applies to Version 6 Release 2 of IBM Enterprise COBOL for z/os (program

More information

Adapter for Mainframe

Adapter for Mainframe BEA WebLogic Java Adapter for Mainframe Samples Guide Release 5.1 Document Date: August 2002 Copyright Copyright 2002 BEA Systems, Inc. All Rights Reserved. Restricted Rights Legend This software and

More information

ASG-Rochade Bus for Rational Data Architect Release Notes

ASG-Rochade Bus for Rational Data Architect Release Notes ASG-Rochade Bus for Rational Data Architect Release Notes Version 2.04 for Windows May 8, 2014 RDA1100-204 This publication describes all new features, changes and fixes of the ASG-Rochade Bus for Rational

More information

About these Release Notes. Documentation Accessibility. New Features in Pro*COBOL

About these Release Notes. Documentation Accessibility. New Features in Pro*COBOL Pro*COBOL Release Notes 12c Release 1 (12.1) E18407-06 April 2013 About these Release Notes This document contains important information about Pro*COBOL 12c Release 1 (12.1). It contains the following

More information

Enable your COBOL applications to exploit the latest z/architecture

Enable your COBOL applications to exploit the latest z/architecture IBM Enterprise COBOL for z/os, Version 6 Release 1 IBM Enable your COBOL applications to exploit the latest z/architecture Enterprise COBOL is a premier enterprise class COBOL compiler for IBM z/os. It

More information

Expr Language Reference

Expr Language Reference Expr Language Reference Expr language defines expressions, which are evaluated in the context of an item in some structure. This article describes the syntax of the language and the rules that govern the

More information

JCL Syntax Running a Simple Job

JCL Syntax Running a Simple Job JCL Statements Lesson 2: JCL consists of eight basic statements which serve specific functions. The following JCL statements will be used: JOB The job statement defines a job and provides information about

More information

Mainframe Tutorials Cobol Db2 Jcl Cics Tutorials

Mainframe Tutorials Cobol Db2 Jcl Cics Tutorials Mainframe Tutorials Cobol Db2 Jcl Cics Tutorials 1 / 6 2 / 6 3 / 6 Mainframe Tutorials Cobol Db2 Jcl MAINFRAME TUTORIALS COBOL DB2 JCL CICS TUTORIALS ibm manuals MATERIALS MAINFRAME JOBS interview questions.

More information

CA-MetaCOBOL + Online Programming Language Guide. Release 1.1 R203M+11DRP

CA-MetaCOBOL + Online Programming Language Guide. Release 1.1 R203M+11DRP CA-MetaCOBOL + Online Programming Language Guide Release 1.1 R203M+11DRP -- PROPRIETARY AND CONFIDENTIAL INFORMATION -- This material contains, and is part of a computer software program which is, proprietary

More information

Chapter 1. Overview Topic: What's new Topic: Features and benefits

Chapter 1. Overview Topic: What's new Topic: Features and benefits Updates that apply to IBM DB2 Analytics Accelerator Loader for z/os V2R1 User's Guide (SC27-6777-00) Date of change: August, 2016 Topics: Multiple Change description: Documentation corrections and updates

More information

The manuals listed below are also recommended:

The manuals listed below are also recommended: February 1984 84 Preface This manual is a companion volume to the IDS/II User Guide and the IDS/II Data Base Administrator Guide; it brings together in a single book all the reference information required

More information

COBOL - DATABASE INTERFACE

COBOL - DATABASE INTERFACE COBOL - DATABASE INTERFACE http://www.tutorialspoint.com/cobol/cobol_database_interface.htm Copyright tutorialspoint.com As of now, we have learnt the use of files in COBOL. Now, we will discuss how a

More information

SmartIS. What is SmartIS? Product Description

SmartIS. What is SmartIS? Product Description SmartIS Product Description What is SmartIS? SmartIS is a Smart Information System designed for today s mainframe data centers. SmartIS automatically collects and correlates data from the areas of: Operations

More information

CS 6353 Compiler Construction Project Assignments

CS 6353 Compiler Construction Project Assignments CS 6353 Compiler Construction Project Assignments In this project, you need to implement a compiler for a language defined in this handout. The programming language you need to use is C or C++ (and the

More information

IBM DEBUG TOOL NEWSLETTER

IBM DEBUG TOOL NEWSLETTER Volume 14 April 2010 IBM DEBUG TOOL NEWSLETTER Currently Available PTFs SERVICE INFORMATION Release Debug Tool for z/os V10.1 Debug Tool for z/os V9.1 Debug Tool for z/os V8.1 English Component Japanese

More information

IBM Enterprise COBOL for z/os, V5.2 delivers support for the latest IBM z13 processor architecture

IBM Enterprise COBOL for z/os, V5.2 delivers support for the latest IBM z13 processor architecture IBM United States Software Announcement 215-027, dated January 14, 2015 IBM Enterprise COBOL for z/os, V5.2 delivers support for the latest IBM z13 processor architecture Table of contents 1 Overview 9

More information

How to Setup MTO/JCL Spooler Housekeeping Facility for Enterprise Server

How to Setup MTO/JCL Spooler Housekeeping Facility for Enterprise Server How to Setup MTO/JCL Spooler Housekeeping Facility for Enterprise Server Overview You can configure your enterprise server so when your region starts a CICS transaction called JCL1 runs automatically to

More information

COBOL Analyzer 4.0. Release Notes

COBOL Analyzer 4.0. Release Notes COBOL Analyzer 4.0 Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2016-2018. All rights reserved. MICRO FOCUS, the

More information

ASG-TriTune Started Task Monitor Invocation via ASG-TMON-generated z/os Commands Best Practices Document

ASG-TriTune Started Task Monitor Invocation via ASG-TMON-generated z/os Commands Best Practices Document 1 ASG-TriTune Started Task Monitor Invocation via ASG-TMON-generated z/os Commands Best Practices Document 2 Introduction Utilizing the ability of an ASG-TriTune monitor to be initiated immediately via

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

Technical Requirements Release 8.7

Technical Requirements Release 8.7 Technical Requirements Release 8.7 The IET Products (GuardIEn, genie, Object List+, VerifIEr, and pathview) can operate in either a client/server configuration or a remote data configuration. In a client/server

More information

ASG-MyInfoAssist Release Notes

ASG-MyInfoAssist Release Notes ASG-MyInfoAssist Release Notes Version 2.00.000 October 17, 2012 AMI1100-200 This publication provides installation instructions for ASG-MyInfoAssist (herein called MyInfoAssist) and information on how

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