FOR1340S
The INQUIRE statement failed. The FILE specifier had a value of blanks, but the UNIT specifier was not given. VS FORTRAN Version 2 Error Number: AFB106I

System action

If neither the ERR nor the IOSTAT specifier is present on the I/O statement, the condition is signaled. If the condition is unhandled, the application is terminated.

Qualifying Data:

No. Name Input/ Output Data Type and Length Value
1 parm-count Input INTEGER*4 4
2 statement Input CHARACTER*12 INQUIRE
3 unit Input INTEGER*4 Undefined
4 file Input CHARACTER*62 Undefined
Name Action Taken after Resumption
RN The I/O operation is ignored, and execution continues.

Programmer response

Correct your program to use of the four acceptable forms of the INQUIRE statement:
INQUIRE by file
No UNIT specifier; FILE specifier with a value that is either a data set name preceded by a slash ( / ) or a ddname other than one of the default ddnames such as FTnnF001
INQUIRE by unit
UNIT specifier; no FILE specifier
INQUIRE by unnamed file, format 1
UNIT specifier; FILE specifier with a value of blanks
INQUIRE by unnamed file, format 2
No UNIT specifier; FILE specifier with a value that is one of the defaults ddnames such as FTnnF001

Symbolic Feedback Code

FOR1340