FOR1915S
The OPEN statement for unit unit-number failed. The FILE specifier was not given, and the unit number was greater than 99, the maximum unit number allowed for unnamed files. Fortran Version 2 Error Number: AFB175I

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. The statement is ignored, and processing continues.

Qualifying Data: Only the basic set of four qualifying data for I/O conditions as shown in Table 1. Within this basic set, file has a value of blanks, and parm_count has a value of 4.

Permissible Resume Actions:

Name Action Taken after Resumption
RN The I/O operation is not completed, and execution continues.

Programmer response

If you want to connect an unnamed file, ensure that the value given for the the unit number does not exceed the smaller of either 99 or the highest unit number allowed at your site.

If you want to connect a named file, add a FILE specifier to the OPEN statement and provide either a ddname or a data set name, the latter preceded by a slash ( / ).

If you want the OPEN statement to refer to an existing connection between a unit and a file (so that you can use one or more of the BLANK, CHAR, DELIM, and PAD specifiers to change the properties of the connection), then ensure that the unit is connected to a file before executing the OPEN statement.

Symbolic Feedback Code

FOR1915