Search found 2 matches

by syedwasim
Fri Dec 09, 2011 1:38 pm
Forum: JCL INTERVIEW QUESTIONS
Topic: How to run only 2 steps out of 100 steps???
Replies: 28
Views: 55221

Hi , Out of 100 steps if you want to run only 3 and 4 step ?? the best solution is use of COND paramater in step. //step3 exec pgm = xyz , Cond = (0,LE,Step2) --- --- //step4 exec pgm = abc , Cond = (0,lE,STEP2) Note : Cond parameter ;;if the condition is true it will bypass the step.and if the cond...
by syedwasim
Fri Dec 09, 2011 12:19 pm
Forum: JCL
Topic: JCL to get only selected records from a ds --- without key
Replies: 6
Views: 9074

bhargavi_ns, You can use the SUBSET operator of DFSORT's ICETOOL to do that: //S1 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //IN DD DSN=... input file //OUT DD DSN=... output file //TOOLIN DD * SUBSET FROM(IN) TO(OUT) KEEP INPUT RRN(7) RRN(11) RRN&#...