What is an in line PERFORM? When would you use it? Anything
else to say about it?
Answer Posted / sreenath
perform until <cond>
<stmt>
<stmt>
end perform.
-the stmts which are between perform & end perform will be
executed till the specified cond is satisfied.
-there should be no periods between perform & end perform.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
input 1 input2 ouput1 output2 output 3 1 re 300 1 re 200 1 re 300 3 rc 500 1 re 200 2 rr 400 1 re 300 2 rr 400 1 rc 400 3 rc 500 1 rc 400 2 rr 700 2 rr 700 5 tt 900 5 tt 900 2 inputs r in flat file and output 1 is matched records,ouptput2 is unmatched of input1,output3 is unmatched of input2! how vl u get the output files using sequential order and to check with each and every records! let me know the procedure division ?
Difference between array and sub-script ?
I need to compare 3 variables(dates) and do some processing based on the earliest date. There could be more then 1 date record in any of the 3 fields. What is the best way to code this?
What is the problem of ordered sequential files access?
How to fetch 1000 error records from VSAM file(Eg: 1000000 records present) while getting SOC7 abend ?
how do you reference the variable block file formats from cobol programs
What is perform what is varying?
What are the various section in data division and briefly explain them.
Explain how you can characterize tables in cobol?
What is the difference between binary search and sequential search?
Explain the configuration section of a cobol program with examples of syntax.
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.
How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
Whats the difference between search & search ALL?