hi dudes.....can any one help me.....
what is SET TO TRUE all about,anyway?
Level 88 variables which are conditional variables, will
have values which will be either true or false.
Like if you have condition that at the end of file set a
flag to true then you can declare level 88 variable which
will be set to true or will have a value 'Y'(declared value
for the variable) as soon as the file does not have any more
records.
05 WS-FLAG
88 WS-END_OF_FIlE Value 'Y'
88 WS-NOT_END_OF_FILE Value 'N'
Here when you say set WS-FLAG to true then it will
automatically get value 'Y', which shows end of the file.
| Is This Answer Correct ? | 6 Yes | 0 No |
How to increase the logical record length of existing PS file?
we can use set true for condition names.. similarly can we code set to false in cobol pgm? will it work?
What is the difference between working storage copybook and linkage section copybook?
SSRange is used to do a range check on which of the Following. SUBSCRIPT,INDEX,REFERENCE MODIFICATION,Run-time option.
What is cobol?
) How do u handle errors in BMS macro?
I have one column say 'X' defined as VARCHAR Can anyone tell me What are the different ways to update this column thru COBOL-DB2 program?
why 02 level number can't be use as a separate level number like 01 or 77 ?
What care has to be taken to force program to execute above 16 Meg line?
db2 variable decimal(15,2) what is the equalent size of cobol variable
how you read control card into array?
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)?