Suppose there r 10 steps . Out fo which i want to execute
10th, 9th and 8th in reverse order without using IEBEDIT.
How can i do that..???
Answer Posted / om prakash yadav
i don't know exaclty but it is possible trough PRTY
parameter.
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
How can return codes be tested before execution of a job step?
What is multithreading in jcl?
What are steplib and joblib? What for they are used?
Describe the various parameters utilized in the creation of a gdg?
How jcl work to handle various input output file operations?
How jcl is used for testing batch programs?
in a jcl, a large volume dataset is loaded to a table using bmcload in step1 and an image copy of the loaded table is taken using bmccopy in step2. Step2 abends because the image copy dataset cannot hold the volume of the table. How can this be rectified?
what is the compile process of cobol program expalin with code
How do you overcome this limitation ?
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
What are the utility programs in jcl?
Name the parameters which can be used to limit the number of records written to a sysout dataset?
Give the syntax of job specifying jcl statement.
have in 100 records in a file i want to read first 3 records and skip next 3 records and agan i want to read 3 records and again i want to skip 3 records... run a loop from record one to 10 evaluate i/3 if comes even then skip else write to output file
//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*