Files with 80-byte Records JCL, Create QSAM & KSDS |
The SimoTime Home Page |
This document describes a Mainframe Job (or JCL Member) that will create a QSAM file and a VSAM KSDS with 80-byte records. The last job step will do a Hex-Dump of selected records in the VSAM KSDS based on a list of user-defined keys.
The source code for both COBOL programs is written using the VS COBOL II dialect and also work with COBOL for MVS and COBOL/370. A JCL member is provided to run the job as an MVS batch job on an IBM mainframe or as a project with Micro Focus Mainframe Express (MFE) running on a Windows System. This job may serve as a tutorial for new programmers and as a reference for experienced programmers.
We have made a significant effort to ensure the documents and software technologies are correct and accurate. We reserve the right to make changes without notice at any time. The function delivered in this version is based upon the enhancement requests from a specific group of users. The intent is to provide changes as the need arises and in a timeframe that is dependent upon the availability of resources.
Copyright © 1987-2025
SimoTime Technologies and Services
All Rights Reserved
The following is a list of the functions provided by this job.
| ||||||
Objectives when Creating the Test Files |
The input test data is included within the JCL Member. The following is a list of the output test files created by this job.
1. | DSN=SIMOTIME.DATA.CU80QSAM |
1.1. | This sequential file is created using the IEBGENER Utility program. The input is in-stream data that is included within the JCL Member. |
2. | DSN=SIMOTIME.DATA.CU80KSDS |
2.1. | This file is created using the DELETE/DEFINE functions of the IDCAMS Utility program and a COBOL program (KSLOADC1.cbl). The input is the sequential file created in the previous job step. |
3. | DSN=SIMOTIME.DATA.CU80DUMP |
3.1. | This sequential file contains records that are in a Hex-Dump format and is created using a COBOL program. The primary input is in-stream data (SYSUT3) that is included within the JCL Member. This in-stream data is a list of user-defined record keys that will be used to retrieve records from the VSAM, KSDS (SYSUT1) and write Hex-Dump information to a sequential file (SYSUT2), |
This suite of samples programs will run on the following platforms.
| ||||
Supported Operating Systems and Micro Focus Environments |
The following diagram is an overview of how this job creates the test files and provides a Hex-Dump capability.
Color Associations: The JCL MemberThis job has six (6) job steps. The following shows the content of the JCL member (MKC080J8.jcl) that is used to create the test files and provide hex-dump information. //MKC080J8 JOB SIMOTIME,CLASS=1,MSGCLASS=0,NOTIFY=CSIP1 //* ******************************************************************* //* MKC080J8.JCL - a JCL Member for Batch Job Processing * //* This JCL Member is provided by SimoTime Technologies * //* (C) Copyright 1987-2019 All Rights Reserved * //* Web Site URL: http://www.simotime.com * //* e-mail: helpdesk@simotime.com * //* ******************************************************************* //* //* Text - Create Test Files for MKC080*.* Series. //* Author - SimoTime Technologies //* Date - January 24, 1996 //* //* This job is intended to run on a Linux, UNIX or Windows System //* with a Micro Focus Enterprise Server Instance that is configured //* for an ASCII-encoded environment. //* //* For additional information contact the helpdesk@simotime.com //* //* The 1st job step (QSAMDELT) will delete previously created file. //* //* The 2nd job step (QSAMMAKE) will create a QSAM file with 80-byte //* records. //* //* The 3rd job step (KSDSMAKE) will create an empty VSAM, KSDS //* containing 80-byte records. The key is positions 1-6. //* //* The 4th job step (KSDSLOAD) will populate the VSAM, KSDS using //* using the QSAM file as input. //* //* The 5th job step (DUMPDELT) will delete previously created file. //* //* The 6th job step (DUMPEXEC) will create a Hexadecimal Dump file. //* The file will be a QSAM file with 80-byte records. //* //* This set of programs may be compiled and executed on a Linux, UNIX //* or Windows System with Micro Focus Enterprise Developer and may be //* adapted to run on an IBM Mainframe System. //* //* ******************************************************************* //* Step 1 of 6, Delete any previously created file... //* //QSAMDELT EXEC PGM=IEFBR14 //QSAM0080 DD DSN=SIMOTIME.DATA.CU80QSAM,DISP=(MOD,DELETE,DELETE), // STORCLAS=MFI, // SPACE=(TRK,5), // DCB=(RECFM=FB,LRECL=80,BLKSIZE=800,DSORG=PS) //* //* ******************************************************************* //* Step 2 of 6, Create and populate a new QSAM file... //* //QSAMMAKE EXEC PGM=IEBGENER //SYSPRINT DD SYSOUT=* //SYSIN DD DUMMY //* :....1....:....2....:....3....:....4....:....5....:....6....:....7....:....8 //SYSUT1 DD * 000100 Anderson Adrian 111 Peachtree Plaza Atlanta GA 26101 000200 Brown Billie 222 Baker Boulevard Baltimore MD 35702 000300 Carson Cameron 333 Crenshaw Blvd. Cupertino CA 96154 000400 Davidson Dion 444 Main Street Wilmington DE 27323 000500 Everest Evan 555 5TH Avenue New York NY 10341 000600 Franklin Francis 666 66TH Avenue Bedrock NY 11903 000700 Garfunkel Gwen 777 77TH Street New York NY 16539 000800 Harrison Hilary 888 88TH Street Pocatello ID 79684 000900 Isley Isabel 999 99TH Avenue Indianapolis IN 38762 001000 Johnson Jamie 1010 Paradise Drive Larkspur CA 90504 001100 Kemper Kelly 1111 Oak Circle Kansas City KS 55651 001200 Lemond Lesley 1212 Lockwood Road Mohave Desert AZ 80303 001300 Mitchell Marlow 1313 Miller Creek Road Anywhere TX 77123 001400 Newman Noel 1414 Park Avenue Santa Monica CA 90210 001500 Osborn Owen 1515 Center Stage Rolling Rock PA 36613 001600 Powell Pierce PO Box 1616 Ventura CA 97712 001700 Quigley Quincy 1717 Farm Hill Road Oshkosh WI 43389 001800 Ripley Ray 1818 Alien Lane Wayout KS 55405 001900 Smith Sammy 1919 Carnoustie Drive Novato CA 94919 002000 Tucker Taylor 2020 Sanger Lane St. Paul MN 43998 002100 Underwood Ulysses 2121 Wall Street New York NY 17623 002200 Van Etten Valerie 2222 Vine Street Hollywood CA 98775 002300 Wilson Wiley 2323 Main Street Boston MA 01472 002400 Xray Xavier 2424 24TH Street Nashville TN 44190 002500 Young Yanni 2525 Yonge Street Toronto ON 6B74A6 002600 Zenith Zebulon 2626 26TH Street Dallas TX 71922 123456 Doe John 123 Main Street Anywhere OR 88156 /* //SYSUT2 DD DSN=SIMOTIME.DATA.CU80QSAM, // DISP=(NEW,CATLG,DELETE), // STORCLAS=MFI, // SPACE=(TRK,5), // DCB=(RECFM=FB,LRECL=80,BLKSIZE=800,DSORG=PS) //* //* ******************************************************************* //* Step 3 of 6, Delete/Define a new VSAM, KSDS... //* //KSDSMAKE EXEC PGM=IDCAMS //SYSPRINT DD SYSOUT=* //SYSIN DD * DELETE SIMOTIME.DATA.CU80KSDS SET MAXCC = 0 DEFINE CLUSTER (NAME(SIMOTIME.DATA.CU80KSDS) - KEYS(6,0) - RECORDSIZE(80,80) - REUSE - TRACKS(45,15)) - DATA (NAME(SIMOTIME.DATA.CU80KSDS.DAT) - FREESPACE(10,15) - CISZ(8192)) - INDEX (NAME(SIMOTIME.DATA.CU80KSDS.IDX)) /* //SYSOUT DD SYSOUT=* //* //* //* ******************************************************************* //* Step 4 of 6, Load the KSDS from the QSAM File... //* //KSDSLOAD EXEC PGM=KSLOADC1 //QSAM0080 DD DSN=SIMOTIME.DATA.CU80QSAM,DISP=SHR //KSDS0080 DD DSN=SIMOTIME.DATA.CU80KSDS,DISP=SHR //SYSOUT DD SYSOUT=* //* //* ******************************************************************* //* Step 5 of 6, Delete the previously created SYSUT2 file. //* //DUMPDELT EXEC PGM=IEFBR14 //SYSUT2 DD DSN=SIMOTIME.DATA.CU80DUMP,DISP=(MOD,DELETE,DELETE), // STORCLAS=MFI, // SPACE=(TRK,5), // DCB=(RECFM=F,LRECL=512,DSORG=PS) //SYSOUT DD SYSOUT=* //* //* ******************************************************************* //* Step 6 of 6, Execute the HEX Dump program. //* Note: the dump information will be written to the SYSUT2 file. //* ******************************************************************* //* Dump the content of the user-defined records within a VSAM, KSDS. //* The results of the dump processing is posted to the SYSUT2 File. //* //DUMPEXEC EXEC PGM=HX80KSC3 //STEPLIB DD DSN=SIMOTIME.DEMO.LOADLIB1,DISP=SHR //SYSUT1 DD DSN=SIMOTIME.DATA.CU80KSDS,DISP=SHR //SYSUT2 DD DSN=SIMOTIME.DATA.CU80DUMP, // DISP=(NEW,KEEP,KEEP), // STORCLAS=MFI, // SPACE=(TRK,5), // DCB=(RECFM=F,LRECL=80,DSORG=PS) //* //* SYSUT3 is an instream file containing a list of keys that will be //* used to access records for the dump output. //SYSUT3 DD * /USERKEY 000100 /USERKEY 000200 /* //SYSOUT DD SYSOUT=* // The COBOL ProgramsThis section describes the two COBOL programs that are used in the test file creation process. Both of the programs were generated using SimoTime Technologies. Sequential Load, QSAM to KSDSThe following is the source code (KSLOADC1.cbl) for the COBOL program that does a sequential load of the VSAM, KSDS. The program reads a sequential file (QSAM0080) and adds the records to the VSAM, KSDS. The sequential file must be in sequence by the key field that is located in positions 1-6. IDENTIFICATION DIVISION. PROGRAM-ID. KSLOADC1. AUTHOR. SIMOTIME TECHNOLOGIES. ***************************************************************** * This program was generated by SimoZAPS * * A product of SimoTime Technologies * * Our e-mail address is: helpdesk@simotime.com * * Also, visit our Web Site at http://www.simotime.com * * * * Generation Date: 2018-10-10 Generation Time: 20:28:26:36 * * * * Record Record Key * * Function Name Organization Format Max-Min Pos-Len * * PRIMARY QSAM0080 SEQUENTIAL FIXED 00080 * * * * SECONDARY KSDS0080 INDEXED VARIABLE 00080 00001 * * 00080 00006 * * * ***************************************************************** ENVIRONMENT DIVISION. INPUT-OUTPUT SECTION. FILE-CONTROL. SELECT QSAM0080-FILE ASSIGN TO QSAM0080 ORGANIZATION IS SEQUENTIAL ACCESS MODE IS SEQUENTIAL FILE STATUS IS QSAM0080-STATUS. SELECT KSDS0080-FILE ASSIGN TO KSDS0080 ORGANIZATION IS INDEXED ACCESS MODE IS SEQUENTIAL RECORD KEY IS KSDS0080-PKEY-00001-00006 FILE STATUS IS KSDS0080-STATUS. ***************************************************************** DATA DIVISION. FILE SECTION. FD QSAM0080-FILE DATA RECORD IS QSAM0080-REC . 01 QSAM0080-REC. 05 QSAM0080-DATA-01 PIC X(00080). FD KSDS0080-FILE DATA RECORD IS KSDS0080-REC . 01 KSDS0080-REC. 05 KSDS0080-PKEY-00001-00006 PIC X(00006). 05 KSDS0080-DATA-00007-00074 PIC X(00074). ***************************************************************** * This program was created with the SYSMASK1.TXT file as input. * * The SYSMASK1 provides for the sequential reading of the input * * file and the sequential writing of the output file. * * * * If the output file is indexed then the input file must be in * * sequence by the field that will be used to provide the key * * for the output file. This is a sequential load process. * * * * If the key field is not in sequence then refer to SYSMASK2 * * to provide for a random add or update of the indexed file. * * * * This program mask will have the ASCII/EBCDIC table inserted * * for use by the /TRANSLATE function of SimoZAPS. * * * * For more information or questions please contact SimoTime * * Technologies. The version control number is 16.01.01 * * * * Our e-mail address is: helpdesk@simotime.com * * Also, visit our Web Site at http://www.simotime.com * ***************************************************************** WORKING-STORAGE SECTION. 01 SIM-TITLE. 05 T1 pic X(11) value '* KSLOADC1 '. 05 T2 pic X(34) value 'Load KSDS0080 from QSAM0080 '. 05 T3 pic X(10) value ' v16.01.01'. 05 T4 pic X(24) value ' helpdesk@simotime.com'. 01 SIM-COPYRIGHT. 05 C1 pic X(11) value '* KSLOADC1 '. 05 C2 pic X(32) value 'This Data File Convert Member wa'. 05 C3 pic X(32) value 's generated by SimoTime Technolo'. 05 C4 pic X(04) value 'gies'. 01 QSAM0080-STATUS. 05 QSAM0080-STATUS-L pic X. 05 QSAM0080-STATUS-R pic X. 01 QSAM0080-EOF pic X value 'N'. 01 QSAM0080-OPEN-FLAG pic X value 'C'. 01 KSDS0080-STATUS. 05 KSDS0080-STATUS-L pic X. 05 KSDS0080-STATUS-R pic X. 01 KSDS0080-EOF pic X value 'N'. 01 KSDS0080-OPEN-FLAG pic X value 'C'. 01 QSAM0080-LRECL pic 9(5) value 00080. 01 KSDS0080-LRECL pic 9(5) value 00080. 01 QSAM0080-LRECL-MAX pic 9(5) value 00080. 01 KSDS0080-LRECL-MAX pic 9(5) value 00080. ***************************************************************** * The following buffers are used to create a four-byte status * * code that may be displayed. * ***************************************************************** 01 IO-STATUS. 05 IO-STAT1 pic X. 05 IO-STAT2 pic X. 01 IO-STATUS-04. 05 IO-STATUS-0401 pic 9 value 0. 05 IO-STATUS-0403 pic 999 value 0. 01 TWO-BYTES-BINARY pic 9(4) BINARY. 01 TWO-BYTES-ALPHA redefines TWO-BYTES-BINARY. 05 TWO-BYTES-LEFT pic X. 05 TWO-BYTES-RIGHT pic X. ***************************************************************** * Message Buffer used by the Z-DISPLAY-MESSAGE-TEXT routine. * ***************************************************************** 01 MESSAGE-BUFFER. 05 MESSAGE-HEADER pic X(011) value '* KSLOADC1 '. 05 MESSAGE-TEXT. 10 MESSAGE-TEXT-1 pic X(068) value SPACES. 10 MESSAGE-TEXT-2 pic X(188) value SPACES. 01 MSG-LSB pic 9(5) value 267. ***************************************************************** 01 PROGRAM-NAME pic X(8) value 'KSLOADC1'. 01 INFO-STATEMENT. 05 INFO-SHORT. 10 INFO-ID pic X(8) value 'Starting'. 10 filler pic X(2) value ', '. 10 filler pic X(34) value 'Load KSDS0080 from QSAM0080 '. 05 filler pic X(24) value ' http://www.SimoTime.com'. 01 APPL-RESULT pic S9(9) comp. 88 APPL-AOK value 0. 88 APPL-EOF value 16. 01 WRITE-FLAG pic X value 'Y'. 01 QSAM0080-TOTAL. 05 QSAM0080-RDR pic 9(9) value 0. 05 filler pic X(3) value ' - '. 05 filler pic X(23) value 'Line count for QSAM0080'. 01 KSDS0080-TOTAL. 05 KSDS0080-ADD pic 9(9) value 0. 05 filler pic X(3) value ' - '. 05 filler pic X(23) value 'Line count for KSDS0080'. ***************************************************************** PROCEDURE DIVISION. move all '*' to MESSAGE-TEXT-1 perform Z-DISPLAY-MESSAGE-TEXT move INFO-STATEMENT to MESSAGE-TEXT-1 perform Z-DISPLAY-MESSAGE-TEXT move all '*' to MESSAGE-TEXT-1 perform Z-DISPLAY-MESSAGE-TEXT perform Z-POST-COPYRIGHT perform QSAM0080-OPEN perform KSDS0080-OPEN * USRSOJ Processing not specified... perform until QSAM0080-STATUS not = '00' perform QSAM0080-READ if QSAM0080-STATUS = '00' add 1 to QSAM0080-RDR perform BUILD-OUTPUT-RECORD if WRITE-FLAG = 'Y' perform KSDS0080-WRITE if KSDS0080-STATUS = '00' add 1 to KSDS0080-ADD end-if end-if end-if end-perform * USREOJ Processing not specified... move QSAM0080-TOTAL to MESSAGE-TEXT perform Z-DISPLAY-MESSAGE-TEXT move KSDS0080-TOTAL to MESSAGE-TEXT perform Z-DISPLAY-MESSAGE-TEXT if APPL-EOF move 'Complete' to INFO-ID else move 'ABENDING' to INFO-ID end-if move INFO-STATEMENT to MESSAGE-TEXT(1:79) perform Z-DISPLAY-MESSAGE-TEXT perform KSDS0080-CLOSE perform QSAM0080-CLOSE GOBACK. ***************************************************************** BUILD-OUTPUT-RECORD. * TransCOPY... move QSAM0080-REC(00001:00080) to KSDS0080-REC(00001:00080) exit. ***************************************************************** * I/O Routines for the INPUT File... * ***************************************************************** QSAM0080-CLOSE. add 8 to ZERO giving APPL-RESULT. close QSAM0080-FILE if QSAM0080-STATUS = '00' subtract APPL-RESULT from APPL-RESULT else add 12 to ZERO giving APPL-RESULT end-if if APPL-AOK CONTINUE else move 'CLOSE Failure with QSAM0080' to MESSAGE-TEXT perform Z-DISPLAY-MESSAGE-TEXT move QSAM0080-STATUS to IO-STATUS perform Z-DISPLAY-IO-STATUS perform Z-ABEND-PROGRAM end-if exit. *---------------------------------------------------------------* QSAM0080-READ. read QSAM0080-FILE if QSAM0080-STATUS = '00' subtract APPL-RESULT from APPL-RESULT else if QSAM0080-STATUS = '10' add 16 to ZERO giving APPL-RESULT else add 12 to ZERO giving APPL-RESULT end-if end-if if APPL-AOK CONTINUE else if APPL-EOF move 'Y' to QSAM0080-EOF else move 'READ Failure with QSAM0080' to MESSAGE-TEXT perform Z-DISPLAY-MESSAGE-TEXT move QSAM0080-STATUS to IO-STATUS perform Z-DISPLAY-IO-STATUS perform Z-ABEND-PROGRAM end-if end-if exit. *---------------------------------------------------------------* QSAM0080-OPEN. add 8 to ZERO giving APPL-RESULT. open input QSAM0080-FILE if QSAM0080-STATUS = '00' subtract APPL-RESULT from APPL-RESULT move 'O' to QSAM0080-OPEN-FLAG else add 12 to ZERO giving APPL-RESULT end-if if APPL-AOK CONTINUE else move 'OPEN Failure with QSAM0080' to MESSAGE-TEXT perform Z-DISPLAY-MESSAGE-TEXT move QSAM0080-STATUS to IO-STATUS perform Z-DISPLAY-IO-STATUS perform Z-ABEND-PROGRAM end-if exit. ***************************************************************** * I/O Routines for the OUTPUT File... * ***************************************************************** KSDS0080-WRITE. if KSDS0080-OPEN-FLAG = 'C' perform KSDS0080-OPEN end-if write KSDS0080-REC if KSDS0080-STATUS = '00' subtract APPL-RESULT from APPL-RESULT else if KSDS0080-STATUS = '10' add 16 to ZERO giving APPL-RESULT else add 12 to ZERO giving APPL-RESULT end-if end-if. if APPL-AOK CONTINUE else move 'WRITE Failure with KSDS0080' to MESSAGE-TEXT perform Z-DISPLAY-MESSAGE-TEXT move KSDS0080-STATUS to IO-STATUS perform Z-DISPLAY-IO-STATUS perform Z-ABEND-PROGRAM end-if exit. *---------------------------------------------------------------* KSDS0080-OPEN. add 8 to ZERO giving APPL-RESULT. open OUTPUT KSDS0080-FILE if KSDS0080-STATUS = '00' subtract APPL-RESULT from APPL-RESULT move 'O' to KSDS0080-OPEN-FLAG else add 12 to ZERO giving APPL-RESULT end-if if APPL-AOK CONTINUE else move 'OPEN Failure with KSDS0080' to MESSAGE-TEXT perform Z-DISPLAY-MESSAGE-TEXT move KSDS0080-STATUS to IO-STATUS perform Z-DISPLAY-IO-STATUS perform Z-ABEND-PROGRAM end-if exit. *---------------------------------------------------------------* KSDS0080-CLOSE. add 8 to ZERO giving APPL-RESULT. close KSDS0080-FILE if KSDS0080-STATUS = '00' subtract APPL-RESULT from APPL-RESULT move 'C' to KSDS0080-OPEN-FLAG else add 12 to ZERO giving APPL-RESULT end-if if APPL-AOK CONTINUE else move 'CLOSE Failure with KSDS0080' to MESSAGE-TEXT perform Z-DISPLAY-MESSAGE-TEXT move KSDS0080-STATUS to IO-STATUS perform Z-DISPLAY-IO-STATUS perform Z-ABEND-PROGRAM end-if exit. ***************************************************************** * The following Z-ROUTINES provide administrative functions * * for this program. * ***************************************************************** * ABEND the program, post a message to the console and issue * * a STOP RUN. * ***************************************************************** Z-ABEND-PROGRAM. if MESSAGE-TEXT not = SPACES perform Z-DISPLAY-MESSAGE-TEXT end-if move 'PROGRAM-IS-ABENDING...' to MESSAGE-TEXT perform Z-DISPLAY-MESSAGE-TEXT add 12 to ZERO giving RETURN-CODE STOP RUN. * exit. ***************************************************************** Z-CALCULATE-MESSAGE-LSB. add 267 to ZERO giving MSG-LSB perform until MSG-LSB < 80 or MESSAGE-BUFFER(MSG-LSB:1) not = SPACE if MESSAGE-BUFFER(MSG-LSB:1) = SPACE subtract 1 from MSG-LSB end-if end-perform exit. ***************************************************************** * Display CONSOLE messages... * ***************************************************************** Z-DISPLAY-MESSAGE-TEXT. perform Z-CALCULATE-MESSAGE-LSB display MESSAGE-BUFFER(1:MSG-LSB) move all SPACES to MESSAGE-TEXT exit. ***************************************************************** * Display the file status bytes. This routine will display as * * four digits. If the full two byte file status is numeric it * * will display as 00nn. If the 1st byte is a numeric nine (9) * * the second byte will be treated as a binary number and will * * display as 9nnn. * ***************************************************************** Z-DISPLAY-IO-STATUS. if IO-STATUS not NUMERIC or IO-STAT1 = '9' move IO-STAT1 to IO-STATUS-04(1:1) subtract TWO-BYTES-BINARY from TWO-BYTES-BINARY move IO-STAT2 to TWO-BYTES-RIGHT add TWO-BYTES-BINARY to ZERO giving IO-STATUS-0403 move 'File Status is: nnnn' to MESSAGE-TEXT move IO-STATUS-04 to MESSAGE-TEXT(17:4) perform Z-DISPLAY-MESSAGE-TEXT else move '0000' to IO-STATUS-04 move IO-STATUS to IO-STATUS-04(3:2) move 'File Status is: nnnn' to MESSAGE-TEXT move IO-STATUS-04 to MESSAGE-TEXT(17:4) perform Z-DISPLAY-MESSAGE-TEXT end-if exit. ***************************************************************** Z-POST-COPYRIGHT. display SIM-TITLE display SIM-COPYRIGHT exit. ***************************************************************** * This program was generated by SimoZAPS * * A product of SimoTime Technologies * * Our e-mail address is: helpdesk@simotime.com * * Also, visit our Web Site at http://www.simotime.com * * * * Generation Date: 2018-10-10 Generation Time: 20:28:26:38 * ***************************************************************** Hex-Dump of KSDSThe following is the source code (HX80KSC3.cbl) for the COBOL program that will do a Hex-Dump of selected records in the VSAM KSDS based on a list of user-defined keys. A sequential file (SYSUT3) contains the list of keys. IDENTIFICATION DIVISION. PROGRAM-ID. HX80KSC3. AUTHOR. SIMOTIME TECHNOLOGIES. ***************************************************************** * This program was generated by SimoZAPS * * A product of SimoTime Technologies * * Our e-mail address is: helpdesk@simotime.com * * Also, visit our Web Site at http://www.simotime.com * * * * Generation Date: 2018-10-11 Generation Time: 21:41:46:61 * * * * Record Record Key * * Function Name Organization Format Max-Min Pos-Len * * PRIMARY SYSUT1 INDEXED FIXED 00080 00001 * * 00006 * * SECONDARY SYSUT2 SEQUENTIAL FIXED 00080 * * * * * ***************************************************************** ENVIRONMENT DIVISION. INPUT-OUTPUT SECTION. FILE-CONTROL. SELECT SYSUT1-FILE ASSIGN TO SYSUT1 ORGANIZATION IS INDEXED ACCESS MODE IS SEQUENTIAL RECORD KEY IS SYSUT1-PKEY-00001-00006 FILE STATUS IS SYSUT1-STATUS. SELECT SYSUT2-FILE ASSIGN TO SYSUT2 ORGANIZATION IS SEQUENTIAL ACCESS MODE IS SEQUENTIAL FILE STATUS IS SYSUT2-STATUS. SELECT SYSUT3-FILE ASSIGN TO SYSUT3 ORGANIZATION IS SEQUENTIAL ACCESS MODE IS SEQUENTIAL FILE STATUS IS SYSUT3-STATUS. ***************************************************************** DATA DIVISION. FILE SECTION. FD SYSUT1-FILE DATA RECORD IS SYSUT1-REC . 01 SYSUT1-REC. 05 SYSUT1-PKEY-00001-00006 PIC X(00006). 05 SYSUT1-DATA-00007-00074 PIC X(00074). FD SYSUT2-FILE DATA RECORD IS SYSUT2-REC . 01 SYSUT2-REC. 05 SYSUT2-DATA-01 PIC X(00080). FD SYSUT3-FILE DATA RECORD IS SYSUT3-REC . 01 SYSUT3-REC. 05 SYSUT3-DATA-01 PIC X(80). ***************************************************************** * This program was created with the SYSHEXK3.TXT file as the * * template for the File I/O. It is intended for use with the * * Hex Dump facility. * * * * The SYSHEXK3 template provides for the random reading of an * * input file (SYSUT1, a VSAM, KSDS) and the sequential writing * * to an output file (SYSUT2, a sequential file) that contains * * Hexadecimal dump information. * * * * The records to be read from SYSUT1 are defined in a control * * file (SYSUT3) that contains a list of primary record keys. * * * * For more information or questions please contact SimoTime * * Technologies. The version control number is 18.06.01 * * * * Our e-mail address is: helpdesk@simotime.com * * Also, visit our Web Site at http://www.simotime.com * ***************************************************************** WORKING-STORAGE SECTION. 01 SIM-TITLE. 05 T1 pic X(11) value '* HX80KSC3 '. 05 T2 pic X(34) value 'Batch, HEX-Dump for KSDS 080/1-06 '. 05 T3 pic X(10) value ' v18.06.01'. 05 T4 pic X(24) value ' helpdesk@simotime.com'. 01 SIM-COPYRIGHT. 05 C1 pic X(11) value '* HX80KSC3 '. 05 C2 pic X(32) value 'This Data File HexDump Member wa'. 05 C3 pic X(32) value 's generated by SimoTime Technolo'. 05 C4 pic X(04) value 'gies'. 01 SIM-THANKS-01. 05 C1 pic X(11) value '* HX80KSC3 '. 05 C2 pic X(32) value 'This Data File HexDump Member wa'. 05 C3 pic X(32) value 's generated by SimoTime Technolo'. 05 C4 pic X(04) value 'gies'. 01 SIM-THANKS-02. 05 C1 pic X(11) value '* HX80KSC3 '. 05 C2 pic X(32) value 'Please send all comments or sugg'. 05 C3 pic X(32) value 'estions to the helpdesk@simotime'. 05 C4 pic X(04) value '.com'. 01 SYSUT1-STATUS. 05 SYSUT1-STATUS-L pic X. 05 SYSUT1-STATUS-R pic X. 01 SYSUT1-EOF pic X value 'N'. 01 SYSUT1-OPEN-FLAG pic X value 'C'. 01 SYSUT2-STATUS. 05 SYSUT2-STATUS-L pic X. 05 SYSUT2-STATUS-R pic X. 01 SYSUT2-EOF pic X value 'N'. 01 SYSUT2-OPEN-FLAG pic X value 'C'. 01 SYSUT3-STATUS. 05 SYSUT3-STATUS-L pic X. 05 SYSUT3-STATUS-R pic X. 01 SYSUT3-EOF pic X value 'N'. 01 SYSUT3-OPEN-FLAG pic X value 'C'. 01 SYSUT1-LRECL pic 9(5) value 00080. 01 SYSUT2-LRECL pic 9(5) value 00080. 01 SYSUT3-LRECL pic 9(5) value 00080. 01 KEY-LEN pic 9(5) value 00006. ***************************************************************** * The following buffers are used to create a four-byte status * * code that may be displayed. * ***************************************************************** 01 IO-STATUS. 05 IO-STAT1 pic X. 05 IO-STAT2 pic X. 01 IO-STATUS-04. 05 IO-STATUS-0401 pic 9 value 0. 05 IO-STATUS-0403 pic 999 value 0. 01 TWO-BYTES-BINARY pic 9(4) BINARY. 01 TWO-BYTES-ALPHA redefines TWO-BYTES-BINARY. 05 TWO-BYTES-LEFT pic X. 05 TWO-BYTES-RIGHT pic X. ***************************************************************** * Message Buffer used by the Z-DISPLAY-TO-SYSOUT routine. * ***************************************************************** 01 MESSAGE-BUFFER. 05 MESSAGE-HEADER pic X(11) value '* HX80KSC3 '. 05 MESSAGE-TEXT. 10 MESSAGE-TEXT-1 pic X(68) value SPACES. 10 MESSAGE-TEXT-2 pic X(188) value SPACES. 01 MB-CTR pic 9(3) value 0. 01 MB-LOB pic 9(3) value 267. 01 MB-LSB pic 9(3) value 267. ***************************************************************** 01 PROGRAM-NAME pic X(8) value 'HX80KSC3'. 01 GROUP-DELIMITER pic X value 'Y'. 01 INFO-STATEMENT. 05 INFO-SHORT. 10 INFO-ID pic X(8) value 'Starting'. 10 filler pic X(2) value ', '. 10 filler pic X(34) value 'Batch, HEX-Dump for KSDS 080/1-06 '. 05 filler pic X(24) value ' http://www.SimoTime.com'. 01 APPL-RESULT pic S9(9) comp. 88 APPL-AOK value 0. 88 APPL-EOF value 16. 01 PT-1 pic 9(5) value 0. 01 PT-2 pic 9(5) value 0. 01 WORK-05 pic X(5). 01 BN-2-GROUP. 05 BN-2-VALUE pic 9(3) comp value 0. 01 SEQ-GROUP pic 9(4) value 3124. 01 SEQ-TABLE redefines SEQ-GROUP. 05 SEQ-VALUE pic 9 occurs 4 times. 01 SEQ-IX pic 9 value 0. 01 DUMP-FLAGS. 05 DUMP-ASC pic X value 'Y'. 05 DUMP-EBC pic X value 'Y'. 05 DUMP-HEX pic X value 'Y'. 05 DUMP-RPI pic X value 'Y'. 01 RPI-10. 05 RPI-ALPHA pic X(5) value '....:'. 05 RPI-VALUE pic 9(5) value 10. 01 LOOP-REDO pic 9(5) value 0. 01 SYSUT1-TOTAL. 05 SYSUT1-RDR pic 9(9) value 0. 05 filler pic X(3) value ' - '. 05 filler pic X(23) value 'Line count for SYSUT1 '. 01 SYSUT2-TOTAL. 05 SYSUT2-ADD pic 9(9) value 0. 05 filler pic X(3) value ' - '. 05 filler pic X(23) value 'Line count for SYSUT2 '. 01 SYSUT3-TOTAL. 05 SYSUT3-RDR pic 9(9) value 0. 05 filler pic X(3) value ' - '. 05 filler pic X(25) value 'Record count for SYSUT3 '. COPY HEXTAB02. ***************************************************************** PROCEDURE DIVISION. perform JOB-STARTING perform until SYSUT3-STATUS not = '00' perform SYSUT3-READ if SYSUT3-STATUS = '00' if SYSUT3-DATA-01(1:11) = '/USERKEY ' move SYSUT3-DATA-01(12:KEY-LEN) to SYSUT1-PKEY-00001-00006 perform SYSUT1-READ if SYSUT1-STATUS = '00' add 1 to SYSUT1-RDR move SYSUT3-DATA-01(1:60) to SYSUT2-REC(1:60) perform SYSUT2-WRITE perform ACTION-DUMP-REQUEST else move all '.' to SYSUT2-REC perform SYSUT2-WRITE move SYSUT3-DATA-01(1:60) to SYSUT2-REC(1:60) inspect SYSUT2-REC replacing first ' ' by ', Record not found' perform SYSUT2-WRITE end-if else move all '.' to SYSUT2-REC perform SYSUT2-WRITE if SYSUT3-DATA-01(1:1) not = '*' move SYSUT3-DATA-01(1:60) to SYSUT2-REC(1:60) inspect SYSUT2-REC replacing first ' ' by ', Invalid /request' perform SYSUT2-WRITE end-if end-if end-if end-perform perform JOB-FINISHED GOBACK. ***************************************************************** ACTION-DUMP-REQUEST. compute LOOP-REDO = (SYSUT2-LRECL / 10) move all '.' to SYSUT2-REC if DUMP-RPI = 'Y' add 1 to ZERO giving PT-1 add 10 to ZERO giving RPI-VALUE perform LOOP-REDO times move RPI-10 to SYSUT2-REC(PT-1:10) if SYSUT2-REC(PT-1 + 5:3) = '000' move '...' to SYSUT2-REC(PT-1 + 5:3) else if SYSUT2-REC(PT-1 + 5:2) = '00' move '..' to SYSUT2-REC(PT-1 + 5:2) else if SYSUT2-REC(PT-1 + 5:1) = '0' move '.' to SYSUT2-REC(PT-1 + 5:1) end-if end-if end-if add 10 to RPI-VALUE add 10 to PT-1 end-perform perform SYSUT2-WRITE end-if add 1 to ZERO giving SEQ-IX add SEQ-VALUE(SEQ-IX) to ZERO giving PT-2 perform 4 times add 1 to ZERO giving PT-1 add SEQ-VALUE(SEQ-IX) to ZERO giving PT-2 if PT-2 = 1 and DUMP-HEX = 'Y' or PT-2 = 2 and DUMP-HEX = 'Y' or PT-2 = 3 and DUMP-EBC = 'Y' or PT-2 = 4 and DUMP-ASC = 'Y' perform SYSUT2-LRECL times move SYSUT1-REC(PT-1:1) to BN-2-GROUP(2:1) move TAB-X1(BN-2-VALUE + 1) to WORK-05 move WORK-05(PT-2:1) to SYSUT2-REC(PT-1:1) add 1 to PT-1 end-perform perform SYSUT2-WRITE end-if add 1 to SEQ-IX end-perform if SYSUT2-STATUS = '00' add 1 to SYSUT2-ADD end-if exit. ***************************************************************** JOB-FINISHED. if GROUP-DELIMITER = 'Y' move SPACES to SYSUT2-REC perform SYSUT2-WRITE move all '*' to SYSUT2-REC perform SYSUT2-WRITE end-if move 'Conclude' to INFO-ID move INFO-SHORT to SYSUT2-REC perform SYSUT2-WRITE move 'Finished' to INFO-ID move SYSUT1-TOTAL to SYSUT2-REC perform SYSUT2-WRITE move SYSUT2-TOTAL to SYSUT2-rec perform SYSUT2-WRITE perform Z-THANK-YOU. perform SYSUT3-CLOSE perform SYSUT2-CLOSE perform SYSUT1-CLOSE exit. ***************************************************************** JOB-STARTING. perform Z-POST-COPYRIGHT perform SYSUT1-OPEN perform SYSUT2-OPEN perform SYSUT3-OPEN move all '*' to SYSUT2-REC perform SYSUT2-WRITE move SIM-TITLE to SYSUT2-REC perform SYSUT2-WRITE move SIM-COPYRIGHT to SYSUT2-REC perform SYSUT2-WRITE move all '*' to SYSUT2-REC perform SYSUT2-WRITE move INFO-STATEMENT to SYSUT2-REC perform SYSUT2-WRITE exit. ***************************************************************** * I/O Routines for the INPUT File... * ***************************************************************** SYSUT1-CLOSE. add 8 to ZERO giving APPL-RESULT. close SYSUT1-FILE if SYSUT1-STATUS = '00' subtract APPL-RESULT from APPL-RESULT else add 12 to ZERO giving APPL-RESULT end-if if APPL-AOK CONTINUE else move 'CLOSE Failure with SYSUT1 ' to MESSAGE-TEXT perform Z-DISPLAY-TO-SYSOUT move SYSUT1-STATUS to IO-STATUS perform Z-DISPLAY-IO-STATUS perform Z-ABEND-PROGRAM end-if exit. *---------------------------------------------------------------* SYSUT1-READ. read SYSUT1-FILE if SYSUT1-STATUS = '00' subtract APPL-RESULT from APPL-RESULT else if SYSUT1-STATUS = '10' add 16 to ZERO giving APPL-RESULT else add 12 to ZERO giving APPL-RESULT end-if end-if if APPL-AOK CONTINUE else if APPL-EOF move 'Y' to SYSUT1-EOF else move 'READ Failure with SYSUT1 ' to MESSAGE-TEXT perform Z-DISPLAY-TO-SYSOUT move SYSUT1-STATUS to IO-STATUS perform Z-DISPLAY-IO-STATUS * perform Z-ABEND-PROGRAM end-if end-if exit. *---------------------------------------------------------------* SYSUT1-OPEN. add 8 to ZERO giving APPL-RESULT. open input SYSUT1-FILE if SYSUT1-STATUS = '00' subtract APPL-RESULT from APPL-RESULT move 'O' to SYSUT1-OPEN-FLAG else add 12 to ZERO giving APPL-RESULT end-if if APPL-AOK CONTINUE else move 'OPEN Failure with SYSUT1 ' to MESSAGE-TEXT perform Z-DISPLAY-TO-CONSOLE perform Z-DISPLAY-TO-SYSOUT move SYSUT1-STATUS to IO-STATUS perform Z-DISPLAY-IO-STATUS perform Z-ABEND-PROGRAM end-if exit. ***************************************************************** * I/O Routines for the OUTPUT File... * ***************************************************************** SYSUT2-WRITE. if SYSUT2-OPEN-FLAG = 'C' perform SYSUT2-OPEN end-if write SYSUT2-REC if SYSUT2-STATUS = '00' subtract APPL-RESULT from APPL-RESULT else if SYSUT2-STATUS = '10' add 16 to ZERO giving APPL-RESULT else add 12 to ZERO giving APPL-RESULT end-if end-if. if APPL-AOK CONTINUE else move 'WRITE Failure with SYSUT2 ' to MESSAGE-TEXT perform Z-DISPLAY-TO-SYSOUT move SYSUT2-STATUS to IO-STATUS perform Z-DISPLAY-IO-STATUS perform Z-ABEND-PROGRAM end-if exit. *---------------------------------------------------------------* SYSUT2-OPEN. add 8 to ZERO giving APPL-RESULT. open OUTPUT SYSUT2-FILE if SYSUT2-STATUS = '00' subtract APPL-RESULT from APPL-RESULT move 'O' to SYSUT2-OPEN-FLAG else add 12 to ZERO giving APPL-RESULT end-if if APPL-AOK CONTINUE else move 'OPEN Failure with SYSUT2 ' to MESSAGE-TEXT perform Z-DISPLAY-TO-CONSOLE perform Z-DISPLAY-TO-SYSOUT move SYSUT2-STATUS to IO-STATUS perform Z-DISPLAY-IO-STATUS perform Z-ABEND-PROGRAM end-if exit. *---------------------------------------------------------------* SYSUT2-CLOSE. add 8 to ZERO giving APPL-RESULT. close SYSUT2-FILE if SYSUT2-STATUS = '00' subtract APPL-RESULT from APPL-RESULT move 'C' to SYSUT2-OPEN-FLAG else add 12 to ZERO giving APPL-RESULT end-if if APPL-AOK CONTINUE else move 'CLOSE Failure with SYSUT2 ' to MESSAGE-TEXT perform Z-DISPLAY-TO-SYSOUT move SYSUT2-STATUS to IO-STATUS perform Z-DISPLAY-IO-STATUS perform Z-ABEND-PROGRAM end-if exit. ***************************************************************** * I/O Routines for the Control or Parameter File... * ***************************************************************** SYSUT3-READ. read SYSUT3-FILE if SYSUT3-STATUS = '00' subtract APPL-RESULT from APPL-RESULT add 1 to SYSUT3-RDR else if SYSUT3-STATUS = '10' add 16 to ZERO giving APPL-RESULT else add 12 to ZERO giving APPL-RESULT end-if end-if. if APPL-AOK CONTINUE else if APPL-EOF move 'Y' to SYSUT3-EOF else move 'READ Failure with SYSUT3 ' to MESSAGE-TEXT perform Z-DISPLAY-TO-SYSOUT move SYSUT3-STATUS to IO-STATUS perform Z-DISPLAY-IO-STATUS perform Z-ABEND-PROGRAM end-if end-if exit. *---------------------------------------------------------------* SYSUT3-OPEN. add 8 to ZERO giving APPL-RESULT. open input SYSUT3-FILE if SYSUT3-STATUS = '00' subtract APPL-RESULT from APPL-RESULT move 'O' to SYSUT3-OPEN-FLAG else add 12 to ZERO giving APPL-RESULT end-if if APPL-AOK CONTINUE else move 'OPEN Failure with SYSUT3 ' to MESSAGE-TEXT perform Z-DISPLAY-TO-CONSOLE perform Z-DISPLAY-TO-SYSOUT move SYSUT3-STATUS to IO-STATUS perform Z-DISPLAY-IO-STATUS end-if exit. *---------------------------------------------------------------* SYSUT3-CLOSE. add 8 to ZERO giving APPL-RESULT. close SYSUT3-FILE if SYSUT3-STATUS = '00' subtract APPL-RESULT from APPL-RESULT move 'C' to SYSUT3-OPEN-FLAG else add 12 to ZERO giving APPL-RESULT end-if if APPL-AOK CONTINUE else move 'CLOSE Failure with SYSUT3 ' to MESSAGE-TEXT perform Z-DISPLAY-TO-SYSOUT move SYSUT3-STATUS to IO-STATUS perform Z-DISPLAY-IO-STATUS perform Z-ABEND-PROGRAM end-if exit. ***************************************************************** * The following Z-ROUTINES provide administrative functions * * for this program. * ***************************************************************** * ABEND the program, post a message to the console and issue * * a STOP RUN. * ***************************************************************** Z-ABEND-PROGRAM. if MESSAGE-TEXT not = SPACES perform Z-DISPLAY-TO-SYSOUT end-if move 'PROGRAM-IS-ABENDING...' to MESSAGE-TEXT perform Z-DISPLAY-TO-SYSOUT add 12 to ZERO giving RETURN-CODE STOP RUN. * exit. ***************************************************************** * Display CONSOLE messages... * ***************************************************************** Z-DISPLAY-TO-SYSOUT. perform Z-DISPLAY-MESSAGE-SIZE display MESSAGE-BUFFER(1:MB-LSB) move all SPACES to MESSAGE-TEXT exit. *---------------------------------------------------------------* Z-DISPLAY-TO-CONSOLE. perform Z-DISPLAY-MESSAGE-SIZE display MESSAGE-BUFFER(1:MB-LSB) upon console exit. *---------------------------------------------------------------* Z-DISPLAY-MESSAGE-SIZE. if MESSAGE-TEXT-2 = SPACES add 79 to ZERO giving MB-LSB else add MB-LOB to ZERO giving MB-LSB end-if perform until MB-LSB < 2 or MESSAGE-BUFFER(MB-LSB:1) not = SPACE if MESSAGE-BUFFER(MB-LSB:1) = SPACE subtract 1 from MB-LSB end-if end-perform subtract MB-LSB from MB-LOB giving MB-CTR exit. ***************************************************************** * Display the file status bytes. This routine will display as * * four digits. If the full two byte file status is numeric it * * will display as 00nn. If the 1st byte is a numeric nine (9) * * the second byte will be treated as a binary number and will * * display as 9nnn. * ***************************************************************** Z-DISPLAY-IO-STATUS. if IO-STATUS not NUMERIC or IO-STAT1 = '9' move IO-STAT1 to IO-STATUS-04(1:1) subtract TWO-BYTES-BINARY from TWO-BYTES-BINARY move IO-STAT2 to TWO-BYTES-RIGHT add TWO-BYTES-BINARY to ZERO giving IO-STATUS-0403 move 'File Status is: nnnn' to MESSAGE-TEXT move IO-STATUS-04 to MESSAGE-TEXT(17:4) perform Z-DISPLAY-TO-SYSOUT else move '0000' to IO-STATUS-04 move IO-STATUS to IO-STATUS-04(3:2) move 'File Status is: nnnn' to MESSAGE-TEXT move IO-STATUS-04 to MESSAGE-TEXT(17:4) perform Z-DISPLAY-TO-SYSOUT end-if exit. ***************************************************************** Z-POST-COPYRIGHT. display SIM-TITLE display SIM-COPYRIGHT exit. ***************************************************************** Z-THANK-YOU. move SIM-THANKS-01 to MESSAGE-BUFFER perform Z-DISPLAY-TO-SYSOUT move SIM-THANKS-02 to MESSAGE-BUFFER perform Z-DISPLAY-TO-SYSOUT exit. ***************************************************************** * This program was generated by SimoZAPS * * A product of SimoTime Technologies * * Our e-mail address is: helpdesk@simotime.com * * Also, visit our Web Site at http://www.simotime.com * * * * Generation Date: 2018-10-11 Generation Time: 21:41:46:64 * ***************************************************************** SummaryThis document describes a Mainframe Job (or JCL Member) that will create a QSAM file and a VSAM KSDS with 80-byte records. The last job step will do a Hex-Dump of selected records in the VSAM KSDS based on a list of user-defined keys. The purpose of this document is to assist as a tutorial for new programmers or as a quick reference for experienced programmers. In the world of programming there are many ways to solve a problem. This documentation and software were developed and tested on systems that are configured for a SIMOTIME environment based on the hardware, operating systems, user requirements and security requirements. Therefore, adjustments may be needed to execute the jobs and programs when transferred to a system of a different architecture or configuration. SIMOTIME Services has experience in moving or sharing data or application processing across a variety of systems. For additional information about SIMOTIME Services or Technologies please contact us using the information in the Contact or Feedback section of this document.
Permission to use, copy, modify and distribute this software, documentation or training material for any purpose requires a fee to be paid to SimoTime Technologies. Once the fee is received by SimoTime the latest version of the software, documentation or training material will be delivered and a license will be granted for use within an enterprise, provided the SimoTime copyright notice appear on all copies of the software. The SimoTime name or Logo may not be used in any advertising or publicity pertaining to the use of the software without the written permission of SimoTime Technologies. SimoTime Technologies makes no warranty or representations about the suitability of the software, documentation or learning material for any purpose. It is provided "AS IS" without any expressed or implied warranty, including the implied warranties of merchantability, fitness for a particular purpose and non-infringement. SimoTime Technologies shall not be liable for any direct, indirect, special or consequential damages resulting from the loss of use, data or projects, whether in an action of contract or tort, arising out of or in connection with the use or performance of this software, documentation or training material. Downloads and LinksThis section includes links to documents with additional information that are beyond the scope and purpose of this document. The first group of documents may be available from a local system or via an internet connection, the second group of documents will require an internet connection. Note: A SimoTime License is required for the items to be made available on a local system or server. Current Server or Internet AccessThe following links may be to the current server or to the Internet. Note: The latest versions of the SimoTime Documents and Program Suites are available on the Internet and may be accessed using the icon. If a user has a SimoTime Enterprise License the Documents and Program Suites may be available on a local server and accessed using the icon. Explore how to create a Suite of Test Files with 80-byte Records. This document describes three job scripts that will create a sequential file and a VSAM KSDS. The last step in each of the jobs will show how to present records from the KSDS in a Hex-Dump format. The jobs are scripted using Mainframe JCL Members, Windows CMD Files and Linux/UNIX Script Files. Explore the JCL Connection for more examples of JCL functionality with programming techniques and sample code. Explore the COBOL Connection for more examples of COBOL programming techniques and sample code. Explore An Enterprise System Model that describes and demonstrates how Applications that were running on a Mainframe System and non-relational data that was located on the Mainframe System were copied and deployed in a Microsoft Windows environment with Micro Focus Enterprise Server. Explore The ASCII and EBCDIC Translation Tables. These tables are provided for individuals that need to better understand the bit structures and differences of the encoding formats. Explore The File Status Return Codes that are used to interpret the results of accessing VSAM data sets and/or QSAM files. Internet Access RequiredThe following links will require an internet connect. A good place to start is The SimoTime Home Page for access to white papers, program examples and product information. This link requires an Internet Connection Explore The Micro Focus Web Site for more information about products (including Micro Focus COBOL) and services available from Micro Focus. This link requires an Internet Connection. Glossary of TermsExplore the Glossary of Terms for a list of terms and definitions used in this suite of documents and white papers. Contact or FeedbackThis document was created and is maintained by SimoTime Technologies. If you have any questions, suggestions, comments or feedback please use the following contact information.
We appreciate hearing from you. Company OverviewSimoTime Technologies was founded in 1987 and is a privately owned company. We specialize in the creation and deployment of business applications using new or existing technologies and services. We have a team of individuals that understand the broad range of technologies being used in today's environments. Our customers include small businesses using Internet technologies to corporations using very large mainframe systems. Quite often, to reach larger markets or provide a higher level of service to existing customers it requires the newer Internet technologies to work in a complementary manner with existing corporate mainframe systems. We specialize in preparing applications and the associated data that are currently residing on a single platform to be distributed across a variety of platforms. Preparing the application programs will require the transfer of source members that will be compiled and deployed on the target platform. The data will need to be transferred between the systems and may need to be converted and validated at various stages within the process. SimoTime has the technology, services and experience to assist in the application and data management tasks involved with doing business in a multi-system environment. Whether you want to use the Internet to expand into new market segments or as a delivery vehicle for existing business functions simply give us a call or check the web site at http://www.simotime.com
|