View previous topic :: View next topic |
Author |
Message |
prasanth_thavva Beginner

Joined: 14 May 2006 Posts: 40 Topics: 18
|
Posted: Thu Jan 10, 2008 11:57 pm Post subject: NEEDED PROC STEP EXECUTE TWICE... |
|
|
Hi,
I have proc which i need to run for twice for 2 of same parameters , is it possible.
Like ..
PROC1 EXEC
STEP1 -- Sorting.
i am calling this proc in JCL.
JCLSTEP EXEC PROC1/
wanna run the step1 twice for different parameters , is it possible plz confirm me. _________________ Thanks&Regards
Prasanth Thavva |
|
Back to top |
|
 |
vkphani Intermediate

Joined: 05 Sep 2003 Posts: 483 Topics: 48
|
Posted: Fri Jan 11, 2008 12:48 am Post subject: |
|
|
prasanth_thavva,
You can code like below in your JCL.
Code: | //JCLSTEP1 EXEC PROC1
//JCLSTEP2 EXEC PROC1 |
If you have some other steps other than STEP1 in the PROC1, you can make them non executable using COND parameter. |
|
Back to top |
|
 |
|
|