for an INITIALIZE and what keyword allows for an override
of the default.
Answers were Sorted based on User's Feedback
Answer / shinoy sansilavose
I think it is REDEFINE clause ........ not sure
| Is This Answer Correct ? | 1 Yes | 3 No |
can u give result for the fallowing example... 05 a pic 9(2) 05 b redifines a pic x(2). move 'xy' to b. display a,b.
how can we fetch 3 records in cobol pgm any coding pls ?
Why IBM?
Can we change the password using ALTER? anyone tried and changed?
What is the difference between goback, stop run and exit program in cobol?
if we have a 10 steps how to override the 4th step in jcl?
When and how can we use index & subscript ?
I have a sequential file of 100 records. How do I load the records into a two dimensional array ?
how can u redefine picx(10) with pic 9(6).
How to define variable 9(20) in COBOL, because compiler does not allow us to declare variables with Pic 9(18). Can anyone please let me know the answer... I know one answer to this question which is to use Compiler option Arith (Extend) during Compilation. It extends the maximum limit to 9(32)..Just wanted to know if there is any other way to extend this?
How can I find the maximum value of a field in a file while reading the file dynamically? without using sort function. Suppose i have a file with fields Timestamp, description, teamname, teamnumber.. i have read the file till end and find the maximun value of timestamp which is not in sorted order.. can we use function max(timestamp)?
what is dynamic array in cobol? what is the difference b/w array and table in cobol?