MVSFORUMS.com Forum Index MVSFORUMS.com
A Community of and for MVS Professionals
 
 FAQFAQ   SearchSearch   Quick Manuals   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

REXX requirement

 
Post new topic   Reply to topic   printer-friendly view    MVSFORUMS.com Forum Index -> TSO and ISPF
View previous topic :: View next topic  
Author Message
nex
Beginner


Joined: 22 May 2003
Posts: 8
Topics: 4

PostPosted: Tue Sep 23, 2003 7:13 am    Post subject: REXX requirement Reply with quote

I have a file named CARDFILE with 'n' records ( The value of n is not fixed , it may vary from 0 to 99 , at run time ). I want a REXX which will create 'n' seperate jobs, with each job having one record from cardfile as sysin, and will submit all those jobs. But all these created jobs should be seperate jobs , not several steps under one job.
Below given is example with 3 records in cardfile and 3 seperate jobs created for it.


Code:


CARDFILE:
NAME1
NAME2
NAME3

Code:

JOB1:
//MYTSOIDX JOB ...ACCOUNTING INFO....         
//*           
//RUNPGM   EXEC PGM=MYPGM
//INPUT    DD  DSN=TSOID.DATASET,DISP=SHR
//OUTPUT   DD  DSN=TSOID.SRCH,DISP=OLD
//SYSIN    DD *                                     
TVALUE 'NAME1'                                 
//*
   
JOB2:
//MYTSOIDX JOB ...ACCOUNTING INFO....         
//*           
//RUNPGM   EXEC PGM=MYPGM
//INPUT    DD  DSN=TSOID.DATASET,DISP=SHR
//OUTPUT   DD  DSN=TSOID.SRCH,DISP=OLD
//SYSIN    DD *                                     
TVALUE 'NAME2'                                 
//*

JOB3:
//MYTSOIDX JOB ...ACCOUNTING INFO....         
//*           
//RUNPGM   EXEC PGM=MYPGM
//INPUT    DD  DSN=TSOID.DATASET,DISP=SHR
//OUTPUT   DD  DSN=TSOID.SRCH,DISP=OLD
//SYSIN    DD *                                     
TVALUE 'NAME3'                                 
//*
Back to top
View user's profile Send private message
kolusu
Site Admin
Site Admin


Joined: 26 Nov 2002
Posts: 12375
Topics: 75
Location: San Jose

PostPosted: Tue Sep 23, 2003 8:01 am    Post subject: Reply with quote

nex,

I guess this is a follow up question for concurrent update question in JCL forum.If sort is an acceptable solution then the following JCL will give you the desired results.This job will create a job for each record in the input file and submit it to the intrdr.Since the last character in all the jobcards is the same , all the jobs will be execueting one after another.To Understand the job initially,change the SORTOUT to the following and See how the
jobs are created.

Code:

//SORTOUT   DD SYSOUT=*


Code:

//STEP0100  EXEC  PGM=SORT                                         
//SYSOUT    DD SYSOUT=*                                               
//SORTIN    DD *                                                     
NAME1                                                                 
NAME2                                                                 
NAME3                                                                 
//SORTOUT   DD SYSOUT=(*,INTRDR),RECFM=FB     
//SYSIN     DD *                                                     
 SORT FIELDS=COPY                                                     
 OUTFIL FILES=OUT,                                                   
 OUTREC=(C'//MYTSOIDX JOB ',X'7D',C'SUBMIT JOB',X'7D',C',CLASS=A,',/,
         C'//',13X,C'MSGCLASS=Y,MSGLEVEL=(1,1),',/,                   
         C'//',13X,C'NOTIFY=&SYSUID',/,                               
         C'//*',/,                                                   
         C'//RUNPGM   EXEC PGM=MYPGM',/,                             
         C'//INPUT    DD DSN=TSOID.DATASET,DISP=SHR',/,               
         C'//OUTPUT   DD DSN=TSOID.SRCH,DISP=OLD',/,                 
         C'//SYSIN    DD *',/,                                       
         C'TVALUE ',X'7D',1,5,X'7D',/,                               
         C'//*',80:X)                                                 


The output of this job will be

Code:

//MYTSOIDX JOB 'SUBMIT JOB',CLASS=A,                   
//             MSGCLASS=Y,MSGLEVEL=(1,1),             
//             NOTIFY=&SYSUID                         
//*                                                   
//RUNPGM   EXEC PGM=MYPGM                             
//INPUT    DD DSN=TSOID.DATASET,DISP=SHR               
//OUTPUT   DD DSN=TSOID.SRCH,DISP=OLD                 
//SYSIN    DD *                                       
TVALUE 'NAME1'                                         
//*                                                   
//MYTSOIDX JOB 'SUBMIT JOB',CLASS=A,                   
//             MSGCLASS=Y,MSGLEVEL=(1,1),             
//             NOTIFY=&SYSUID                         
//*                                                   
//RUNPGM   EXEC PGM=MYPGM                             
//INPUT    DD DSN=TSOID.DATASET,DISP=SHR               
//OUTPUT   DD DSN=TSOID.SRCH,DISP=OLD                 
//SYSIN    DD *                                       
TVALUE 'NAME2'                                         
//*                                                   
//MYTSOIDX JOB 'SUBMIT JOB',CLASS=A,                   
//             MSGCLASS=Y,MSGLEVEL=(1,1),             
//             NOTIFY=&SYSUID                         
//*                                                   
//RUNPGM   EXEC PGM=MYPGM                             
//INPUT    DD DSN=TSOID.DATASET,DISP=SHR               
//OUTPUT   DD DSN=TSOID.SRCH,DISP=OLD                 
//SYSIN    DD *                                       
TVALUE 'NAME3'                                         
//*                                                   


Hope this helps...

cheers

kolusu
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic   printer-friendly view    MVSFORUMS.com Forum Index -> TSO and ISPF All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


MVSFORUMS
Powered by phpBB © 2001, 2005 phpBB Group