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
I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?
Name some of the examples of COBOl 11?
I have File 1 occurs 5 times with Employee-ID,Employee-Name,Employee-Dept (EEE and MECH). I have File 2 occurs 10 times with Employee-ID,Employee-Name,Employee-Dept (EEE,CIVIL,CHEMICAL and MECH). In FIle 1 and FIle 2 , for matching Employee-DEPT (Only MECH) , we need to move entire records from file1 to file 2. We should not use 2D array. Your help is needed here.
How to print 10 to 1 if the input have only 10 digit number?
Which is the default, TEST BEFORE or TEST AFTER for a PERFORM statement?
What is static and dynamic call in cobol?
How to get the last record in vsam file in cluster? And how can you get the ksds file records into cobol program?
For rewrite, why is it mandatory that file needs to be opened?
What is Pic 9v99 Indicates in COBOL?
Explain how you can characterize tables in cobol?
How do you get the data to code the BMS macro?
Explain how to differentiate call by context by comparing it to other calls?
What is the problem of ordered sequential files access?
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
What are the different types of condition in cobol and write their forms.