How can i execute 5th step without executing first 4 steps?
Answer Posted / satheesh
To Execute particular step, use IEBEDIT option.
Below Sample version
//STEP001 EXEC PGM=IEBEDIT
//SYSPRINT DD SYSOUT=*
//SYSUT1 DD DSN=MYDSN.JCL(MEMBER),DISP=SHR
//SYSUT2 DD SYSOUT=*
//SYSIN DD *
EDIT TYPE=INCLUDE,STEPNAME=(STEP5)
/*
//*
Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Is their any limit for data sets?
Why block size is multiple of lrecl in jcl?
What do you understand by the term notcat 2 – gs?
Is it possible to left uncode disp? If yes, how?
Which dd parameters are required?
How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?
Explain how can an in-stream dataset be terminated?
is there any way to execute more than one proc in the same exec statement at the same time..?
How do you run a COBOL batch program from a JCL? How do you run a COBOL/DB2 program?
Suppose there are 2 Input files Infile-1 and Infile-2. Both the Files contain Employee Records. You need to compare both the files and Write the Common Records in third file named Outfile. How can we do this using File-Aid?
What are the 4 fields in dd statement?
what happens in conversion stage in job processing?
I have a job called careerride and some steps in it as step1,step2. But I want to execute step2 before step1 ? How do I do that?
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
How is a type of file defined in the jcl that executes the cobol program?