HP Fortran Programmer's Reference (September 2007)

I/O runtime error messages
Runtime I/O errors
Appendix A 665
922 READ ON ILLEGAL
RECORD ATTEMPTED
Attempted to read a
record of a formatted or
unformatted direct file
that is beyond the
current end-of-file.
Read records that are
within the bounds of the
file.
923 OPEN WITH ILLEGAL
FORM SPECIFIER
ATTEMPTED
FORM= specified string
other than
'FORMATTED' or
'UNFORMATTED'.
Use either
'FORMATTED' or
'UNFORMATTED' for
the FORM= specifier in
an OPEN statement.
924 CLOSE OF SCRATCH
FILE WITH
STATUS='KEEP'
ATTEMPTED
The file specified in the
CLOSE statement was
previously opened with
'SCRATCH' specified in
the STATUS= specifier.
Open the file with a
STATUS= , specifying a
string other than
'SCRATCH' or do not
specify STATUS='KEEP'
in the CLOSE statement
for this scratch file.
925 OPEN WITH ILLEGAL
STATUS SPECIFIER
ATTEMPTED
STATUS= specified
string other than 'OLD'
'NEW' 'UNKNOWN'
'REPLACE' or
'SCRATCH'.
Use 'OLD’, 'NEW',
'UNKNOWN',
'REPLACE' or
'SCRATCH' for the
STATUS= specifier in
OPEN statement.
926 CLOSE WITH
ILLEGAL STATUS
SPECIFIER
ATTEMPTED
STATUS= specified
string other than 'KEEP'
or 'DELETE'.
Use 'KEEP' or 'DELETE'
for the STATUS=
specifier in a CLOSE
statement.
927 OPEN WITH ILLEGAL
ACCESS SPECIFIER
ATTEMPTED
ACCESS= specified
string other than
'SEQUENTIAL' or
'DIRECT'.
Use 'SEQUENTIAL' or
'DIRECT' for the
ACCESS= specifier in an
OPEN statement.
Table A-1 Runtime I/O errors (Continued)
Error
no.
Error message Description Action