i declare a Table as OCCURS 2000 TIMES.If the input file
has more than 2000 records will the COBOL program fail?
Answer Posted / sivakumar sekharannair
Yeah vidhya's answer is correct. If the complier option is
set with SSRANGE=Y then the program will fail. Other wise
it will not... the default option is NOSSRANGE...
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the difference between comp and comp-3 usage?
What is the LINKAGE SECTION used in COBOL?
What is link edit in cobol?
What is the local-storage section?
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
How do you code cobol to access a parameter that has been defined in jcl? And do you code the parm parameter on the exec line in jcl?
What are the pertinent COBOL
What is the use of intialize verb?
Write a program to explain size error.
how to access the file from prodution from changeman tool and to submit a file to production
Difference between cobol and cobol-ii?
if we have " ibm mainframe ",in that how to remove first and last leading space eg:"ibm mainframe" like that the answer we need
What is the difference between Global and External Variables?
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?
I have a File that has duplicate records. I need only those records that occur more than thrice.?