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
What type of SDLC u followed? Why?
What rules are followed by the search verb.
Define static linking and dynamic linking.
what is difference bt COND, REGION & TIME parameters at JOB & EXEC. give an exp.
Why do we code s9 (4) comp. Inspite of knowing comp-3 will occupy less space?
1.Is it possible to move the data from 99.99 to 99v99? 2.What is the CICS-vsam Compilation process? 3.In My GDG 5 generation will be there GDG3 got an abend what will happen? 4.In my GDG first generation is +1 And I want to add the new generation what will happen previous generation? 5.How can you give the PIC clause below conditions A). s9 (reddy), B). s9 (5) occurs 5 times? 6.How override the proc from a particular step? and what is symbolic and override Procs?
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.
What are the different data types in cobol?
How do define dynamic array in cobol.
How many bytes S(8) comp field occupy and its maximum value?
Write down the divisions of cobol program?
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?
Which mode is used to operate the sequential file?
How to traceback if I am getting SOC7 or SOC4 abend? List down the steps
In which area will you utilize 88 level items in cobol?