Micro FocusĀ Visual COBOLĀ 2.3 for Visual Studio 2015
>
General Reference
>
File Handling Reference
>
Rebuild Error, Information and Warning Messages
>
Execution Errors
Execution Errors
These occur when the program sets the return code to a value other than zero to indicate the type of error that has occurred.
***Error on input file - disk space exhausted
File processing cannot continue because there is insufficient disk space to do so.
***Error on input file - duplicate key - record not written:
The record was not written to the output file as this would have created an invalid duplicate key.
***Rebuild aborted - file is not as specified in s option (s option not required)
The file specified by the
/s
option was not recognized.
***Error on input file - File locked
The file you specified as your input file is locked by another process.
***Error on input file - file not found
The input file cannot be found. The return code is set to
1
.
***Error on input file - illegal filename specified
A filename does not conform to the standards imposed by the operating system or COBOL system.
***Error on input file - invalid key of reference specified in x option
The number specified in the key-of-reference option (
/x
) is greater than or equal to the number of keys for the given file. The return code is set to
1
.
***Error on input file - status xx, and ***Error on input file - status 9/yyy
An error other than one of the above input file errors has occurred while processing the input file.
***Error on output file - record length << min or >> max
Rebuild attempted to write a record to the output file with a record length less than the minimum or greater than the maximum length for the file.
***Error on output file - status xx, and ***Error on output file - status 9/yyy
An error has occurred processing the output file.
Parent topic:
Rebuild Error, Information and Warning Messages