In an EVALUATE statement, can I give a complex condition on
a when clause?
Answer Posted / vampire
yes u can
ex
evaluate condition
when identifier=conditon imperative statements
when identifier=condition imperative statemnts
when other imperative statements
end-evaluate
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What are the cobol coding sheets?
how do you reference the fixed unblock file formats from cobol programs
can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there
What are INPUT PROCEDURE and OUTPUT PROCEDURE?
How to get the last record in vsam file in cluster? And how can you get the ksds file records into your cobol program?
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 rules of the move verb?
What are the different open modes available in cobol?
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?
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?
How to fetch 1000 error records from VSAM file(Eg: 1000000 records present) while getting SOC7 abend ?
Write the code to count the sum of n natural numbers.
What is the utilization of copybook in cobol? Could we utilize a similar copybook?
how we sort two input files based on a common column and giving one o/p file please send me the coding logic?
How are the next sentence and continue different from each other?