How can we execute only one step in a job

Answer Posted / kamal

hi ankur,

i am really oppose u r answer cond=only previous step
abnormally execution mens this step executed.otherwsie not
possible.
using iebedit utility is oneway.
another one is restart=stepname end of the step give null
stmts.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how you can direct the data to spool using SYSOUT option?

927


When space is allocated for an output dataset, what units can be used?

751


What is the function of //jcllib statement?

809


Mainframes gets a text file that contains the name of the file. Now using JCL i want to locate that file name in the mainframe system and perform further processing. Please tell how to proceed

1971


What is concatenating?

635






How jcl work to handle various input output file operations?

658


Is their any set of rules for dd? Explain.

664


what is the use of IEBGENER utility?

662


Is it possible to left uncode disp? If yes, how?

708


In sms datasets, what is the function of the dd mgmtclas keyword?

863


List in order the hierarchical levels of jcl?

670


//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 /*

911


how JCL works?

796


what is the use of JCL?

666


WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375

1039