FOR1360E
On the CLOSE statement for unit unit-number, which was connected to file-name, the STATUS specifier had a value of KEEP, but the STATUS specifier on the OPEN statement had a value of SCRATCH. VS FORTRAN Version 2 Error Number: AFB171I

System action

The file is closed as though STATUS='DELETE' had been specified. 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: The basic set of four qualifying data for I/O conditions as shown in Table 1. Within this basic set, statement has a value of CLOSE, and parm_count has a value of 4.

Name Action Taken after Resumption
RN Execution continues.

Programmer response

Either change the OPEN statement so that its STATUS specifier has a value of other than SCRATCH, or change the CLOSE statement so that its STATUS specifier is either omitted or has a value of DELETE. In the latter case, the scratch file will be deleted.

Symbolic Feedback Code

FOR1360