How to Write the RESTART Logic Using COBOL?
Answer Posted / sudhakar mallela
i thing restart is using in jcl this is exec parameter,
if we have the 3 steps in jcl
//step1
//step2
//step3 in this case we run the jcl and got the abend at stop3,we don't want to run again step1 and step2,
directly we write like this
Restart = step3 bypass step1 to step2.
| Is This Answer Correct ? | 7 Yes | 12 No |
Post New Answer View All Answers
EXPLAIN MAIN FRAME TESTING PROCESS...HOW TO FIX THE MAINFRAME BUGS?
For rewrite, why is it mandatory that file needs to be opened?
what is difference between cobol and cobol/400
How to get the last record in vsam file in cluster? And how can you get the ksds file records into cobol program?
If you are current on the owner of a set, what is the difference between an obtain next and obtain first? Actually in which topic will we use dis???Plz explain it clearly
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.
System Testing for Mainframe Developers What is System Testing? integration testing ? what's the procedure ..
Which mode is used to operate the sequential file?
What are INPUT PROCEDURE and OUTPUT PROCEDURE?
What is the difference between PIC 9.99 and 9v99 in COBOL?
explain sorting techniques in cobol program?
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
how do you reference the esds vsam file formats from cobol programs
What are 77 levels used for?
Write the code implementing the perform … varying.