![]() |
Internal Reader Submitting Jobs using IEBGENER |
| When technology complements business | Copyright © 1987-2012 SimoTime Enterprises All Rights Reserved |
| The SimoTime Home Page |
This suite of programs will describe how to submit a second job to the internal reader from within the currently running job. A small sequential file is created by the second JCL member.
The source code, data sets and documentation are provided in a single zipped file called INTRDR01.ZIP. This zipped file may be downloaded from the SimoTime Web site. In the Windows environment the file names have file extensions. If the JCL member is uploaded to a ZOS Mainframe from the Windows and Micro Focus environment the file extension is dropped.
This example contains two (2) JCL members. The first JCL member uses IEBGENER to copy a second job into the internal reader. The "COPY" or "REPRODUCE" function is standard for IEBGENER. What makes this use of IEBGENER unique is the definition of the INTRDR by SYSUT2.
When the second JCL member is executed it uses IEBGENER to create a sequential file.
Note: Depending on the system environment and if the primary and secondary jobs are the same class then the secondary job may not execute until the primary job completes.
The following mainframe JCL (INTRDRJ1.JCL) uses IEBGENER to submit a job to the Internal Reader. The IEBGENER utility is commonly used to copy one sequential data set to another. The file to be copied is SYSUT1 and the output file is SYSUT2. A JCL member of a partitioned data set (PDS) can be defined by SYSUT1. When SYSUT1 is a PDS Member that contains JCL statements and SYSUT2 is SYSOUT=(,INTRDR) the JCL member is copied to the internal reader (or submitted to the internal reader). The key to this technique is the definition used by SYSUT2. IEBGENER thinks it is doing a simple 80/80 Repro or making a copy of a file.
//INTRDRJ1 JOB SIMOTIME,CLASS=1,MSGCLASS=0,NOTIFY=CSIP1 //* ******************************************************************* //* This program is provided by: SimoTime Enterprises * //* (C) Copyright 1987-2012 All Rights Reserved * //* Web Site URL: http://www.simotime.com * //* e-mail: helpdesk@simotime.com * //* ******************************************************************* //* //* Text - Post the next JOB to the Internal Reader using IEBGENER. //* Author - SimoTime Enterprises //* Date - January 24, 1996 //* //* This job uses a function of IEBGENER and INTRDR to submit a job //* from this job to the Internal Reader. //* //* This set of programs will run on a mainframe under MVS or on a //* Personal Computer with Windows and Micro Focus Mainframe Express //* or ES/MTO. //* //* ******************************************************************* //* Step 1 of 1, Post the next JOB to the Internal Reader... //* //INTRDRS1 EXEC PGM=IEBGENER //* //* SYSUT1 references a PDS Member containing JCL Statements //* Sysut2 references SYSOUT that references the Internal Reader //* The result is a copy (or submit) of JCL to the Internal Reader //* :....1....:....2....:....3....:....4....:....5....:....6....:....7. //SYSUT1 DD DSN=SIMOTIME.PDS.JCL(INTRDRJ2), // DISP=SHR //SYSUT2 DD SYSOUT=(,INTRDR) //* //SYSPRINT DD SYSOUT=* //SYSIN DD DUMMY
The following mainframe JCL (INTRDRJ2.JCL) is used to copy records (from an instream string of records defined by SYSUT1) to an output file that is defined by SYSUT2. This is a common use of IEBGENER. In this suite of sample programs this JCL member is submitted to the Internal Reader from the Primary JCL member described in the preceding section of this document.
//INTRDRJ2 JOB SIMOTIME,CLASS=1,MSGCLASS=0,NOTIFY=CSIP1 //* ******************************************************************* //* This program is provided by: SimoTime Enterprises * //* (C) Copyright 1987-2012 All Rights Reserved * //* Web Site URL: http://www.simotime.com * //* e-mail: helpdesk@simotime.com * //* ******************************************************************* //* //* Text - Create a Sequential Data Set on disk using IEBGENER. //* Author - SimoTime Enterprises //* Date - January 24, 1996 //* //* The first job step (GETREADY) will delete any previously created //* file. The second job step (INTRDRS2) will create a new file. //* //* This set of programs will run on a mainframe under MVS or on a //* Personal Computer with Windows and Micro Focus Mainframe Express. //* //* ******************************************************************* //* Step 1 Delete any previously created file... //* //GETREADY EXEC PGM=IEFBR14 //SYSUT2 DD DSN=SIMOTIME.DATA.INTRDRD1,DISP=(MOD,DELETE,DELETE), // STORCLAS=MFI, // SPACE=(TRK,5), // DCB=(RECFM=FB,LRECL=80,BLKSIZE=800,DSORG=PS) //* //* ******************************************************************* //* Step 2 Create and populate a new QSAM file... //* //INTRDRS2 EXEC PGM=IEBGENER //SYSPRINT DD SYSOUT=* //SYSIN DD DUMMY //* //* SYSUT1 defines the instream records that will be copied to SYSUT2 //* :....1....:....2....:....3....:....4....:....5....:....6....:....7. //SYSUT1 DD * INTRDR Test Record 001 INTRDR Test Record 002 /* //SYSUT2 DD DSN=SIMOTIME.DATA.INTRDRD1, // DISP=(NEW,CATLG,DELETE), // STORCLAS=MFI, // SPACE=(TRK,5), // DCB=(RECFM=FB,LRECL=80,BLKSIZE=800,DSORG=PS) //
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 documents and the links to other documents are intended to provide a choice of alternatives.
Permission to use, copy, modify and distribute this software, documentation or training material for any purpose requires a fee to be paid to SimoTime Enterprises. 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 Enterprises.
SimoTime Enterprises 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 Enterprises 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.
This section includes links to documents with additional information that is beyond the scope and purpose of this document.
You may download this suite of sample programs at http://www.simotime.com/sim4dzip.htm#dzipintrdr01 .
Explore an Extended List of Software Technologies that are available for review and evaluation. The software technologies (or Z-Packs) provide individual programming examples, documentation and test data files in a single package. The Z-Packs are usually in zip format to reduce the amount of time to download.
A good place to start is The SimoTime Home Page for access to white papers, program examples and product information.
Note: You must be attached to the Internet to download a Z-Pack or view the list.
This document describes how to use a batch COBOL program to submit jobs to the Internal Reader (INTRDR).
Explore How to Submit a Batch Job from a CICS Application using a COBOL program and the Internal Reader (INTRDR).
Explore The File Status Return Codes to interpret the results of accessing VSAM data sets and QSAM files.
Check out The JCL Connection for more mainframe JCL examples.
Check out The SimoTime Glossary for a list of terms and definitions used in the documents provided by SimoTime.
This document was created and is maintained by SimoTime Enterprises.
If you have any questions, suggestions, comments or feedback please call or send an e-mail to: helpdesk@simotime.com
We appreciate hearing from you.
Founded in 1987, SimoTime Enterprises 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. This includes the smallest thin client using the Internet and the very large mainframe systems. There is more to making the Internet work for your company's business than just having a nice looking WEB site. It is about combining the latest technologies and existing technologies with practical business experience. It's about the business of doing business and looking good in the process. 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.
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
| Return-to-Top |
| Internal Reader - Submitting Jobs using IEBGENER |
| Copyright © 1987-2012 SimoTime Enterprises All Rights Reserved |
| When technology complements business |
| http://www.simotime.com |