How to Write the RESTART Logic Using COBOL?

Answers were Sorted based on User's Feedback



How to Write the RESTART Logic Using COBOL?..

Answer / sandeep

Using SPICE restart logic.

Is This Answer Correct ?    2 Yes 0 No

How to Write the RESTART Logic Using COBOL?..

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

How to Write the RESTART Logic Using COBOL?..

Answer / mahendra babu

it is a keyword parameter at job level which is used restart the job from a specific step as per the user requriment.
syntax: 1) restart = step name.
2)restart = jclstep.proc step.
ex:-//jobcard , restart= (s3).
//s1
//s2
//s3
//s4
at the above ex is used to restart the job from s3 using the restart parameter.

Is This Answer Correct ?    2 Yes 8 No

How to Write the RESTART Logic Using COBOL?..

Answer / nath.visu

I donot know

Is This Answer Correct ?    3 Yes 21 No

Post New Answer

More COBOL Interview Questions

where did you see the information regarding abend codes in jcl?

1 Answers   Hewitt,


What is the difference between Structured COBOL Programming and Object Oriented COBOL ?

1 Answers  


should I use Go back in the main program ? Yes we can use Go back in main program as well.

2 Answers   Xansa,


what are the steps to sort in a cobol program?

2 Answers   Patni,


If you were passing a table via linkage, which is preferable - a subscript or an index?

3 Answers   TCS,






what are the diferences b/w sub-script and index?

4 Answers  


Hi all, I have a following requirement to write the cobol program. I have to load the 129 variables from input sequential file which are in excel sheet to the cobol inernal table. and after loading into table i have to compare this data with the business file. here compare means controlling the data whether the format(numeric,alpha) is same in the business file and in the table??? i have the same data in input and business file. could anyone please give me any idea of the logic?// i have all the 129 different variables(129rows,1 column)is there .

4 Answers   IBM, Syntel, TCS,


i WANT ALL ERROR codes IN CICS and DB2

2 Answers  


What is the difference between Structured COBOL Programming and Object Oriented COBOL programming?

0 Answers   TryTechnicals Pvt Ltd,


how will u find out 3rd week's 2nd day using occurs ?

3 Answers   L&T,


What is a SSRANGE and NOSSRANGE?

0 Answers  


soc-7 is a bad data,invalid data. when ever we are moving the alphabets in the position of numeric then we got this abend. so my question is if o1 ws-data pic 9(1) value passing the alphabet some x. then we got soc-7 or not? i want clarification ?

7 Answers   CitiGroup, IBM,


Categories