IBM Infoprint XT for z/OS
Previous topic | Next topic | Contents | Contact z/OS | Library | PDF


JCL statements for loading Xerox resources and populating PDSs and PDSEs

IBM Infoprint XT for z/OS
GI11-9492-01

Infoprint XT provides sample JCL that you can modify to both load your Xerox resources, and update your AFP resources. Infoprint XT provides the sample JCL in the SAIOSAMP data set. Sample JCL for loading Xerox resources and copying AFP resources in a single job shows the sample JCL that Infoprint XT provides.

Sample JCL for loading Xerox resources and copying AFP resources in a single job

//AIOZRESL JOB Statement Parameters
//*********************************************************************
//*    Licensed Materials - Property of IBM                           *
//*    5655-O15                                                       *
//*    (C) Copyright IBM Corp. 2003, 2012                             *
//*                                                                   *
//*  USE THIS MULTI STEP JOB TO CONVERT XEROX RESOURCES FOR USE WITH  *
//*  INFOPRINT XT FOR Z/OS AND TO LOAD THE AFP RESOURCES INTO     @01C*
//*  PARTITIONED DATA SETS FOR USE BY OTHER PROGRAMS, SUCH AS PSF.    *
//*                                                                   *
//*  USE THIS JOB FOR LOADING A FEW SELECTED RESOURCES.               *
//*                                                                   *
//*  CAUTION: THIS IS NEITHER A JCL PROCEDURE NOR A COMPLETE          *
//*  JOB.  BEFORE USING THIS JOB STEP, YOU MUST MAKE THE              *
//*  FOLLOWING MODIFICATIONS:                                         *
//*                                                                   *
//*  1) CHANGE THE JOB STATEMENT TO MEET YOUR SYSTEM REQUIREMENTS.    *
//*                                                                   *
//*  2) CHANGE hlq ON THE XRSPDS DD TO IDENTIFY THE DATA SET          *
//*     CONTAINING THE RESOURCES.  THIS DATA SET IS USUALLY           *
//*     POPULATED BY THE AIOZRTAP UTILITY.                            *
//*                                                                   *
//*  3) MODIFY THE SYSIN DD PARAMETERS IN THE FIRST STEP.  SPECIFY    *
//*     THE XEROX RESOURCES TO BE LOADED.                             *
//*                                                                   *
//*  4) MODIFY THE SELECT DD PARAMETERS AS DESIRED.                   *
//*                                                                   *
//*  5) CHANGE hlq ON THE FONTLIB, OVLYLIB AND PSEGLIB DDS.           *
//*                                                                   *
//*  6) MODIFY THE SYSIN DD PARAMETERS IN THE SECOND STEP IF          *
//*     NECESSARY.                                                    *
//*                                                                   *
//*  7) ENSURE YOU RUN THIS JOB FROM A USER ID THAT IS IN THE         *
//*     AIOUSER GROUP.                                                *
//*                                                                   *
//* CHANGE ACTIVITY:                                                  *
//* $01=OA04543,H29Q100,030822,BLDDH  : Correct product name in   @01A*
//*                                     opening comments.         @01A*
//*********************************************************************
//*//*----------------------------------------------------------------*
//*  FIRST STEP - CONVERT THE XEROX RESOURCES                         *
//*-------------------------------------------------------------------*
//*
//AIOZR2AR EXEC  PGM=AIOZR2AR
//*
//**********************************************************************
//* SPECIFY PROCESSING OPTIONS.  EXAMPLES ARE PROVIDED (COMMENTED).
//**********************************************************************
//SYSIN    DD *
* Specify a paper size (optional).  Uncomment one of the following
* lines:
* -m letter
* -m A4
*
* Specify a resource group (optional)
* -g my_group
*
/*
//**********************************************************************
//* SELECT RESOURCES TO LOAD
//**********************************************************************
//SELECT   DD *
* The following selects a JDL called DFAULT:
   dfault.jdl
/*
//**********************************************************************
//* IDENTIFY THE PDS WITH THE XEROX RESOURCES
//**********************************************************************
//XRSPDS   DD DSN=hlq.XRSPDS,DISP=SHR
//*
//SYSPRINT DD SYSOUT=*
//*
//**********************************************************************
//* TO COLLECT SERVICE DATA:
//* 1) UNCOMMENT THE FOLLOWING DD
//* 2) CHANGE hlq TO AN APPROPRIATE HIGH LEVEL QUALIFIER FOR YOUR
//*    SYSTEM.
//* 3) CHANGE volser TO AN APPROPRIATE VOLUME NAME FOR YOUR SYSTEM.
//**********************************************************************
//*DEBUG    DD DSN=hlq.PDXT.AIOZR2AR.PAX,VOL=SER=volser,
//*         UNIT=SYSDA,DISP=(NEW,CATLG,CATLG),
//*         DCB=(LRECL=80,RECFM=FB),SPACE=(TRK,(225,75),RLSE)
//*
//*-------------------------------------------------------------------*
//*  SECOND STEP - LOAD THE RESOURCES INTO PARTITIONED DATA SETS      *
//*-------------------------------------------------------------------*
//*
//AIOZRPDS EXEC  PGM=AIOZRPDS
//*
//**********************************************************************
//* SPECIFY PROCESSING OPTIONS.  EXAMPLES ARE PROVIDED (COMMENTED).
//**********************************************************************
//SYSIN    DD *
* Specify a resource group (optional).
* -g my_group
*
/*
//**********************************************************************
//* IDENTIFY THE AFP RESOURCE PARTITIONED DATA SETS.
//**********************************************************************
//FONTLIB  DD DSN=hlq.FONTLIB,DISP=SHR
//OVLYLIB  DD DSN=hlq.OVLYLIB,DISP=SHR
//PSEGLIB  DD DSN=hlq.PSEGLIB,DISP=SHR
//*
//SYSPRINT DD SYSOUT=*
//*
//**********************************************************************
//* TO COLLECT SERVICE DATA:
//* 1) UNCOMMENT THE FOLLOWING DD
//* 2) CHANGE hlq TO AN APPROPRIATE HIGH LEVEL QUALIFIER FOR YOUR
//*    SYSTEM.
//* 3) CHANGE volser TO AN APPROPRIATE VOLUME NAME FOR YOUR SYSTEM.
//**********************************************************************
//*DEBUG    DD DSN=hlq.PDXT.AIOZRPDS.PAX,VOL=SER=volser,
//*         UNIT=SYSDA,DISP=(NEW,CATLG,CATLG),
//*         DCB=(LRECL=80,RECFM=FB),SPACE=(TRK,(225,75),RLSE)

These describe the various statements in Sample JCL for loading Xerox resources and copying AFP resources in a single job:

AIOZRESL JOB
This required JOB statement marks the beginning of the job. It tells the system how to process the job through the positional and keyword parameters of the statement. Replace AIOZRESL with the appropriate job name. Replace the <JOB STATEMENT PARAMETERS> portion of the sample statement with any parameters that your installation requires.

For descriptions of the statements for the first step of the AIOZRESL utility, and any changes that you should make, see JCL statements for loading Xerox resources. This reference applies to the AIOZR2AR utility program. For descriptions of the statements for the second step, which apply to the AIOZRPDS utility, see JCL statements for AFP resource population.

Note: The resource group or directory for the AIOZR2AR and AIOZRPDS utility programs must be the same. For AIOZR2AR, you use the -g option to specify the group, or the -o option to specify the directory, or you can use the default common resource group. For AIOZRPDS, the corresponding options are -g or -i.

Go to the previous page Go to the next page




Copyright IBM Corporation 1990, 2014