What is file status 39 ?
Answers were Sorted based on User's Feedback
Answer / elite group
File attribute mismatch...
The LRECL defined in the program is different whatever
given in the JCL
| Is This Answer Correct ? | 44 Yes | 1 No |
Answer / ananta
logical error in file mismatch
like blksize mismatch, lrecl mismatch , recfm mismatch
| Is This Answer Correct ? | 14 Yes | 3 No |
Answer / anil prajapati
blksize is not multiple of record length and the
description of these in jcl is different from cobol
| Is This Answer Correct ? | 13 Yes | 6 No |
Answer / vijay kulkarni
File length mismatch(in prog and jcl) and file open error
| Is This Answer Correct ? | 13 Yes | 6 No |
Answer / santosh
one of the reasons of file status 39 is file attribute
mismatch
LRECL mentioned in JCL is different than the one mentioned
in COBOL
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / shyam
File length mismatch and file open error (in cobol prog)
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / vijay gund
A conflict has been detected between the fixed file
attributes and the attributes specified for the file in the
program.
This is usually caused by a conflict with record-length,
key-length, key-position or file organization.
Other possible causes are:
1. Alternate indexes are incorrectly defined.
2. The Recording Mode is Variable or Fixed or not defined
the same as when the file was created
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / rahul joshi
AIX IS MISMATCHED.
RECORDING MODE IS VARIBLE,FIXED OR NOT DEFINED WHEN CREATED EARLIER.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rumki
If the load is not correct then also repeatedly file
attribute mismatch will come. I just deleted the load and
then tried it...It worked fine.
| Is This Answer Correct ? | 0 Yes | 2 No |
What is the Importance of GLOBAL clause According to new standards of COBOL?
What COBOL construct is the COBOL II EVALUATE meant to replace?
How many divisions we have in Cobol ?
I have two questions here. 1. How to read a flat file in reverse order? 2. How to read a VSAM KSDS file in reverse order? In both the cases we donot know the total number of records.
In INITIALIZE what is Repalcing Word will do
how we can reverse the string in the cobol for example satheesh can be reveresed as hseehtas
in cobol perform stmt whether it first checks the condition or not
what is a load module ?
What will happen if a variable is declared as below.. Explain with an example? Working storage section:- 01 WS-VARX PIC X(10) VALUE 'ABCDEFGHIJ'. 01 WS-VARN REDEFINES WS-VARX PIC 9(5) VALUE '12345'. What will happen I want Display WS-VARX and WS-VARN?
i have the following varibles in the working storage 05 ws-A PIC X(30) VALUE 'ABCDEFGHIJKLMNOPQRESTUVWXYZ ' 05 WS-B REDEFINES WS-A 10 WS-B1 PIC X(10). 10 WS-B2 PIC 9(10). 10 WS-B3 PIC X(10). If I Display B1, B2 and B3 respectively, what is the value displayed in B2
) How do u handle errors in BMS macro
I have a source program compiled with Cobol-2. The output file has a record length of 100 defined in the program but a record of 60 bytes getting written into it. i.e. The rest of 40 bytes I am not Writing anything. But it by default puts some values into the last 40 bytes. However it does not impact anything. But when Compiled the module with Enterprise Cobol the last 40 bytes were spaces as fillers. Can anyone explain?