IF we are calling a PROC from Jcl...This Proc have 3 steps
in it and we want to execute only the second step using the
JCL, How to do it??
Please give the answer ASAP:)
Answer Posted / gani.....
in job card give restart=jobstename.procstepname
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is the difference between run mode and addressing mode?
what are the types of abends that occur on job failure? And explain the possible causes of these
Is condition checking possible in jcl? If yes, how?
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
what is use of dcb parameter in dd statement?
Explain the function of //jcllib statement?
Does jcl support automatic restart?
whats the diff bw the evaluate also and and?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length ----TRY
What do you know about jcl?
What is the function of dd disp parameter?
What is the function of the dd mgmtclas keyword in sms datasets?
What is the function of a dd statement?
List the different jcl statements that are not permitted in the procedures?
I have a cobol db2 program(PGM A) where other program (PGM B) will call this program and passes some 50 fields data to PGM A. PGM A has some layout in which it receives the data from PGM B. And this layout has been copied in the linkage section pf PGM A. After getting the data, PGM A writes the data in a flat file in the same layout which it receives from PGM B. PGM B is a simple COBOL pgm. Please provide a JCL to run these programs.