cobol3.hlp (Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
Message RT100 (↑ RTS Messages)
 Key                                       Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
  Message:      RT100
 
  Text:         Invalid file operation
 
  Severity:     Fatal
 
  Explanation:  You have attempted a file operation which violates a
                general rule of COBOL in some way.  The most likely
                cause of this error is that you have attempted a
                rewrite on a sequential file opened I-O, or on a
                relative file with access mode sequential also opened
                I-O, without preceding it with a successful read NEXT.
 
 
  Resolution:   Recode your program to ensure that the REwrite
                statement in error is preceded by a read NEXT.
                                    -♦-