IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Dynamically submit job multiple times


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Nainesh A Jadwani

New User


Joined: 15 Jan 2013
Posts: 6
Location: India

PostPosted: Mon Jan 28, 2013 3:08 pm
Reply with quote

Hi,


Below is my requirement...

1. Expand a composite account to obtain x number of sub-accounts, say 99 sub-accounts (I have the step for this)
2. For each of these sub-accounts, run a JCL that will...
    a. Generate an FSR report (steps for this are provided by a third-party)
    b. Convert this FSR report into PDF format (I have the step for this)
    c. FTP or NDM this report to a file server, with sub-account number added to file name to ensure it is not over-written (I have the step for this)
I need help with the text in red above.

So essentially, what I need to know is how do I submit a job (or maybe even a bunch of steps within a job) 'x' number of times where 'x' is a number that is derived from a previous step?


Thank you,
Nainesh A Jadwani
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Mon Jan 28, 2013 3:20 pm
Reply with quote

we really do not care about the content of <stage 2> jobs

the easiest way will be
for step 1 ==> generate a PS dataset with all the parameters needed to run the needed jobs

add a step 2 to
run a batch ISPF REXX script which
reading the PS dataset with the customizations to be done
and using ISPF file tailoring services
will build one or more jobs ( really indifferent from the script point of view )
and will submit them

search the forums for my file tailoring snippets
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Mon Jan 28, 2013 3:24 pm
Reply with quote

Use the internal reader to submit X jobs.
Be prepared for the complaints from your production support group.

It is not possible to cause JCL to loop -- JCL is not a programming language in the classic sense and does not have the control structures to allow you to do what you want inside one job.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts INCLUDE OMIT COND for Multiple values... DFSORT/ICETOOL 5
No new posts Replace Multiple Field values to Othe... DFSORT/ICETOOL 12
No new posts Multiple table unload using INZUTILB DB2 2
No new posts Grouping by multiple headers DFSORT/ICETOOL 7
No new posts Dynamically pass table name to a sele... DB2 2
Search our Forums:

Back to Top