Tag: COBOL Error Messages

COBOL Runtime Error Code – 143 Rewrite/delete in sequential mode not pr

In this post, you’ll learn about the COBOL runtime Error Code 143 and the reason why you are receiving it COBOL Error Code : 143 Reason for this Error in COBOL Rewrite/delete in sequential mode not preceded by successful read (Recoverable) -You have failed to do a successful read on a sequentially accessed file trying a REWRITE or DELETE on some of the information contained…

COBOL Runtime Error Code – 032 Too many indexed files, or no such proce

In this post, you’ll learn about the COBOL runtime Error Code 032 and the reason why you are receiving it COBOL Error Code : 032 Reason for this Error in COBOL Too many indexed files, or no such process (Recoverable) -You have tried to open an indexed file but the number of files that you currently have open is the system limit. Alternately, you could…

COBOL Runtime Error Code – 070 Too many indexed files open (Recoverable

In this post, you’ll learn about the COBOL runtime Error Code 070 and the reason why you are receiving it COBOL Error Code : 070 Reason for this Error in COBOL Too many indexed files open (Recoverable) -You are trying to open an indexed file but you have already exhausted the system limit which specifies how many of these files can be opened at any…

COBOL Runtime Error Code – 016 Too many device files open (Recoverable)

In this post, you’ll learn about the COBOL runtime Error Code 016 and the reason why you are receiving it COBOL Error Code : 016 Reason for this Error in COBOL Too many device files open (Recoverable) -You have tried to exceed the maximum number of device files which you can have open at any one time. This can be a software or an operating…

COBOL Runtime Error Code – 162 Arithmetic overflow or underflow (Fatal)

In this post, you’ll learn about the COBOL runtime Error Code 162 and the reason why you are receiving it COBOL Error Code : 162 Reason for this Error in COBOL Arithmetic overflow or underflow (Fatal) -You are executing a program that is trying to perform a floating-point divide by zero. -You should recode your program to avoid this illegal operation.